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.

1514 lines
43 KiB

lint: Enable Golint (#4212) * Fix many golint errors * Fix golint errors in the 'lite' package * Don't export Pool.store * Fix typo * Revert unwanted changes * Fix errors in counter package * Fix linter errors in kvstore package * Fix linter error in example package * Fix error in tests package * Fix linter errors in v2 package * Fix linter errors in consensus package * Fix linter errors in evidence package * Fix linter error in fail package * Fix linter errors in query package * Fix linter errors in core package * Fix linter errors in node package * Fix linter errors in mempool package * Fix linter error in conn package * Fix linter errors in pex package * Rename PEXReactor export to Reactor * Fix linter errors in trust package * Fix linter errors in upnp package * Fix linter errors in p2p package * Fix linter errors in proxy package * Fix linter errors in mock_test package * Fix linter error in client_test package * Fix linter errors in coretypes package * Fix linter errors in coregrpc package * Fix linter errors in rpcserver package * Fix linter errors in rpctypes package * Fix linter errors in rpctest package * Fix linter error in json2wal script * Fix linter error in wal2json script * Fix linter errors in kv package * Fix linter error in state package * Fix linter error in grpc_client * Fix linter errors in types package * Fix linter error in version package * Fix remaining errors * Address review comments * Fix broken tests * Reconcile package coregrpc * Fix golangci bot error * Fix new golint errors * Fix broken reference * Enable golint linter * minor changes to bring golint into line * fix failing test * fix pex reactor naming * address PR comments
5 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
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
abci: localClient improvements & bugfixes & pubsub Unsubscribe issues (#2748) * use READ lock/unlock in ConsensusState#GetLastHeight Refs #2721 * do not use defers when there's no need * fix peer formatting (output its address instead of the pointer) ``` [54310]: E[11-02|11:59:39.851] Connection failed @ sendRoutine module=p2p peer=0xb78f00 conn=MConn{74.207.236.148:26656} err="pong timeout" ``` https://github.com/tendermint/tendermint/issues/2721#issuecomment-435326581 * panic if peer has no state https://github.com/tendermint/tendermint/issues/2721#issuecomment-435347165 It's confusing that sometimes we check if peer has a state, but most of the times we expect it to be there 1. https://github.com/tendermint/tendermint/blob/add79700b5fe84417538202b6c927c8cc5383672/mempool/reactor.go#L138 2. https://github.com/tendermint/tendermint/blob/add79700b5fe84417538202b6c927c8cc5383672/rpc/core/consensus.go#L196 (edited) I will change everything to always assume peer has a state and panic otherwise that should help identify issues earlier * abci/localclient: extend lock on app callback App callback should be protected by lock as well (note this was already done for InitChainAsync, why not for others???). Otherwise, when we execute the block, tx might come in and call the callback in the same time we're updating it in execBlockOnProxyApp => DATA RACE Fixes #2721 Consensus state is locked ``` goroutine 113333 [semacquire, 309 minutes]: sync.runtime_SemacquireMutex(0xc00180009c, 0xc0000c7e00) /usr/local/go/src/runtime/sema.go:71 +0x3d sync.(*RWMutex).RLock(0xc001800090) /usr/local/go/src/sync/rwmutex.go:50 +0x4e github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).GetRoundState(0xc001800000, 0x0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:218 +0x46 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusReactor).queryMaj23Routine(0xc0017def80, 0x11104a0, 0xc0072488f0, 0xc007248 9c0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/reactor.go:735 +0x16d created by github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusReactor).AddPeer /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/reactor.go:172 +0x236 ``` because localClient is locked ``` goroutine 1899 [semacquire, 309 minutes]: sync.runtime_SemacquireMutex(0xc00003363c, 0xc0000cb500) /usr/local/go/src/runtime/sema.go:71 +0x3d sync.(*Mutex).Lock(0xc000033638) /usr/local/go/src/sync/mutex.go:134 +0xff github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/abci/client.(*localClient).SetResponseCallback(0xc0001fb560, 0xc007868540) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/abci/client/local_client.go:32 +0x33 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/proxy.(*appConnConsensus).SetResponseCallback(0xc00002f750, 0xc007868540) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/proxy/app_conn.go:57 +0x40 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/state.execBlockOnProxyApp(0x1104e20, 0xc002ca0ba0, 0x11092a0, 0xc00002f750, 0xc0001fe960, 0xc000bfc660, 0x110cfe0, 0xc000090330, 0xc9d12, 0xc000d9d5a0, ...) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/state/execution.go:230 +0x1fd github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/state.(*BlockExecutor).ApplyBlock(0xc002c2a230, 0x7, 0x0, 0xc000eae880, 0x6, 0xc002e52c60, 0x16, 0x1f927, 0xc9d12, 0xc000d9d5a0, ...) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/state/execution.go:96 +0x142 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).finalizeCommit(0xc001800000, 0x1f928) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:1339 +0xa3e github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).tryFinalizeCommit(0xc001800000, 0x1f928) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:1270 +0x451 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).enterCommit.func1(0xc001800000, 0x0, 0x1f928) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:1218 +0x90 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).enterCommit(0xc001800000, 0x1f928, 0x0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:1247 +0x6b8 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote(0xc001800000, 0xc003d8dea0, 0xc000cf4cc0, 0x28, 0xf1, 0xc003bc7ad0, 0xc003bc7b10) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:1659 +0xbad github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote(0xc001800000, 0xc003d8dea0, 0xc000cf4cc0, 0x28, 0xf1, 0xf1, 0xf1) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:1517 +0x59 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg(0xc001800000, 0xd98200, 0xc0070dbed0, 0xc000cf4cc0, 0x28) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:660 +0x64b github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine(0xc001800000, 0x0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:617 +0x670 created by github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus.(*ConsensusState).OnStart /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/consensus/state.go:311 +0x132 ``` tx comes in and CheckTx is executed right when we execute the block ``` goroutine 111044 [semacquire, 309 minutes]: sync.runtime_SemacquireMutex(0xc00003363c, 0x0) /usr/local/go/src/runtime/sema.go:71 +0x3d sync.(*Mutex).Lock(0xc000033638) /usr/local/go/src/sync/mutex.go:134 +0xff github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/abci/client.(*localClient).CheckTxAsync(0xc0001fb0e0, 0xc002d94500, 0x13f, 0x280, 0x0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/abci/client/local_client.go:85 +0x47 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/proxy.(*appConnMempool).CheckTxAsync(0xc00002f720, 0xc002d94500, 0x13f, 0x280, 0x1) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/proxy/app_conn.go:114 +0x51 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/mempool.(*Mempool).CheckTx(0xc002d3a320, 0xc002d94500, 0x13f, 0x280, 0xc0072355f0, 0x0, 0x0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/mempool/mempool.go:316 +0x17b github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/core.BroadcastTxSync(0xc002d94500, 0x13f, 0x280, 0x0, 0x0, 0x0) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/core/mempool.go:93 +0xb8 reflect.Value.call(0xd85560, 0x10326c0, 0x13, 0xec7b8b, 0x4, 0xc00663f180, 0x1, 0x1, 0xc00663f180, 0xc00663f188, ...) /usr/local/go/src/reflect/value.go:447 +0x449 reflect.Value.Call(0xd85560, 0x10326c0, 0x13, 0xc00663f180, 0x1, 0x1, 0x0, 0x0, 0xc005cc9344) /usr/local/go/src/reflect/value.go:308 +0xa4 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/lib/server.makeHTTPHandler.func2(0x1102060, 0xc00663f100, 0xc0082d7900) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/lib/server/handlers.go:269 +0x188 net/http.HandlerFunc.ServeHTTP(0xc002c81f20, 0x1102060, 0xc00663f100, 0xc0082d7900) /usr/local/go/src/net/http/server.go:1964 +0x44 net/http.(*ServeMux).ServeHTTP(0xc002c81b60, 0x1102060, 0xc00663f100, 0xc0082d7900) /usr/local/go/src/net/http/server.go:2361 +0x127 github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/lib/server.maxBytesHandler.ServeHTTP(0x10f8a40, 0xc002c81b60, 0xf4240, 0x1102060, 0xc00663f100, 0xc0082d7900) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/lib/server/http_server.go:219 +0xcf github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/lib/server.RecoverAndLogHandler.func1(0x1103220, 0xc00121e620, 0xc0082d7900) /root/go/src/github.com/MinterTeam/minter-go-node/vendor/github.com/tendermint/tendermint/rpc/lib/server/http_server.go:192 +0x394 net/http.HandlerFunc.ServeHTTP(0xc002c06ea0, 0x1103220, 0xc00121e620, 0xc0082d7900) /usr/local/go/src/net/http/server.go:1964 +0x44 net/http.serverHandler.ServeHTTP(0xc001a1aa90, 0x1103220, 0xc00121e620, 0xc0082d7900) /usr/local/go/src/net/http/server.go:2741 +0xab net/http.(*conn).serve(0xc00785a3c0, 0x11041a0, 0xc000f844c0) /usr/local/go/src/net/http/server.go:1847 +0x646 created by net/http.(*Server).Serve /usr/local/go/src/net/http/server.go:2851 +0x2f5 ``` * consensus: use read lock in Receive#VoteMessage * use defer to unlock mutex because application might panic * use defer in every method of the localClient * add a changelog entry * drain channels before Unsubscribe(All) Read https://github.com/tendermint/tendermint/blob/55362ed76630f3e1ebec159a598f6a9fb5892cb1/libs/pubsub/pubsub.go#L13 for the detailed explanation of the issue. We'll need to fix it someday. Make sure to keep an eye on https://github.com/tendermint/tendermint/blob/master/docs/architecture/adr-033-pubsub.md * retry instead of panic when peer has no state in reactors other than consensus in /dump_consensus_state RPC endpoint, skip a peer with no state * rpc/core/mempool: simplify error messages * rpc/core/mempool: use time.After instead of timer also, do not log DeliverTx result (to be consistent with other memthods) * unlock before calling the callback in reqRes#SetCallback
6 years ago
7 years ago
fix data race Closes #1442 ``` WARNING: DATA RACE Write at 0x00c4209de7c8 by goroutine 23: github.com/tendermint/tendermint/types.(*Block).fillHeader() /home/vagrant/go/src/github.com/tendermint/tendermint/types/block.go:88 +0x157 github.com/tendermint/tendermint/types.(*Block).Hash() /home/vagrant/go/src/github.com/tendermint/tendermint/types/block.go:104 +0x121 github.com/tendermint/tendermint/types.(*Block).HashesTo() /home/vagrant/go/src/github.com/tendermint/tendermint/types/block.go:135 +0x4f github.com/tendermint/tendermint/consensus.(*ConsensusState).enterPrecommit() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/state.go:1037 +0x182d github.com/tendermint/tendermint/consensus.(*ConsensusState).addVote() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/state.go:1425 +0x1a6c github.com/tendermint/tendermint/consensus.(*ConsensusState).tryAddVote() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/state.go:1318 +0x77 github.com/tendermint/tendermint/consensus.(*ConsensusState).handleMsg() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/state.go:581 +0x7a9 github.com/tendermint/tendermint/consensus.(*ConsensusState).receiveRoutine() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/state.go:539 +0x6c3 Previous read at 0x00c4209de7c8 by goroutine 47: github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common.(*HexBytes).MarshalJSON() <autogenerated>:1 +0x52 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.invokeMarshalJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:433 +0x88 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec)._encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:82 +0x8d2 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:50 +0x10e github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSONStruct() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:348 +0x539 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec)._encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:119 +0x83f github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:50 +0x10e github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSONStruct() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:348 +0x539 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec)._encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:119 +0x83f github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:50 +0x10e github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSONStruct() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:348 +0x539 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec)._encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:119 +0x83f github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:50 +0x10e github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSONStruct() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:348 +0x539 github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec)._encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:119 +0x83f github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).encodeReflectJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/json-encode.go:50 +0x10e github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino.(*Codec).MarshalJSON() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/go-amino/amino.go:296 +0x182 github.com/tendermint/tendermint/rpc/lib/types.NewRPCSuccessResponse() /home/vagrant/go/src/github.com/tendermint/tendermint/rpc/lib/types/types.go:100 +0x12c github.com/tendermint/tendermint/rpc/lib/server.makeJSONRPCHandler.func1() /home/vagrant/go/src/github.com/tendermint/tendermint/rpc/lib/server/handlers.go:152 +0xab7 net/http.HandlerFunc.ServeHTTP() /usr/lib/go-1.9/src/net/http/server.go:1918 +0x51 net/http.(*ServeMux).ServeHTTP() /usr/lib/go-1.9/src/net/http/server.go:2254 +0xa2 github.com/tendermint/tendermint/rpc/lib/server.RecoverAndLogHandler.func1() /home/vagrant/go/src/github.com/tendermint/tendermint/rpc/lib/server/http_server.go:138 +0x4fa net/http.HandlerFunc.ServeHTTP() /usr/lib/go-1.9/src/net/http/server.go:1918 +0x51 net/http.serverHandler.ServeHTTP() /usr/lib/go-1.9/src/net/http/server.go:2619 +0xbc net/http.(*conn).serve() /usr/lib/go-1.9/src/net/http/server.go:1801 +0x83b Goroutine 23 (running) created at: github.com/tendermint/tendermint/consensus.(*ConsensusState).OnStart() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/state.go:250 +0x35b github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common.(*BaseService).Start() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common/service.go:130 +0x5fc github.com/tendermint/tendermint/consensus.(*ConsensusReactor).OnStart() /home/vagrant/go/src/github.com/tendermint/tendermint/consensus/reactor.go:69 +0x1b4 github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common.(*BaseService).Start() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common/service.go:130 +0x5fc github.com/tendermint/tendermint/consensus.(*ConsensusReactor).Start() <autogenerated>:1 +0x43 github.com/tendermint/tendermint/p2p.(*Switch).OnStart() /home/vagrant/go/src/github.com/tendermint/tendermint/p2p/switch.go:177 +0x124 github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common.(*BaseService).Start() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common/service.go:130 +0x5fc github.com/tendermint/tendermint/node.(*Node).OnStart() /home/vagrant/go/src/github.com/tendermint/tendermint/node/node.go:416 +0xa1b github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common.(*BaseService).Start() /home/vagrant/go/src/github.com/tendermint/tendermint/vendor/github.com/tendermint/tmlibs/common/service.go:130 +0x5fc github.com/tendermint/tendermint/rpc/test.StartTendermint() /home/vagrant/go/src/github.com/tendermint/tendermint/rpc/test/helpers.go:100 +0x5b github.com/tendermint/tendermint/rpc/client_test.TestMain() /home/vagrant/go/src/github.com/tendermint/tendermint/rpc/client/main_test.go:17 +0x4c main.main() github.com/tendermint/tendermint/rpc/client/_test/_testmain.go:76 +0x1cd Goroutine 47 (running) created at: net/http.(*Server).Serve() /usr/lib/go-1.9/src/net/http/server.go:2720 +0x37c net/http.Serve() /usr/lib/go-1.9/src/net/http/server.go:2323 +0xe2 github.com/tendermint/tendermint/rpc/lib/server.StartHTTPServer.func1() /home/vagrant/go/src/github.com/tendermint/tendermint/rpc/lib/server/http_server.go:35 +0xb3 ```
6 years ago
10 years ago
protect Record* peerStateStats functions by mutex Fixes #1414 DATA RACE: ``` Read at 0x00c4214ee940 by goroutine 146: github.com/tendermint/tendermint/consensus.(*peerStateStats).String() <autogenerated>:1 +0x57 fmt.(*pp).handleMethods() /usr/local/go/src/fmt/print.go:596 +0x3f4 fmt.(*pp).printArg() /usr/local/go/src/fmt/print.go:679 +0x11f fmt.(*pp).doPrintf() /usr/local/go/src/fmt/print.go:996 +0x319 fmt.Sprintf() /usr/local/go/src/fmt/print.go:196 +0x73 github.com/tendermint/tendermint/consensus.(*PeerState).StringIndented() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:1426 +0x573 github.com/tendermint/tendermint/consensus.(*PeerState).String() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:1419 +0x66 github.com/go-logfmt/logfmt.safeString() /home/ubuntu/go/src/github.com/go-logfmt/logfmt/encode.go:299 +0x9d github.com/go-logfmt/logfmt.writeValue() /home/ubuntu/go/src/github.com/go-logfmt/logfmt/encode.go:217 +0x5a0 github.com/go-logfmt/logfmt.(*Encoder).EncodeKeyval() /home/ubuntu/go/src/github.com/go-logfmt/logfmt/encode.go:61 +0x1dd github.com/tendermint/tmlibs/log.tmfmtLogger.Log() /home/ubuntu/go/src/github.com/tendermint/tmlibs/log/tmfmt_logger.go:107 +0x1001 github.com/tendermint/tmlibs/log.(*tmfmtLogger).Log() <autogenerated>:1 +0x93 github.com/go-kit/kit/log.(*context).Log() /home/ubuntu/go/src/github.com/go-kit/kit/log/log.go:124 +0x248 github.com/tendermint/tmlibs/log.(*tmLogger).Debug() /home/ubuntu/go/src/github.com/tendermint/tmlibs/log/tm_logger.go:64 +0x1d0 github.com/tendermint/tendermint/consensus.(*PeerState).PickSendVote() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:1059 +0x242 github.com/tendermint/tendermint/consensus.(*ConsensusReactor).gossipVotesForHeight() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:789 +0x6ef github.com/tendermint/tendermint/consensus.(*ConsensusReactor).gossipVotesRoutine() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:723 +0x1039 Previous write at 0x00c4214ee940 by goroutine 21: github.com/tendermint/tendermint/consensus.(*PeerState).RecordVote() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:1242 +0x15a github.com/tendermint/tendermint/consensus.(*ConsensusReactor).Receive() github.com/tendermint/tendermint/consensus/_test/_obj_test/reactor.go:309 +0x32e6 github.com/tendermint/tendermint/p2p.createMConnection.func1() /home/ubuntu/go/src/github.com/tendermint/tendermint/p2p/peer.go:365 +0xea github.com/tendermint/tendermint/p2p/conn.(*MConnection).recvRoutine() /home/ubuntu/go/src/github.com/tendermint/tendermint/p2p/conn/connection.go:531 +0x779 ```
6 years ago
10 years ago
10 years ago
10 years ago
  1. package consensus
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "runtime/debug"
  7. "sync"
  8. "time"
  9. cstypes "github.com/tendermint/tendermint/internal/consensus/types"
  10. "github.com/tendermint/tendermint/internal/eventbus"
  11. "github.com/tendermint/tendermint/internal/p2p"
  12. sm "github.com/tendermint/tendermint/internal/state"
  13. "github.com/tendermint/tendermint/libs/bits"
  14. tmevents "github.com/tendermint/tendermint/libs/events"
  15. "github.com/tendermint/tendermint/libs/log"
  16. "github.com/tendermint/tendermint/libs/service"
  17. tmcons "github.com/tendermint/tendermint/proto/tendermint/consensus"
  18. tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
  19. "github.com/tendermint/tendermint/types"
  20. )
  21. var (
  22. _ service.Service = (*Reactor)(nil)
  23. _ p2p.Wrapper = (*tmcons.Message)(nil)
  24. )
  25. // GetChannelDescriptor produces an instance of a descriptor for this
  26. // package's required channels.
  27. func getChannelDescriptors() map[p2p.ChannelID]*p2p.ChannelDescriptor {
  28. return map[p2p.ChannelID]*p2p.ChannelDescriptor{
  29. StateChannel: {
  30. ID: StateChannel,
  31. MessageType: new(tmcons.Message),
  32. Priority: 8,
  33. SendQueueCapacity: 64,
  34. RecvMessageCapacity: maxMsgSize,
  35. RecvBufferCapacity: 128,
  36. },
  37. DataChannel: {
  38. // TODO: Consider a split between gossiping current block and catchup
  39. // stuff. Once we gossip the whole block there is nothing left to send
  40. // until next height or round.
  41. ID: DataChannel,
  42. MessageType: new(tmcons.Message),
  43. Priority: 12,
  44. SendQueueCapacity: 64,
  45. RecvBufferCapacity: 512,
  46. RecvMessageCapacity: maxMsgSize,
  47. },
  48. VoteChannel: {
  49. ID: VoteChannel,
  50. MessageType: new(tmcons.Message),
  51. Priority: 10,
  52. SendQueueCapacity: 64,
  53. RecvBufferCapacity: 128,
  54. RecvMessageCapacity: maxMsgSize,
  55. },
  56. VoteSetBitsChannel: {
  57. ID: VoteSetBitsChannel,
  58. MessageType: new(tmcons.Message),
  59. Priority: 5,
  60. SendQueueCapacity: 8,
  61. RecvBufferCapacity: 128,
  62. RecvMessageCapacity: maxMsgSize,
  63. },
  64. }
  65. }
  66. const (
  67. StateChannel = p2p.ChannelID(0x20)
  68. DataChannel = p2p.ChannelID(0x21)
  69. VoteChannel = p2p.ChannelID(0x22)
  70. VoteSetBitsChannel = p2p.ChannelID(0x23)
  71. maxMsgSize = 1048576 // 1MB; NOTE: keep in sync with types.PartSet sizes.
  72. blocksToContributeToBecomeGoodPeer = 10000
  73. votesToContributeToBecomeGoodPeer = 10000
  74. listenerIDConsensus = "consensus-reactor"
  75. )
  76. // NOTE: Temporary interface for switching to block sync, we should get rid of v0.
  77. // See: https://github.com/tendermint/tendermint/issues/4595
  78. type BlockSyncReactor interface {
  79. SwitchToBlockSync(context.Context, sm.State) error
  80. GetMaxPeerBlockHeight() int64
  81. // GetTotalSyncedTime returns the time duration since the blocksync starting.
  82. GetTotalSyncedTime() time.Duration
  83. // GetRemainingSyncTime returns the estimating time the node will be fully synced,
  84. // if will return 0 if the blocksync does not perform or the number of block synced is
  85. // too small (less than 100).
  86. GetRemainingSyncTime() time.Duration
  87. }
  88. //go:generate ../../scripts/mockery_generate.sh ConsSyncReactor
  89. // ConsSyncReactor defines an interface used for testing abilities of node.startStateSync.
  90. type ConsSyncReactor interface {
  91. SwitchToConsensus(sm.State, bool)
  92. SetStateSyncingMetrics(float64)
  93. SetBlockSyncingMetrics(float64)
  94. }
  95. // Reactor defines a reactor for the consensus service.
  96. type Reactor struct {
  97. service.BaseService
  98. logger log.Logger
  99. state *State
  100. eventBus *eventbus.EventBus
  101. Metrics *Metrics
  102. mtx sync.RWMutex
  103. peers map[types.NodeID]*PeerState
  104. waitSync bool
  105. stateCh *p2p.Channel
  106. dataCh *p2p.Channel
  107. voteCh *p2p.Channel
  108. voteSetBitsCh *p2p.Channel
  109. peerUpdates *p2p.PeerUpdates
  110. }
  111. // NewReactor returns a reference to a new consensus reactor, which implements
  112. // the service.Service interface. It accepts a logger, consensus state, references
  113. // to relevant p2p Channels and a channel to listen for peer updates on. The
  114. // reactor will close all p2p Channels when stopping.
  115. func NewReactor(
  116. ctx context.Context,
  117. logger log.Logger,
  118. cs *State,
  119. channelCreator p2p.ChannelCreator,
  120. peerUpdates *p2p.PeerUpdates,
  121. waitSync bool,
  122. metrics *Metrics,
  123. ) (*Reactor, error) {
  124. chans := getChannelDescriptors()
  125. stateCh, err := channelCreator(ctx, chans[StateChannel])
  126. if err != nil {
  127. return nil, err
  128. }
  129. dataCh, err := channelCreator(ctx, chans[DataChannel])
  130. if err != nil {
  131. return nil, err
  132. }
  133. voteCh, err := channelCreator(ctx, chans[VoteChannel])
  134. if err != nil {
  135. return nil, err
  136. }
  137. voteSetBitsCh, err := channelCreator(ctx, chans[VoteSetBitsChannel])
  138. if err != nil {
  139. return nil, err
  140. }
  141. r := &Reactor{
  142. logger: logger,
  143. state: cs,
  144. waitSync: waitSync,
  145. peers: make(map[types.NodeID]*PeerState),
  146. Metrics: metrics,
  147. stateCh: stateCh,
  148. dataCh: dataCh,
  149. voteCh: voteCh,
  150. voteSetBitsCh: voteSetBitsCh,
  151. peerUpdates: peerUpdates,
  152. }
  153. r.BaseService = *service.NewBaseService(logger, "Consensus", r)
  154. return r, nil
  155. }
  156. // OnStart starts separate go routines for each p2p Channel and listens for
  157. // envelopes on each. In addition, it also listens for peer updates and handles
  158. // messages on that p2p channel accordingly. The caller must be sure to execute
  159. // OnStop to ensure the outbound p2p Channels are closed.
  160. func (r *Reactor) OnStart(ctx context.Context) error {
  161. r.logger.Debug("consensus wait sync", "wait_sync", r.WaitSync())
  162. // start routine that computes peer statistics for evaluating peer quality
  163. //
  164. // TODO: Evaluate if we need this to be synchronized via WaitGroup as to not
  165. // leak the goroutine when stopping the reactor.
  166. go r.peerStatsRoutine(ctx)
  167. r.subscribeToBroadcastEvents()
  168. if !r.WaitSync() {
  169. if err := r.state.Start(ctx); err != nil {
  170. return err
  171. }
  172. }
  173. go r.processStateCh(ctx)
  174. go r.processDataCh(ctx)
  175. go r.processVoteCh(ctx)
  176. go r.processVoteSetBitsCh(ctx)
  177. go r.processPeerUpdates(ctx)
  178. return nil
  179. }
  180. // OnStop stops the reactor by signaling to all spawned goroutines to exit and
  181. // blocking until they all exit, as well as unsubscribing from events and stopping
  182. // state.
  183. func (r *Reactor) OnStop() {
  184. r.unsubscribeFromBroadcastEvents()
  185. if err := r.state.Stop(); err != nil {
  186. if !errors.Is(err, service.ErrAlreadyStopped) {
  187. r.logger.Error("failed to stop consensus state", "err", err)
  188. }
  189. }
  190. if !r.WaitSync() {
  191. r.state.Wait()
  192. }
  193. r.mtx.Lock()
  194. // Close and wait for each of the peers to shutdown.
  195. // This is safe to perform with the lock since none of the peers require the
  196. // lock to complete any of the methods that the waitgroup is waiting on.
  197. for _, state := range r.peers {
  198. state.closer.Close()
  199. state.broadcastWG.Wait()
  200. }
  201. r.mtx.Unlock()
  202. }
  203. // SetEventBus sets the reactor's event bus.
  204. func (r *Reactor) SetEventBus(b *eventbus.EventBus) {
  205. r.eventBus = b
  206. r.state.SetEventBus(b)
  207. }
  208. // WaitSync returns whether the consensus reactor is waiting for state/block sync.
  209. func (r *Reactor) WaitSync() bool {
  210. r.mtx.RLock()
  211. defer r.mtx.RUnlock()
  212. return r.waitSync
  213. }
  214. // SwitchToConsensus switches from block-sync mode to consensus mode. It resets
  215. // the state, turns off block-sync, and starts the consensus state-machine.
  216. func (r *Reactor) SwitchToConsensus(ctx context.Context, state sm.State, skipWAL bool) {
  217. r.logger.Info("switching to consensus")
  218. // we have no votes, so reconstruct LastCommit from SeenCommit
  219. if state.LastBlockHeight > 0 {
  220. r.state.reconstructLastCommit(state)
  221. }
  222. // NOTE: The line below causes broadcastNewRoundStepRoutine() to broadcast a
  223. // NewRoundStepMessage.
  224. r.state.updateToState(ctx, state)
  225. r.mtx.Lock()
  226. r.waitSync = false
  227. r.mtx.Unlock()
  228. r.Metrics.BlockSyncing.Set(0)
  229. r.Metrics.StateSyncing.Set(0)
  230. if skipWAL {
  231. r.state.doWALCatchup = false
  232. }
  233. if err := r.state.Start(ctx); err != nil {
  234. panic(fmt.Sprintf(`failed to start consensus state: %v
  235. conS:
  236. %+v
  237. conR:
  238. %+v`, err, r.state, r))
  239. }
  240. d := types.EventDataBlockSyncStatus{Complete: true, Height: state.LastBlockHeight}
  241. if err := r.eventBus.PublishEventBlockSyncStatus(ctx, d); err != nil {
  242. r.logger.Error("failed to emit the blocksync complete event", "err", err)
  243. }
  244. }
  245. // String returns a string representation of the Reactor.
  246. //
  247. // NOTE: For now, it is just a hard-coded string to avoid accessing unprotected
  248. // shared variables.
  249. //
  250. // TODO: improve!
  251. func (r *Reactor) String() string {
  252. return "ConsensusReactor"
  253. }
  254. // StringIndented returns an indented string representation of the Reactor.
  255. func (r *Reactor) StringIndented(indent string) string {
  256. r.mtx.RLock()
  257. defer r.mtx.RUnlock()
  258. s := "ConsensusReactor{\n"
  259. s += indent + " " + r.state.StringIndented(indent+" ") + "\n"
  260. for _, ps := range r.peers {
  261. s += indent + " " + ps.StringIndented(indent+" ") + "\n"
  262. }
  263. s += indent + "}"
  264. return s
  265. }
  266. // GetPeerState returns PeerState for a given NodeID.
  267. func (r *Reactor) GetPeerState(peerID types.NodeID) (*PeerState, bool) {
  268. r.mtx.RLock()
  269. defer r.mtx.RUnlock()
  270. ps, ok := r.peers[peerID]
  271. return ps, ok
  272. }
  273. func (r *Reactor) broadcastNewRoundStepMessage(ctx context.Context, rs *cstypes.RoundState) error {
  274. return r.stateCh.Send(ctx, p2p.Envelope{
  275. Broadcast: true,
  276. Message: makeRoundStepMessage(rs),
  277. })
  278. }
  279. func (r *Reactor) broadcastNewValidBlockMessage(ctx context.Context, rs *cstypes.RoundState) error {
  280. psHeader := rs.ProposalBlockParts.Header()
  281. return r.stateCh.Send(ctx, p2p.Envelope{
  282. Broadcast: true,
  283. Message: &tmcons.NewValidBlock{
  284. Height: rs.Height,
  285. Round: rs.Round,
  286. BlockPartSetHeader: psHeader.ToProto(),
  287. BlockParts: rs.ProposalBlockParts.BitArray().ToProto(),
  288. IsCommit: rs.Step == cstypes.RoundStepCommit,
  289. },
  290. })
  291. }
  292. func (r *Reactor) broadcastHasVoteMessage(ctx context.Context, vote *types.Vote) error {
  293. return r.stateCh.Send(ctx, p2p.Envelope{
  294. Broadcast: true,
  295. Message: &tmcons.HasVote{
  296. Height: vote.Height,
  297. Round: vote.Round,
  298. Type: vote.Type,
  299. Index: vote.ValidatorIndex,
  300. },
  301. })
  302. }
  303. // subscribeToBroadcastEvents subscribes for new round steps and votes using the
  304. // internal pubsub defined in the consensus state to broadcast them to peers
  305. // upon receiving.
  306. func (r *Reactor) subscribeToBroadcastEvents() {
  307. err := r.state.evsw.AddListenerForEvent(
  308. listenerIDConsensus,
  309. types.EventNewRoundStepValue,
  310. func(ctx context.Context, data tmevents.EventData) error {
  311. if err := r.broadcastNewRoundStepMessage(ctx, data.(*cstypes.RoundState)); err != nil {
  312. return err
  313. }
  314. select {
  315. case r.state.onStopCh <- data.(*cstypes.RoundState):
  316. return nil
  317. case <-ctx.Done():
  318. return ctx.Err()
  319. default:
  320. return nil
  321. }
  322. },
  323. )
  324. if err != nil {
  325. r.logger.Error("failed to add listener for events", "err", err)
  326. }
  327. err = r.state.evsw.AddListenerForEvent(
  328. listenerIDConsensus,
  329. types.EventValidBlockValue,
  330. func(ctx context.Context, data tmevents.EventData) error {
  331. return r.broadcastNewValidBlockMessage(ctx, data.(*cstypes.RoundState))
  332. },
  333. )
  334. if err != nil {
  335. r.logger.Error("failed to add listener for events", "err", err)
  336. }
  337. err = r.state.evsw.AddListenerForEvent(
  338. listenerIDConsensus,
  339. types.EventVoteValue,
  340. func(ctx context.Context, data tmevents.EventData) error {
  341. return r.broadcastHasVoteMessage(ctx, data.(*types.Vote))
  342. },
  343. )
  344. if err != nil {
  345. r.logger.Error("failed to add listener for events", "err", err)
  346. }
  347. }
  348. func (r *Reactor) unsubscribeFromBroadcastEvents() {
  349. r.state.evsw.RemoveListener(listenerIDConsensus)
  350. }
  351. func makeRoundStepMessage(rs *cstypes.RoundState) *tmcons.NewRoundStep {
  352. return &tmcons.NewRoundStep{
  353. Height: rs.Height,
  354. Round: rs.Round,
  355. Step: uint32(rs.Step),
  356. SecondsSinceStartTime: int64(time.Since(rs.StartTime).Seconds()),
  357. LastCommitRound: rs.LastCommit.GetRound(),
  358. }
  359. }
  360. func (r *Reactor) sendNewRoundStepMessage(ctx context.Context, peerID types.NodeID) error {
  361. return r.stateCh.Send(ctx, p2p.Envelope{
  362. To: peerID,
  363. Message: makeRoundStepMessage(r.state.GetRoundState()),
  364. })
  365. }
  366. func (r *Reactor) gossipDataForCatchup(ctx context.Context, rs *cstypes.RoundState, prs *cstypes.PeerRoundState, ps *PeerState) {
  367. logger := r.logger.With("height", prs.Height).With("peer", ps.peerID)
  368. if index, ok := prs.ProposalBlockParts.Not().PickRandom(); ok {
  369. // ensure that the peer's PartSetHeader is correct
  370. blockMeta := r.state.blockStore.LoadBlockMeta(prs.Height)
  371. if blockMeta == nil {
  372. logger.Error(
  373. "failed to load block meta",
  374. "our_height", rs.Height,
  375. "blockstore_base", r.state.blockStore.Base(),
  376. "blockstore_height", r.state.blockStore.Height(),
  377. )
  378. time.Sleep(r.state.config.PeerGossipSleepDuration)
  379. return
  380. } else if !blockMeta.BlockID.PartSetHeader.Equals(prs.ProposalBlockPartSetHeader) {
  381. logger.Info(
  382. "peer ProposalBlockPartSetHeader mismatch; sleeping",
  383. "block_part_set_header", blockMeta.BlockID.PartSetHeader,
  384. "peer_block_part_set_header", prs.ProposalBlockPartSetHeader,
  385. )
  386. time.Sleep(r.state.config.PeerGossipSleepDuration)
  387. return
  388. }
  389. part := r.state.blockStore.LoadBlockPart(prs.Height, index)
  390. if part == nil {
  391. logger.Error(
  392. "failed to load block part",
  393. "index", index,
  394. "block_part_set_header", blockMeta.BlockID.PartSetHeader,
  395. "peer_block_part_set_header", prs.ProposalBlockPartSetHeader,
  396. )
  397. time.Sleep(r.state.config.PeerGossipSleepDuration)
  398. return
  399. }
  400. partProto, err := part.ToProto()
  401. if err != nil {
  402. logger.Error("failed to convert block part to proto", "err", err)
  403. time.Sleep(r.state.config.PeerGossipSleepDuration)
  404. return
  405. }
  406. logger.Debug("sending block part for catchup", "round", prs.Round, "index", index)
  407. _ = r.dataCh.Send(ctx, p2p.Envelope{
  408. To: ps.peerID,
  409. Message: &tmcons.BlockPart{
  410. Height: prs.Height, // not our height, so it does not matter.
  411. Round: prs.Round, // not our height, so it does not matter
  412. Part: *partProto,
  413. },
  414. })
  415. return
  416. }
  417. time.Sleep(r.state.config.PeerGossipSleepDuration)
  418. }
  419. func (r *Reactor) gossipDataRoutine(ctx context.Context, ps *PeerState) {
  420. logger := r.logger.With("peer", ps.peerID)
  421. defer ps.broadcastWG.Done()
  422. timer := time.NewTimer(0)
  423. defer timer.Stop()
  424. OUTER_LOOP:
  425. for {
  426. if !r.IsRunning() {
  427. return
  428. }
  429. select {
  430. case <-ctx.Done():
  431. return
  432. case <-ps.closer.Done():
  433. // The peer is marked for removal via a PeerUpdate as the doneCh was
  434. // explicitly closed to signal we should exit.
  435. return
  436. default:
  437. }
  438. rs := r.state.GetRoundState()
  439. prs := ps.GetRoundState()
  440. // Send proposal Block parts?
  441. if rs.ProposalBlockParts.HasHeader(prs.ProposalBlockPartSetHeader) {
  442. if index, ok := rs.ProposalBlockParts.BitArray().Sub(prs.ProposalBlockParts.Copy()).PickRandom(); ok {
  443. part := rs.ProposalBlockParts.GetPart(index)
  444. partProto, err := part.ToProto()
  445. if err != nil {
  446. logger.Error("failed to convert block part to proto", "err", err)
  447. return
  448. }
  449. logger.Debug("sending block part", "height", prs.Height, "round", prs.Round)
  450. if err := r.dataCh.Send(ctx, p2p.Envelope{
  451. To: ps.peerID,
  452. Message: &tmcons.BlockPart{
  453. Height: rs.Height, // this tells peer that this part applies to us
  454. Round: rs.Round, // this tells peer that this part applies to us
  455. Part: *partProto,
  456. },
  457. }); err != nil {
  458. return
  459. }
  460. ps.SetHasProposalBlockPart(prs.Height, prs.Round, index)
  461. continue OUTER_LOOP
  462. }
  463. }
  464. // if the peer is on a previous height that we have, help catch up
  465. blockStoreBase := r.state.blockStore.Base()
  466. if blockStoreBase > 0 && 0 < prs.Height && prs.Height < rs.Height && prs.Height >= blockStoreBase {
  467. heightLogger := logger.With("height", prs.Height)
  468. // If we never received the commit message from the peer, the block parts
  469. // will not be initialized.
  470. if prs.ProposalBlockParts == nil {
  471. blockMeta := r.state.blockStore.LoadBlockMeta(prs.Height)
  472. if blockMeta == nil {
  473. heightLogger.Error(
  474. "failed to load block meta",
  475. "blockstoreBase", blockStoreBase,
  476. "blockstoreHeight", r.state.blockStore.Height(),
  477. )
  478. timer.Reset(r.state.config.PeerGossipSleepDuration)
  479. select {
  480. case <-timer.C:
  481. case <-ctx.Done():
  482. return
  483. }
  484. } else {
  485. ps.InitProposalBlockParts(blockMeta.BlockID.PartSetHeader)
  486. }
  487. // Continue the loop since prs is a copy and not effected by this
  488. // initialization.
  489. continue OUTER_LOOP
  490. }
  491. r.gossipDataForCatchup(ctx, rs, prs, ps)
  492. continue OUTER_LOOP
  493. }
  494. // if height and round don't match, sleep
  495. if (rs.Height != prs.Height) || (rs.Round != prs.Round) {
  496. timer.Reset(r.state.config.PeerGossipSleepDuration)
  497. select {
  498. case <-timer.C:
  499. case <-ctx.Done():
  500. return
  501. }
  502. continue OUTER_LOOP
  503. }
  504. // By here, height and round match.
  505. // Proposal block parts were already matched and sent if any were wanted.
  506. // (These can match on hash so the round doesn't matter)
  507. // Now consider sending other things, like the Proposal itself.
  508. // Send Proposal && ProposalPOL BitArray?
  509. if rs.Proposal != nil && !prs.Proposal {
  510. // Proposal: share the proposal metadata with peer.
  511. {
  512. propProto := rs.Proposal.ToProto()
  513. logger.Debug("sending proposal", "height", prs.Height, "round", prs.Round)
  514. if err := r.dataCh.Send(ctx, p2p.Envelope{
  515. To: ps.peerID,
  516. Message: &tmcons.Proposal{
  517. Proposal: *propProto,
  518. },
  519. }); err != nil {
  520. return
  521. }
  522. // NOTE: A peer might have received a different proposal message, so
  523. // this Proposal msg will be rejected!
  524. ps.SetHasProposal(rs.Proposal)
  525. }
  526. // ProposalPOL: lets peer know which POL votes we have so far. The peer
  527. // must receive ProposalMessage first. Note, rs.Proposal was validated,
  528. // so rs.Proposal.POLRound <= rs.Round, so we definitely have
  529. // rs.Votes.Prevotes(rs.Proposal.POLRound).
  530. if 0 <= rs.Proposal.POLRound {
  531. pPol := rs.Votes.Prevotes(rs.Proposal.POLRound).BitArray()
  532. pPolProto := pPol.ToProto()
  533. logger.Debug("sending POL", "height", prs.Height, "round", prs.Round)
  534. if err := r.dataCh.Send(ctx, p2p.Envelope{
  535. To: ps.peerID,
  536. Message: &tmcons.ProposalPOL{
  537. Height: rs.Height,
  538. ProposalPolRound: rs.Proposal.POLRound,
  539. ProposalPol: *pPolProto,
  540. },
  541. }); err != nil {
  542. return
  543. }
  544. }
  545. continue OUTER_LOOP
  546. }
  547. // nothing to do -- sleep
  548. timer.Reset(r.state.config.PeerGossipSleepDuration)
  549. select {
  550. case <-timer.C:
  551. case <-ctx.Done():
  552. return
  553. }
  554. continue OUTER_LOOP
  555. }
  556. }
  557. // pickSendVote picks a vote and sends it to the peer. It will return true if
  558. // there is a vote to send and false otherwise.
  559. func (r *Reactor) pickSendVote(ctx context.Context, ps *PeerState, votes types.VoteSetReader) (bool, error) {
  560. vote, ok := ps.PickVoteToSend(votes)
  561. if !ok {
  562. return false, nil
  563. }
  564. r.logger.Debug("sending vote message", "ps", ps, "vote", vote)
  565. if err := r.voteCh.Send(ctx, p2p.Envelope{
  566. To: ps.peerID,
  567. Message: &tmcons.Vote{
  568. Vote: vote.ToProto(),
  569. },
  570. }); err != nil {
  571. return false, err
  572. }
  573. ps.SetHasVote(vote)
  574. return true, nil
  575. }
  576. func (r *Reactor) gossipVotesForHeight(
  577. ctx context.Context,
  578. rs *cstypes.RoundState,
  579. prs *cstypes.PeerRoundState,
  580. ps *PeerState,
  581. ) (bool, error) {
  582. logger := r.logger.With("height", prs.Height).With("peer", ps.peerID)
  583. // if there are lastCommits to send...
  584. if prs.Step == cstypes.RoundStepNewHeight {
  585. if ok, err := r.pickSendVote(ctx, ps, rs.LastCommit); err != nil {
  586. return false, err
  587. } else if ok {
  588. logger.Debug("picked rs.LastCommit to send")
  589. return true, nil
  590. }
  591. }
  592. // if there are POL prevotes to send...
  593. if prs.Step <= cstypes.RoundStepPropose && prs.Round != -1 && prs.Round <= rs.Round && prs.ProposalPOLRound != -1 {
  594. if polPrevotes := rs.Votes.Prevotes(prs.ProposalPOLRound); polPrevotes != nil {
  595. if ok, err := r.pickSendVote(ctx, ps, polPrevotes); err != nil {
  596. return false, err
  597. } else if ok {
  598. logger.Debug("picked rs.Prevotes(prs.ProposalPOLRound) to send", "round", prs.ProposalPOLRound)
  599. return true, nil
  600. }
  601. }
  602. }
  603. // if there are prevotes to send...
  604. if prs.Step <= cstypes.RoundStepPrevoteWait && prs.Round != -1 && prs.Round <= rs.Round {
  605. if ok, err := r.pickSendVote(ctx, ps, rs.Votes.Prevotes(prs.Round)); err != nil {
  606. return false, err
  607. } else if ok {
  608. logger.Debug("picked rs.Prevotes(prs.Round) to send", "round", prs.Round)
  609. return true, nil
  610. }
  611. }
  612. // if there are precommits to send...
  613. if prs.Step <= cstypes.RoundStepPrecommitWait && prs.Round != -1 && prs.Round <= rs.Round {
  614. if ok, err := r.pickSendVote(ctx, ps, rs.Votes.Precommits(prs.Round)); err != nil {
  615. return false, err
  616. } else if ok {
  617. logger.Debug("picked rs.Precommits(prs.Round) to send", "round", prs.Round)
  618. return true, nil
  619. }
  620. }
  621. // if there are prevotes to send...(which are needed because of validBlock mechanism)
  622. if prs.Round != -1 && prs.Round <= rs.Round {
  623. if ok, err := r.pickSendVote(ctx, ps, rs.Votes.Prevotes(prs.Round)); err != nil {
  624. return false, err
  625. } else if ok {
  626. logger.Debug("picked rs.Prevotes(prs.Round) to send", "round", prs.Round)
  627. return true, nil
  628. }
  629. }
  630. // if there are POLPrevotes to send...
  631. if prs.ProposalPOLRound != -1 {
  632. if polPrevotes := rs.Votes.Prevotes(prs.ProposalPOLRound); polPrevotes != nil {
  633. if ok, err := r.pickSendVote(ctx, ps, polPrevotes); err != nil {
  634. return false, err
  635. } else if ok {
  636. logger.Debug("picked rs.Prevotes(prs.ProposalPOLRound) to send", "round", prs.ProposalPOLRound)
  637. return true, nil
  638. }
  639. }
  640. }
  641. return false, nil
  642. }
  643. func (r *Reactor) gossipVotesRoutine(ctx context.Context, ps *PeerState) {
  644. logger := r.logger.With("peer", ps.peerID)
  645. defer ps.broadcastWG.Done()
  646. // XXX: simple hack to throttle logs upon sleep
  647. logThrottle := 0
  648. timer := time.NewTimer(0)
  649. defer timer.Stop()
  650. OUTER_LOOP:
  651. for {
  652. if !r.IsRunning() {
  653. return
  654. }
  655. select {
  656. case <-ctx.Done():
  657. return
  658. case <-ps.closer.Done():
  659. // The peer is marked for removal via a PeerUpdate as the doneCh was
  660. // explicitly closed to signal we should exit.
  661. return
  662. default:
  663. }
  664. rs := r.state.GetRoundState()
  665. prs := ps.GetRoundState()
  666. switch logThrottle {
  667. case 1: // first sleep
  668. logThrottle = 2
  669. case 2: // no more sleep
  670. logThrottle = 0
  671. }
  672. // if height matches, then send LastCommit, Prevotes, and Precommits
  673. if rs.Height == prs.Height {
  674. if ok, err := r.gossipVotesForHeight(ctx, rs, prs, ps); err != nil {
  675. return
  676. } else if ok {
  677. continue OUTER_LOOP
  678. }
  679. }
  680. // special catchup logic -- if peer is lagging by height 1, send LastCommit
  681. if prs.Height != 0 && rs.Height == prs.Height+1 {
  682. if ok, err := r.pickSendVote(ctx, ps, rs.LastCommit); err != nil {
  683. return
  684. } else if ok {
  685. logger.Debug("picked rs.LastCommit to send", "height", prs.Height)
  686. continue OUTER_LOOP
  687. }
  688. }
  689. // catchup logic -- if peer is lagging by more than 1, send Commit
  690. blockStoreBase := r.state.blockStore.Base()
  691. if blockStoreBase > 0 && prs.Height != 0 && rs.Height >= prs.Height+2 && prs.Height >= blockStoreBase {
  692. // Load the block commit for prs.Height, which contains precommit
  693. // signatures for prs.Height.
  694. if commit := r.state.blockStore.LoadBlockCommit(prs.Height); commit != nil {
  695. if ok, err := r.pickSendVote(ctx, ps, commit); err != nil {
  696. return
  697. } else if ok {
  698. logger.Debug("picked Catchup commit to send", "height", prs.Height)
  699. continue OUTER_LOOP
  700. }
  701. }
  702. }
  703. if logThrottle == 0 {
  704. // we sent nothing -- sleep
  705. logThrottle = 1
  706. logger.Debug(
  707. "no votes to send; sleeping",
  708. "rs.Height", rs.Height,
  709. "prs.Height", prs.Height,
  710. "localPV", rs.Votes.Prevotes(rs.Round).BitArray(), "peerPV", prs.Prevotes,
  711. "localPC", rs.Votes.Precommits(rs.Round).BitArray(), "peerPC", prs.Precommits,
  712. )
  713. } else if logThrottle == 2 {
  714. logThrottle = 1
  715. }
  716. timer.Reset(r.state.config.PeerGossipSleepDuration)
  717. select {
  718. case <-ctx.Done():
  719. return
  720. case <-timer.C:
  721. }
  722. continue OUTER_LOOP
  723. }
  724. }
  725. // NOTE: `queryMaj23Routine` has a simple crude design since it only comes
  726. // into play for liveness when there's a signature DDoS attack happening.
  727. func (r *Reactor) queryMaj23Routine(ctx context.Context, ps *PeerState) {
  728. defer ps.broadcastWG.Done()
  729. timer := time.NewTimer(0)
  730. defer timer.Stop()
  731. OUTER_LOOP:
  732. for {
  733. if !r.IsRunning() {
  734. return
  735. }
  736. select {
  737. case <-ctx.Done():
  738. return
  739. case <-ps.closer.Done():
  740. // The peer is marked for removal via a PeerUpdate as the doneCh was
  741. // explicitly closed to signal we should exit.
  742. return
  743. default:
  744. }
  745. // maybe send Height/Round/Prevotes
  746. {
  747. rs := r.state.GetRoundState()
  748. prs := ps.GetRoundState()
  749. if rs.Height == prs.Height {
  750. if maj23, ok := rs.Votes.Prevotes(prs.Round).TwoThirdsMajority(); ok {
  751. if err := r.stateCh.Send(ctx, p2p.Envelope{
  752. To: ps.peerID,
  753. Message: &tmcons.VoteSetMaj23{
  754. Height: prs.Height,
  755. Round: prs.Round,
  756. Type: tmproto.PrevoteType,
  757. BlockID: maj23.ToProto(),
  758. },
  759. }); err != nil {
  760. return
  761. }
  762. timer.Reset(r.state.config.PeerQueryMaj23SleepDuration)
  763. select {
  764. case <-timer.C:
  765. case <-ctx.Done():
  766. return
  767. }
  768. }
  769. }
  770. }
  771. // maybe send Height/Round/Precommits
  772. {
  773. rs := r.state.GetRoundState()
  774. prs := ps.GetRoundState()
  775. if rs.Height == prs.Height {
  776. if maj23, ok := rs.Votes.Precommits(prs.Round).TwoThirdsMajority(); ok {
  777. if err := r.stateCh.Send(ctx, p2p.Envelope{
  778. To: ps.peerID,
  779. Message: &tmcons.VoteSetMaj23{
  780. Height: prs.Height,
  781. Round: prs.Round,
  782. Type: tmproto.PrecommitType,
  783. BlockID: maj23.ToProto(),
  784. },
  785. }); err != nil {
  786. return
  787. }
  788. select {
  789. case <-timer.C:
  790. timer.Reset(r.state.config.PeerQueryMaj23SleepDuration)
  791. case <-ctx.Done():
  792. return
  793. }
  794. }
  795. }
  796. }
  797. // maybe send Height/Round/ProposalPOL
  798. {
  799. rs := r.state.GetRoundState()
  800. prs := ps.GetRoundState()
  801. if rs.Height == prs.Height && prs.ProposalPOLRound >= 0 {
  802. if maj23, ok := rs.Votes.Prevotes(prs.ProposalPOLRound).TwoThirdsMajority(); ok {
  803. if err := r.stateCh.Send(ctx, p2p.Envelope{
  804. To: ps.peerID,
  805. Message: &tmcons.VoteSetMaj23{
  806. Height: prs.Height,
  807. Round: prs.ProposalPOLRound,
  808. Type: tmproto.PrevoteType,
  809. BlockID: maj23.ToProto(),
  810. },
  811. }); err != nil {
  812. return
  813. }
  814. timer.Reset(r.state.config.PeerQueryMaj23SleepDuration)
  815. select {
  816. case <-timer.C:
  817. case <-ctx.Done():
  818. return
  819. }
  820. }
  821. }
  822. }
  823. // Little point sending LastCommitRound/LastCommit, these are fleeting and
  824. // non-blocking.
  825. // maybe send Height/CatchupCommitRound/CatchupCommit
  826. {
  827. prs := ps.GetRoundState()
  828. if prs.CatchupCommitRound != -1 && prs.Height > 0 && prs.Height <= r.state.blockStore.Height() &&
  829. prs.Height >= r.state.blockStore.Base() {
  830. if commit := r.state.LoadCommit(prs.Height); commit != nil {
  831. if err := r.stateCh.Send(ctx, p2p.Envelope{
  832. To: ps.peerID,
  833. Message: &tmcons.VoteSetMaj23{
  834. Height: prs.Height,
  835. Round: commit.Round,
  836. Type: tmproto.PrecommitType,
  837. BlockID: commit.BlockID.ToProto(),
  838. },
  839. }); err != nil {
  840. return
  841. }
  842. timer.Reset(r.state.config.PeerQueryMaj23SleepDuration)
  843. select {
  844. case <-timer.C:
  845. case <-ctx.Done():
  846. return
  847. }
  848. }
  849. }
  850. }
  851. timer.Reset(r.state.config.PeerQueryMaj23SleepDuration)
  852. select {
  853. case <-timer.C:
  854. case <-ctx.Done():
  855. return
  856. }
  857. continue OUTER_LOOP
  858. }
  859. }
  860. // processPeerUpdate process a peer update message. For new or reconnected peers,
  861. // we create a peer state if one does not exist for the peer, which should always
  862. // be the case, and we spawn all the relevant goroutine to broadcast messages to
  863. // the peer. During peer removal, we remove the peer for our set of peers and
  864. // signal to all spawned goroutines to gracefully exit in a non-blocking manner.
  865. func (r *Reactor) processPeerUpdate(ctx context.Context, peerUpdate p2p.PeerUpdate) {
  866. r.logger.Debug("received peer update", "peer", peerUpdate.NodeID, "status", peerUpdate.Status)
  867. r.mtx.Lock()
  868. defer r.mtx.Unlock()
  869. switch peerUpdate.Status {
  870. case p2p.PeerStatusUp:
  871. // Do not allow starting new broadcasting goroutines after reactor shutdown
  872. // has been initiated. This can happen after we've manually closed all
  873. // peer goroutines, but the router still sends in-flight peer updates.
  874. if !r.IsRunning() {
  875. return
  876. }
  877. var (
  878. ps *PeerState
  879. ok bool
  880. )
  881. ps, ok = r.peers[peerUpdate.NodeID]
  882. if !ok {
  883. ps = NewPeerState(r.logger, peerUpdate.NodeID)
  884. r.peers[peerUpdate.NodeID] = ps
  885. }
  886. if !ps.IsRunning() {
  887. // Set the peer state's closer to signal to all spawned goroutines to exit
  888. // when the peer is removed. We also set the running state to ensure we
  889. // do not spawn multiple instances of the same goroutines and finally we
  890. // set the waitgroup counter so we know when all goroutines have exited.
  891. ps.broadcastWG.Add(3)
  892. ps.SetRunning(true)
  893. // start goroutines for this peer
  894. go r.gossipDataRoutine(ctx, ps)
  895. go r.gossipVotesRoutine(ctx, ps)
  896. go r.queryMaj23Routine(ctx, ps)
  897. // Send our state to the peer. If we're block-syncing, broadcast a
  898. // RoundStepMessage later upon SwitchToConsensus().
  899. if !r.waitSync {
  900. go func() { _ = r.sendNewRoundStepMessage(ctx, ps.peerID) }()
  901. }
  902. }
  903. case p2p.PeerStatusDown:
  904. ps, ok := r.peers[peerUpdate.NodeID]
  905. if ok && ps.IsRunning() {
  906. // signal to all spawned goroutines for the peer to gracefully exit
  907. ps.closer.Close()
  908. go func() {
  909. // Wait for all spawned broadcast goroutines to exit before marking the
  910. // peer state as no longer running and removal from the peers map.
  911. ps.broadcastWG.Wait()
  912. r.mtx.Lock()
  913. delete(r.peers, peerUpdate.NodeID)
  914. r.mtx.Unlock()
  915. ps.SetRunning(false)
  916. }()
  917. }
  918. }
  919. }
  920. // handleStateMessage handles envelopes sent from peers on the StateChannel.
  921. // An error is returned if the message is unrecognized or if validation fails.
  922. // If we fail to find the peer state for the envelope sender, we perform a no-op
  923. // and return. This can happen when we process the envelope after the peer is
  924. // removed.
  925. func (r *Reactor) handleStateMessage(ctx context.Context, envelope *p2p.Envelope, msgI Message) error {
  926. ps, ok := r.GetPeerState(envelope.From)
  927. if !ok || ps == nil {
  928. r.logger.Debug("failed to find peer state", "peer", envelope.From, "ch_id", "StateChannel")
  929. return nil
  930. }
  931. switch msg := envelope.Message.(type) {
  932. case *tmcons.NewRoundStep:
  933. r.state.mtx.RLock()
  934. initialHeight := r.state.state.InitialHeight
  935. r.state.mtx.RUnlock()
  936. if err := msgI.(*NewRoundStepMessage).ValidateHeight(initialHeight); err != nil {
  937. r.logger.Error("peer sent us an invalid msg", "msg", msg, "err", err)
  938. return err
  939. }
  940. ps.ApplyNewRoundStepMessage(msgI.(*NewRoundStepMessage))
  941. case *tmcons.NewValidBlock:
  942. ps.ApplyNewValidBlockMessage(msgI.(*NewValidBlockMessage))
  943. case *tmcons.HasVote:
  944. ps.ApplyHasVoteMessage(msgI.(*HasVoteMessage))
  945. case *tmcons.VoteSetMaj23:
  946. r.state.mtx.RLock()
  947. height, votes := r.state.Height, r.state.Votes
  948. r.state.mtx.RUnlock()
  949. if height != msg.Height {
  950. return nil
  951. }
  952. vsmMsg := msgI.(*VoteSetMaj23Message)
  953. // peer claims to have a maj23 for some BlockID at <H,R,S>
  954. err := votes.SetPeerMaj23(msg.Round, msg.Type, ps.peerID, vsmMsg.BlockID)
  955. if err != nil {
  956. return err
  957. }
  958. // Respond with a VoteSetBitsMessage showing which votes we have and
  959. // consequently shows which we don't have.
  960. var ourVotes *bits.BitArray
  961. switch vsmMsg.Type {
  962. case tmproto.PrevoteType:
  963. ourVotes = votes.Prevotes(msg.Round).BitArrayByBlockID(vsmMsg.BlockID)
  964. case tmproto.PrecommitType:
  965. ourVotes = votes.Precommits(msg.Round).BitArrayByBlockID(vsmMsg.BlockID)
  966. default:
  967. panic("bad VoteSetBitsMessage field type; forgot to add a check in ValidateBasic?")
  968. }
  969. eMsg := &tmcons.VoteSetBits{
  970. Height: msg.Height,
  971. Round: msg.Round,
  972. Type: msg.Type,
  973. BlockID: msg.BlockID,
  974. }
  975. if votesProto := ourVotes.ToProto(); votesProto != nil {
  976. eMsg.Votes = *votesProto
  977. }
  978. if err := r.voteSetBitsCh.Send(ctx, p2p.Envelope{
  979. To: envelope.From,
  980. Message: eMsg,
  981. }); err != nil {
  982. return err
  983. }
  984. default:
  985. return fmt.Errorf("received unknown message on StateChannel: %T", msg)
  986. }
  987. return nil
  988. }
  989. // handleDataMessage handles envelopes sent from peers on the DataChannel. If we
  990. // fail to find the peer state for the envelope sender, we perform a no-op and
  991. // return. This can happen when we process the envelope after the peer is
  992. // removed.
  993. func (r *Reactor) handleDataMessage(ctx context.Context, envelope *p2p.Envelope, msgI Message) error {
  994. logger := r.logger.With("peer", envelope.From, "ch_id", "DataChannel")
  995. ps, ok := r.GetPeerState(envelope.From)
  996. if !ok || ps == nil {
  997. r.logger.Debug("failed to find peer state")
  998. return nil
  999. }
  1000. if r.WaitSync() {
  1001. logger.Info("ignoring message received during sync", "msg", fmt.Sprintf("%T", msgI))
  1002. return nil
  1003. }
  1004. switch msg := envelope.Message.(type) {
  1005. case *tmcons.Proposal:
  1006. pMsg := msgI.(*ProposalMessage)
  1007. ps.SetHasProposal(pMsg.Proposal)
  1008. select {
  1009. case <-ctx.Done():
  1010. return ctx.Err()
  1011. case r.state.peerMsgQueue <- msgInfo{pMsg, envelope.From}:
  1012. }
  1013. case *tmcons.ProposalPOL:
  1014. ps.ApplyProposalPOLMessage(msgI.(*ProposalPOLMessage))
  1015. case *tmcons.BlockPart:
  1016. bpMsg := msgI.(*BlockPartMessage)
  1017. ps.SetHasProposalBlockPart(bpMsg.Height, bpMsg.Round, int(bpMsg.Part.Index))
  1018. r.Metrics.BlockParts.With("peer_id", string(envelope.From)).Add(1)
  1019. select {
  1020. case r.state.peerMsgQueue <- msgInfo{bpMsg, envelope.From}:
  1021. return nil
  1022. case <-ctx.Done():
  1023. return ctx.Err()
  1024. }
  1025. default:
  1026. return fmt.Errorf("received unknown message on DataChannel: %T", msg)
  1027. }
  1028. return nil
  1029. }
  1030. // handleVoteMessage handles envelopes sent from peers on the VoteChannel. If we
  1031. // fail to find the peer state for the envelope sender, we perform a no-op and
  1032. // return. This can happen when we process the envelope after the peer is
  1033. // removed.
  1034. func (r *Reactor) handleVoteMessage(ctx context.Context, envelope *p2p.Envelope, msgI Message) error {
  1035. logger := r.logger.With("peer", envelope.From, "ch_id", "VoteChannel")
  1036. ps, ok := r.GetPeerState(envelope.From)
  1037. if !ok || ps == nil {
  1038. r.logger.Debug("failed to find peer state")
  1039. return nil
  1040. }
  1041. if r.WaitSync() {
  1042. logger.Info("ignoring message received during sync", "msg", msgI)
  1043. return nil
  1044. }
  1045. switch msg := envelope.Message.(type) {
  1046. case *tmcons.Vote:
  1047. r.state.mtx.RLock()
  1048. height, valSize, lastCommitSize := r.state.Height, r.state.Validators.Size(), r.state.LastCommit.Size()
  1049. r.state.mtx.RUnlock()
  1050. vMsg := msgI.(*VoteMessage)
  1051. ps.EnsureVoteBitArrays(height, valSize)
  1052. ps.EnsureVoteBitArrays(height-1, lastCommitSize)
  1053. ps.SetHasVote(vMsg.Vote)
  1054. select {
  1055. case r.state.peerMsgQueue <- msgInfo{vMsg, envelope.From}:
  1056. return nil
  1057. case <-ctx.Done():
  1058. return ctx.Err()
  1059. }
  1060. default:
  1061. return fmt.Errorf("received unknown message on VoteChannel: %T", msg)
  1062. }
  1063. }
  1064. // handleVoteSetBitsMessage handles envelopes sent from peers on the
  1065. // VoteSetBitsChannel. If we fail to find the peer state for the envelope sender,
  1066. // we perform a no-op and return. This can happen when we process the envelope
  1067. // after the peer is removed.
  1068. func (r *Reactor) handleVoteSetBitsMessage(ctx context.Context, envelope *p2p.Envelope, msgI Message) error {
  1069. logger := r.logger.With("peer", envelope.From, "ch_id", "VoteSetBitsChannel")
  1070. ps, ok := r.GetPeerState(envelope.From)
  1071. if !ok || ps == nil {
  1072. r.logger.Debug("failed to find peer state")
  1073. return nil
  1074. }
  1075. if r.WaitSync() {
  1076. logger.Info("ignoring message received during sync", "msg", msgI)
  1077. return nil
  1078. }
  1079. switch msg := envelope.Message.(type) {
  1080. case *tmcons.VoteSetBits:
  1081. r.state.mtx.RLock()
  1082. height, votes := r.state.Height, r.state.Votes
  1083. r.state.mtx.RUnlock()
  1084. vsbMsg := msgI.(*VoteSetBitsMessage)
  1085. if height == msg.Height {
  1086. var ourVotes *bits.BitArray
  1087. switch msg.Type {
  1088. case tmproto.PrevoteType:
  1089. ourVotes = votes.Prevotes(msg.Round).BitArrayByBlockID(vsbMsg.BlockID)
  1090. case tmproto.PrecommitType:
  1091. ourVotes = votes.Precommits(msg.Round).BitArrayByBlockID(vsbMsg.BlockID)
  1092. default:
  1093. panic("bad VoteSetBitsMessage field type; forgot to add a check in ValidateBasic?")
  1094. }
  1095. ps.ApplyVoteSetBitsMessage(vsbMsg, ourVotes)
  1096. } else {
  1097. ps.ApplyVoteSetBitsMessage(vsbMsg, nil)
  1098. }
  1099. default:
  1100. return fmt.Errorf("received unknown message on VoteSetBitsChannel: %T", msg)
  1101. }
  1102. return nil
  1103. }
  1104. // handleMessage handles an Envelope sent from a peer on a specific p2p Channel.
  1105. // It will handle errors and any possible panics gracefully. A caller can handle
  1106. // any error returned by sending a PeerError on the respective channel.
  1107. //
  1108. // NOTE: We process these messages even when we're block syncing. Messages affect
  1109. // either a peer state or the consensus state. Peer state updates can happen in
  1110. // parallel, but processing of proposals, block parts, and votes are ordered by
  1111. // the p2p channel.
  1112. //
  1113. // NOTE: We block on consensus state for proposals, block parts, and votes.
  1114. func (r *Reactor) handleMessage(ctx context.Context, chID p2p.ChannelID, envelope *p2p.Envelope) (err error) {
  1115. defer func() {
  1116. if e := recover(); e != nil {
  1117. err = fmt.Errorf("panic in processing message: %v", e)
  1118. r.logger.Error(
  1119. "recovering from processing message panic",
  1120. "err", err,
  1121. "stack", string(debug.Stack()),
  1122. )
  1123. }
  1124. }()
  1125. // We wrap the envelope's message in a Proto wire type so we can convert back
  1126. // the domain type that individual channel message handlers can work with. We
  1127. // do this here once to avoid having to do it for each individual message type.
  1128. // and because a large part of the core business logic depends on these
  1129. // domain types opposed to simply working with the Proto types.
  1130. protoMsg := new(tmcons.Message)
  1131. if err := protoMsg.Wrap(envelope.Message); err != nil {
  1132. return err
  1133. }
  1134. msgI, err := MsgFromProto(protoMsg)
  1135. if err != nil {
  1136. return err
  1137. }
  1138. r.logger.Debug("received message", "ch_id", chID, "message", msgI, "peer", envelope.From)
  1139. switch chID {
  1140. case StateChannel:
  1141. err = r.handleStateMessage(ctx, envelope, msgI)
  1142. case DataChannel:
  1143. err = r.handleDataMessage(ctx, envelope, msgI)
  1144. case VoteChannel:
  1145. err = r.handleVoteMessage(ctx, envelope, msgI)
  1146. case VoteSetBitsChannel:
  1147. err = r.handleVoteSetBitsMessage(ctx, envelope, msgI)
  1148. default:
  1149. err = fmt.Errorf("unknown channel ID (%d) for envelope (%v)", chID, envelope)
  1150. }
  1151. return err
  1152. }
  1153. // processStateCh initiates a blocking process where we listen for and handle
  1154. // envelopes on the StateChannel. Any error encountered during message
  1155. // execution will result in a PeerError being sent on the StateChannel. When
  1156. // the reactor is stopped, we will catch the signal and close the p2p Channel
  1157. // gracefully.
  1158. func (r *Reactor) processStateCh(ctx context.Context) {
  1159. iter := r.stateCh.Receive(ctx)
  1160. for iter.Next(ctx) {
  1161. envelope := iter.Envelope()
  1162. if err := r.handleMessage(ctx, r.stateCh.ID, envelope); err != nil {
  1163. r.logger.Error("failed to process message", "ch_id", r.stateCh.ID, "envelope", envelope, "err", err)
  1164. if serr := r.stateCh.SendError(ctx, p2p.PeerError{
  1165. NodeID: envelope.From,
  1166. Err: err,
  1167. }); serr != nil {
  1168. return
  1169. }
  1170. }
  1171. }
  1172. }
  1173. // processDataCh initiates a blocking process where we listen for and handle
  1174. // envelopes on the DataChannel. Any error encountered during message
  1175. // execution will result in a PeerError being sent on the DataChannel. When
  1176. // the reactor is stopped, we will catch the signal and close the p2p Channel
  1177. // gracefully.
  1178. func (r *Reactor) processDataCh(ctx context.Context) {
  1179. iter := r.dataCh.Receive(ctx)
  1180. for iter.Next(ctx) {
  1181. envelope := iter.Envelope()
  1182. if err := r.handleMessage(ctx, r.dataCh.ID, envelope); err != nil {
  1183. r.logger.Error("failed to process message", "ch_id", r.dataCh.ID, "envelope", envelope, "err", err)
  1184. if serr := r.dataCh.SendError(ctx, p2p.PeerError{
  1185. NodeID: envelope.From,
  1186. Err: err,
  1187. }); serr != nil {
  1188. return
  1189. }
  1190. }
  1191. }
  1192. }
  1193. // processVoteCh initiates a blocking process where we listen for and handle
  1194. // envelopes on the VoteChannel. Any error encountered during message
  1195. // execution will result in a PeerError being sent on the VoteChannel. When
  1196. // the reactor is stopped, we will catch the signal and close the p2p Channel
  1197. // gracefully.
  1198. func (r *Reactor) processVoteCh(ctx context.Context) {
  1199. iter := r.voteCh.Receive(ctx)
  1200. for iter.Next(ctx) {
  1201. envelope := iter.Envelope()
  1202. if err := r.handleMessage(ctx, r.voteCh.ID, envelope); err != nil {
  1203. r.logger.Error("failed to process message", "ch_id", r.voteCh.ID, "envelope", envelope, "err", err)
  1204. if serr := r.voteCh.SendError(ctx, p2p.PeerError{
  1205. NodeID: envelope.From,
  1206. Err: err,
  1207. }); serr != nil {
  1208. return
  1209. }
  1210. }
  1211. }
  1212. }
  1213. // processVoteCh initiates a blocking process where we listen for and handle
  1214. // envelopes on the VoteSetBitsChannel. Any error encountered during message
  1215. // execution will result in a PeerError being sent on the VoteSetBitsChannel.
  1216. // When the reactor is stopped, we will catch the signal and close the p2p
  1217. // Channel gracefully.
  1218. func (r *Reactor) processVoteSetBitsCh(ctx context.Context) {
  1219. iter := r.voteSetBitsCh.Receive(ctx)
  1220. for iter.Next(ctx) {
  1221. envelope := iter.Envelope()
  1222. if err := r.handleMessage(ctx, r.voteSetBitsCh.ID, envelope); err != nil {
  1223. if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
  1224. return
  1225. }
  1226. r.logger.Error("failed to process message", "ch_id", r.voteSetBitsCh.ID, "envelope", envelope, "err", err)
  1227. if serr := r.voteSetBitsCh.SendError(ctx, p2p.PeerError{
  1228. NodeID: envelope.From,
  1229. Err: err,
  1230. }); serr != nil {
  1231. return
  1232. }
  1233. }
  1234. }
  1235. }
  1236. // processPeerUpdates initiates a blocking process where we listen for and handle
  1237. // PeerUpdate messages. When the reactor is stopped, we will catch the signal and
  1238. // close the p2p PeerUpdatesCh gracefully.
  1239. func (r *Reactor) processPeerUpdates(ctx context.Context) {
  1240. for {
  1241. select {
  1242. case <-ctx.Done():
  1243. r.logger.Debug("stopped listening on peer updates channel; closing...")
  1244. return
  1245. case peerUpdate := <-r.peerUpdates.Updates():
  1246. r.processPeerUpdate(ctx, peerUpdate)
  1247. }
  1248. }
  1249. }
  1250. func (r *Reactor) peerStatsRoutine(ctx context.Context) {
  1251. for {
  1252. if !r.IsRunning() {
  1253. r.logger.Info("stopping peerStatsRoutine")
  1254. return
  1255. }
  1256. select {
  1257. case msg := <-r.state.statsMsgQueue:
  1258. ps, ok := r.GetPeerState(msg.PeerID)
  1259. if !ok || ps == nil {
  1260. r.logger.Debug("attempt to update stats for non-existent peer", "peer", msg.PeerID)
  1261. continue
  1262. }
  1263. switch msg.Msg.(type) {
  1264. case *VoteMessage:
  1265. if numVotes := ps.RecordVote(); numVotes%votesToContributeToBecomeGoodPeer == 0 {
  1266. r.peerUpdates.SendUpdate(ctx, p2p.PeerUpdate{
  1267. NodeID: msg.PeerID,
  1268. Status: p2p.PeerStatusGood,
  1269. })
  1270. }
  1271. case *BlockPartMessage:
  1272. if numParts := ps.RecordBlockPart(); numParts%blocksToContributeToBecomeGoodPeer == 0 {
  1273. r.peerUpdates.SendUpdate(ctx, p2p.PeerUpdate{
  1274. NodeID: msg.PeerID,
  1275. Status: p2p.PeerStatusGood,
  1276. })
  1277. }
  1278. }
  1279. case <-ctx.Done():
  1280. return
  1281. }
  1282. }
  1283. }
  1284. func (r *Reactor) GetConsensusState() *State {
  1285. return r.state
  1286. }
  1287. func (r *Reactor) SetStateSyncingMetrics(v float64) {
  1288. r.Metrics.StateSyncing.Set(v)
  1289. }
  1290. func (r *Reactor) SetBlockSyncingMetrics(v float64) {
  1291. r.Metrics.BlockSyncing.Set(v)
  1292. }