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.

1095 lines
38 KiB

deps: update gogo/protobuf version from v1.2.1 to v1.3.0 (#3947) * update gogo/protobuf version from v1.2.1 to v1.3.0 Also errcheck from v1.1.0 to v1.2.0 See full diff in - https://github.com/gogo/protobuf/compare/v1.2.1...v1.3.0 - https://github.com/kisielk/errcheck/compare/v1.1.0...v1.2.0 Changelog: Tested versions: go 1.12.9 protoc 3.7.1 Improvements: plugin/stringer - Handle repeated and/or nullable types a bit better now. plugin/size - Remove the loop in sovXXX by using bit twiddling. Thanks: https://github.com/apelisse plugin/marshalto - Implemented a reverse marshal strategy which allows for faster marshalling. This now avoids a recursive (and repeated) call to Size(). Thanks: https://github.com/apelisse plugin/compare - Added support for for oneof types. Bug fixes: protoc-gen-gogo/generator - Fix assignment to entry in nil map. Thanks: https://github.com/tgulacsi protoc-gen-gogo/generator - Allows plugins to call RecordTypeUse without panicking. Thanks: https://github.com/fedenusy proto/extensions - Fixed set extension regression. We did not clear the extensions before setting. io/uint32 - fix uint32reader bug that causes ReadMsg to recreate buffer when lengths are the same. Thanks: https://github.com/SebiSujar proto/table_merge: Fix merge of non-nullable slices. Thanks: https://github.com/euroelessar Upstream commits: merged in golang/protobuf commit 318d17de72747ed1c16502681db4b2bb709a92d0 - Add UnimplementedServer for server interface merged in golang/protobuf commit b85cd75de734650db18a99a943fe351d41387800 - protoc-gen-go/grpc: inline errUnimplemented function merged in golang/protobuf commit d3c38a4eb4970272b87a425ae00ccc4548e2f9bb - protoc-gen-go/grpc: use status and code packages only if needed merged in golang/protobuf commit e91709a02e0e8ff8b86b7aa913fdc9ae9498e825 - fix indentation in jsonpb with Any messages merged in golang/protobuf commit 8d0c54c1246661d9a51ca0ba455d22116d485eaa - protoc-gen-go: generate XXX_OneofWrappers instead of XXX_OneofFuncs Misc: extensions.md - Markdown update. Thanks: https://github.com/TennyZhuang Readme.md - Added user. go/protoc update - Updated to go1.12.x and protoc 3.7.1 Makefile update - fix go vet shadow tool reference test/mixbench - Update mixbench tool. Expose runnable benchmarks via flags. * update certstrap * update golangci-lint from v1.13.2 to v1.17.1 * update gox as well * test * comment out golangci temporary * comment out go-deadlock deps
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
deps: update gogo/protobuf version from v1.2.1 to v1.3.0 (#3947) * update gogo/protobuf version from v1.2.1 to v1.3.0 Also errcheck from v1.1.0 to v1.2.0 See full diff in - https://github.com/gogo/protobuf/compare/v1.2.1...v1.3.0 - https://github.com/kisielk/errcheck/compare/v1.1.0...v1.2.0 Changelog: Tested versions: go 1.12.9 protoc 3.7.1 Improvements: plugin/stringer - Handle repeated and/or nullable types a bit better now. plugin/size - Remove the loop in sovXXX by using bit twiddling. Thanks: https://github.com/apelisse plugin/marshalto - Implemented a reverse marshal strategy which allows for faster marshalling. This now avoids a recursive (and repeated) call to Size(). Thanks: https://github.com/apelisse plugin/compare - Added support for for oneof types. Bug fixes: protoc-gen-gogo/generator - Fix assignment to entry in nil map. Thanks: https://github.com/tgulacsi protoc-gen-gogo/generator - Allows plugins to call RecordTypeUse without panicking. Thanks: https://github.com/fedenusy proto/extensions - Fixed set extension regression. We did not clear the extensions before setting. io/uint32 - fix uint32reader bug that causes ReadMsg to recreate buffer when lengths are the same. Thanks: https://github.com/SebiSujar proto/table_merge: Fix merge of non-nullable slices. Thanks: https://github.com/euroelessar Upstream commits: merged in golang/protobuf commit 318d17de72747ed1c16502681db4b2bb709a92d0 - Add UnimplementedServer for server interface merged in golang/protobuf commit b85cd75de734650db18a99a943fe351d41387800 - protoc-gen-go/grpc: inline errUnimplemented function merged in golang/protobuf commit d3c38a4eb4970272b87a425ae00ccc4548e2f9bb - protoc-gen-go/grpc: use status and code packages only if needed merged in golang/protobuf commit e91709a02e0e8ff8b86b7aa913fdc9ae9498e825 - fix indentation in jsonpb with Any messages merged in golang/protobuf commit 8d0c54c1246661d9a51ca0ba455d22116d485eaa - protoc-gen-go: generate XXX_OneofWrappers instead of XXX_OneofFuncs Misc: extensions.md - Markdown update. Thanks: https://github.com/TennyZhuang Readme.md - Added user. go/protoc update - Updated to go1.12.x and protoc 3.7.1 Makefile update - fix go vet shadow tool reference test/mixbench - Update mixbench tool. Expose runnable benchmarks via flags. * update certstrap * update golangci-lint from v1.13.2 to v1.17.1 * update gox as well * test * comment out golangci temporary * comment out go-deadlock deps
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
  1. package config
  2. import (
  3. "encoding/hex"
  4. "errors"
  5. "fmt"
  6. "net/http"
  7. "os"
  8. "path/filepath"
  9. "time"
  10. )
  11. const (
  12. // FuzzModeDrop is a mode in which we randomly drop reads/writes, connections or sleep
  13. FuzzModeDrop = iota
  14. // FuzzModeDelay is a mode in which we randomly sleep
  15. FuzzModeDelay
  16. // LogFormatPlain is a format for colored text
  17. LogFormatPlain = "plain"
  18. // LogFormatJSON is a format for json output
  19. LogFormatJSON = "json"
  20. )
  21. // NOTE: Most of the structs & relevant comments + the
  22. // default configuration options were used to manually
  23. // generate the config.toml. Please reflect any changes
  24. // made here in the defaultConfigTemplate constant in
  25. // config/toml.go
  26. // NOTE: libs/cli must know to look in the config dir!
  27. var (
  28. DefaultTendermintDir = ".tendermint"
  29. defaultConfigDir = "config"
  30. defaultDataDir = "data"
  31. defaultConfigFileName = "config.toml"
  32. defaultGenesisJSONName = "genesis.json"
  33. defaultPrivValKeyName = "priv_validator_key.json"
  34. defaultPrivValStateName = "priv_validator_state.json"
  35. defaultNodeKeyName = "node_key.json"
  36. defaultAddrBookName = "addrbook.json"
  37. defaultConfigFilePath = filepath.Join(defaultConfigDir, defaultConfigFileName)
  38. defaultGenesisJSONPath = filepath.Join(defaultConfigDir, defaultGenesisJSONName)
  39. defaultPrivValKeyPath = filepath.Join(defaultConfigDir, defaultPrivValKeyName)
  40. defaultPrivValStatePath = filepath.Join(defaultDataDir, defaultPrivValStateName)
  41. defaultNodeKeyPath = filepath.Join(defaultConfigDir, defaultNodeKeyName)
  42. defaultAddrBookPath = filepath.Join(defaultConfigDir, defaultAddrBookName)
  43. )
  44. // Config defines the top level configuration for a Tendermint node
  45. type Config struct {
  46. // Top level options use an anonymous struct
  47. BaseConfig `mapstructure:",squash"`
  48. // Options for services
  49. RPC *RPCConfig `mapstructure:"rpc"`
  50. P2P *P2PConfig `mapstructure:"p2p"`
  51. Mempool *MempoolConfig `mapstructure:"mempool"`
  52. StateSync *StateSyncConfig `mapstructure:"statesync"`
  53. FastSync *FastSyncConfig `mapstructure:"fastsync"`
  54. Consensus *ConsensusConfig `mapstructure:"consensus"`
  55. TxIndex *TxIndexConfig `mapstructure:"tx_index"`
  56. Instrumentation *InstrumentationConfig `mapstructure:"instrumentation"`
  57. }
  58. // DefaultConfig returns a default configuration for a Tendermint node
  59. func DefaultConfig() *Config {
  60. return &Config{
  61. BaseConfig: DefaultBaseConfig(),
  62. RPC: DefaultRPCConfig(),
  63. P2P: DefaultP2PConfig(),
  64. Mempool: DefaultMempoolConfig(),
  65. StateSync: DefaultStateSyncConfig(),
  66. FastSync: DefaultFastSyncConfig(),
  67. Consensus: DefaultConsensusConfig(),
  68. TxIndex: DefaultTxIndexConfig(),
  69. Instrumentation: DefaultInstrumentationConfig(),
  70. }
  71. }
  72. // TestConfig returns a configuration that can be used for testing
  73. func TestConfig() *Config {
  74. return &Config{
  75. BaseConfig: TestBaseConfig(),
  76. RPC: TestRPCConfig(),
  77. P2P: TestP2PConfig(),
  78. Mempool: TestMempoolConfig(),
  79. StateSync: TestStateSyncConfig(),
  80. FastSync: TestFastSyncConfig(),
  81. Consensus: TestConsensusConfig(),
  82. TxIndex: TestTxIndexConfig(),
  83. Instrumentation: TestInstrumentationConfig(),
  84. }
  85. }
  86. // SetRoot sets the RootDir for all Config structs
  87. func (cfg *Config) SetRoot(root string) *Config {
  88. cfg.BaseConfig.RootDir = root
  89. cfg.RPC.RootDir = root
  90. cfg.P2P.RootDir = root
  91. cfg.Mempool.RootDir = root
  92. cfg.Consensus.RootDir = root
  93. return cfg
  94. }
  95. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  96. // returns an error if any check fails.
  97. func (cfg *Config) ValidateBasic() error {
  98. if err := cfg.BaseConfig.ValidateBasic(); err != nil {
  99. return err
  100. }
  101. if err := cfg.RPC.ValidateBasic(); err != nil {
  102. return fmt.Errorf("error in [rpc] section: %w", err)
  103. }
  104. if err := cfg.P2P.ValidateBasic(); err != nil {
  105. return fmt.Errorf("error in [p2p] section: %w", err)
  106. }
  107. if err := cfg.Mempool.ValidateBasic(); err != nil {
  108. return fmt.Errorf("error in [mempool] section: %w", err)
  109. }
  110. if err := cfg.StateSync.ValidateBasic(); err != nil {
  111. return fmt.Errorf("error in [statesync] section: %w", err)
  112. }
  113. if err := cfg.FastSync.ValidateBasic(); err != nil {
  114. return fmt.Errorf("error in [fastsync] section: %w", err)
  115. }
  116. if err := cfg.Consensus.ValidateBasic(); err != nil {
  117. return fmt.Errorf("error in [consensus] section: %w", err)
  118. }
  119. if err := cfg.Instrumentation.ValidateBasic(); err != nil {
  120. return fmt.Errorf("error in [instrumentation] section: %w", err)
  121. }
  122. return nil
  123. }
  124. //-----------------------------------------------------------------------------
  125. // BaseConfig
  126. // BaseConfig defines the base configuration for a Tendermint node
  127. type BaseConfig struct { //nolint: maligned
  128. // chainID is unexposed and immutable but here for convenience
  129. chainID string
  130. // The root directory for all data.
  131. // This should be set in viper so it can unmarshal into this struct
  132. RootDir string `mapstructure:"home"`
  133. // TCP or UNIX socket address of the ABCI application,
  134. // or the name of an ABCI application compiled in with the Tendermint binary
  135. ProxyApp string `mapstructure:"proxy_app"`
  136. // A custom human readable name for this node
  137. Moniker string `mapstructure:"moniker"`
  138. // If this node is many blocks behind the tip of the chain, FastSync
  139. // allows them to catchup quickly by downloading blocks in parallel
  140. // and verifying their commits
  141. FastSyncMode bool `mapstructure:"fast_sync"`
  142. // Database backend: goleveldb | cleveldb | boltdb | rocksdb
  143. // * goleveldb (github.com/syndtr/goleveldb - most popular implementation)
  144. // - pure go
  145. // - stable
  146. // * cleveldb (uses levigo wrapper)
  147. // - fast
  148. // - requires gcc
  149. // - use cleveldb build tag (go build -tags cleveldb)
  150. // * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt)
  151. // - EXPERIMENTAL
  152. // - may be faster is some use-cases (random reads - indexer)
  153. // - use boltdb build tag (go build -tags boltdb)
  154. // * rocksdb (uses github.com/tecbot/gorocksdb)
  155. // - EXPERIMENTAL
  156. // - requires gcc
  157. // - use rocksdb build tag (go build -tags rocksdb)
  158. // * badgerdb (uses github.com/dgraph-io/badger)
  159. // - EXPERIMENTAL
  160. // - use badgerdb build tag (go build -tags badgerdb)
  161. DBBackend string `mapstructure:"db_backend"`
  162. // Database directory
  163. DBPath string `mapstructure:"db_dir"`
  164. // Output level for logging
  165. LogLevel string `mapstructure:"log_level"`
  166. // Output format: 'plain' (colored text) or 'json'
  167. LogFormat string `mapstructure:"log_format"`
  168. // Path to the JSON file containing the initial validator set and other meta data
  169. Genesis string `mapstructure:"genesis_file"`
  170. // Path to the JSON file containing the private key to use as a validator in the consensus protocol
  171. PrivValidatorKey string `mapstructure:"priv_validator_key_file"`
  172. // Path to the JSON file containing the last sign state of a validator
  173. PrivValidatorState string `mapstructure:"priv_validator_state_file"`
  174. // TCP or UNIX socket address for Tendermint to listen on for
  175. // connections from an external PrivValidator process
  176. PrivValidatorListenAddr string `mapstructure:"priv_validator_laddr"`
  177. // A JSON file containing the private key to use for p2p authenticated encryption
  178. NodeKey string `mapstructure:"node_key_file"`
  179. // Mechanism to connect to the ABCI application: socket | grpc
  180. ABCI string `mapstructure:"abci"`
  181. // If true, query the ABCI app on connecting to a new peer
  182. // so the app can decide if we should keep the connection or not
  183. FilterPeers bool `mapstructure:"filter_peers"` // false
  184. }
  185. // DefaultBaseConfig returns a default base configuration for a Tendermint node
  186. func DefaultBaseConfig() BaseConfig {
  187. return BaseConfig{
  188. Genesis: defaultGenesisJSONPath,
  189. PrivValidatorKey: defaultPrivValKeyPath,
  190. PrivValidatorState: defaultPrivValStatePath,
  191. NodeKey: defaultNodeKeyPath,
  192. Moniker: defaultMoniker,
  193. ProxyApp: "tcp://127.0.0.1:26658",
  194. ABCI: "socket",
  195. LogLevel: DefaultPackageLogLevels(),
  196. LogFormat: LogFormatPlain,
  197. FastSyncMode: true,
  198. FilterPeers: false,
  199. DBBackend: "goleveldb",
  200. DBPath: "data",
  201. }
  202. }
  203. // TestBaseConfig returns a base configuration for testing a Tendermint node
  204. func TestBaseConfig() BaseConfig {
  205. cfg := DefaultBaseConfig()
  206. cfg.chainID = "tendermint_test"
  207. cfg.ProxyApp = "kvstore"
  208. cfg.FastSyncMode = false
  209. cfg.DBBackend = "memdb"
  210. return cfg
  211. }
  212. func (cfg BaseConfig) ChainID() string {
  213. return cfg.chainID
  214. }
  215. // GenesisFile returns the full path to the genesis.json file
  216. func (cfg BaseConfig) GenesisFile() string {
  217. return rootify(cfg.Genesis, cfg.RootDir)
  218. }
  219. // PrivValidatorKeyFile returns the full path to the priv_validator_key.json file
  220. func (cfg BaseConfig) PrivValidatorKeyFile() string {
  221. return rootify(cfg.PrivValidatorKey, cfg.RootDir)
  222. }
  223. // PrivValidatorFile returns the full path to the priv_validator_state.json file
  224. func (cfg BaseConfig) PrivValidatorStateFile() string {
  225. return rootify(cfg.PrivValidatorState, cfg.RootDir)
  226. }
  227. // NodeKeyFile returns the full path to the node_key.json file
  228. func (cfg BaseConfig) NodeKeyFile() string {
  229. return rootify(cfg.NodeKey, cfg.RootDir)
  230. }
  231. // DBDir returns the full path to the database directory
  232. func (cfg BaseConfig) DBDir() string {
  233. return rootify(cfg.DBPath, cfg.RootDir)
  234. }
  235. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  236. // returns an error if any check fails.
  237. func (cfg BaseConfig) ValidateBasic() error {
  238. switch cfg.LogFormat {
  239. case LogFormatPlain, LogFormatJSON:
  240. default:
  241. return errors.New("unknown log_format (must be 'plain' or 'json')")
  242. }
  243. return nil
  244. }
  245. // DefaultLogLevel returns a default log level of "error"
  246. func DefaultLogLevel() string {
  247. return "error"
  248. }
  249. // DefaultPackageLogLevels returns a default log level setting so all packages
  250. // log at "error", while the `state` and `main` packages log at "info"
  251. func DefaultPackageLogLevels() string {
  252. return fmt.Sprintf("main:info,state:info,statesync:info,*:%s", DefaultLogLevel())
  253. }
  254. //-----------------------------------------------------------------------------
  255. // RPCConfig
  256. // RPCConfig defines the configuration options for the Tendermint RPC server
  257. type RPCConfig struct {
  258. RootDir string `mapstructure:"home"`
  259. // TCP or UNIX socket address for the RPC server to listen on
  260. ListenAddress string `mapstructure:"laddr"`
  261. // A list of origins a cross-domain request can be executed from.
  262. // If the special '*' value is present in the list, all origins will be allowed.
  263. // An origin may contain a wildcard (*) to replace 0 or more characters (i.e.: http://*.domain.com).
  264. // Only one wildcard can be used per origin.
  265. CORSAllowedOrigins []string `mapstructure:"cors_allowed_origins"`
  266. // A list of methods the client is allowed to use with cross-domain requests.
  267. CORSAllowedMethods []string `mapstructure:"cors_allowed_methods"`
  268. // A list of non simple headers the client is allowed to use with cross-domain requests.
  269. CORSAllowedHeaders []string `mapstructure:"cors_allowed_headers"`
  270. // TCP or UNIX socket address for the gRPC server to listen on
  271. // NOTE: This server only supports /broadcast_tx_commit
  272. GRPCListenAddress string `mapstructure:"grpc_laddr"`
  273. // Maximum number of simultaneous connections.
  274. // Does not include RPC (HTTP&WebSocket) connections. See max_open_connections
  275. // If you want to accept a larger number than the default, make sure
  276. // you increase your OS limits.
  277. // 0 - unlimited.
  278. GRPCMaxOpenConnections int `mapstructure:"grpc_max_open_connections"`
  279. // Activate unsafe RPC commands like /dial_persistent_peers and /unsafe_flush_mempool
  280. Unsafe bool `mapstructure:"unsafe"`
  281. // Maximum number of simultaneous connections (including WebSocket).
  282. // Does not include gRPC connections. See grpc_max_open_connections
  283. // If you want to accept a larger number than the default, make sure
  284. // you increase your OS limits.
  285. // 0 - unlimited.
  286. // Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
  287. // 1024 - 40 - 10 - 50 = 924 = ~900
  288. MaxOpenConnections int `mapstructure:"max_open_connections"`
  289. // Maximum number of unique clientIDs that can /subscribe
  290. // If you're using /broadcast_tx_commit, set to the estimated maximum number
  291. // of broadcast_tx_commit calls per block.
  292. MaxSubscriptionClients int `mapstructure:"max_subscription_clients"`
  293. // Maximum number of unique queries a given client can /subscribe to
  294. // If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set
  295. // to the estimated maximum number of broadcast_tx_commit calls per block.
  296. MaxSubscriptionsPerClient int `mapstructure:"max_subscriptions_per_client"`
  297. // How long to wait for a tx to be committed during /broadcast_tx_commit
  298. // WARNING: Using a value larger than 10s will result in increasing the
  299. // global HTTP write timeout, which applies to all connections and endpoints.
  300. // See https://github.com/tendermint/tendermint/issues/3435
  301. TimeoutBroadcastTxCommit time.Duration `mapstructure:"timeout_broadcast_tx_commit"`
  302. // Maximum size of request body, in bytes
  303. MaxBodyBytes int64 `mapstructure:"max_body_bytes"`
  304. // Maximum size of request header, in bytes
  305. MaxHeaderBytes int `mapstructure:"max_header_bytes"`
  306. // The path to a file containing certificate that is used to create the HTTPS server.
  307. // Migth be either absolute path or path related to tendermint's config directory.
  308. //
  309. // If the certificate is signed by a certificate authority,
  310. // the certFile should be the concatenation of the server's certificate, any intermediates,
  311. // and the CA's certificate.
  312. //
  313. // NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server.
  314. // Otherwise, HTTP server is run.
  315. TLSCertFile string `mapstructure:"tls_cert_file"`
  316. // The path to a file containing matching private key that is used to create the HTTPS server.
  317. // Migth be either absolute path or path related to tendermint's config directory.
  318. //
  319. // NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server.
  320. // Otherwise, HTTP server is run.
  321. TLSKeyFile string `mapstructure:"tls_key_file"`
  322. // pprof listen address (https://golang.org/pkg/net/http/pprof)
  323. PprofListenAddress string `mapstructure:"pprof_laddr"`
  324. }
  325. // DefaultRPCConfig returns a default configuration for the RPC server
  326. func DefaultRPCConfig() *RPCConfig {
  327. return &RPCConfig{
  328. ListenAddress: "tcp://127.0.0.1:26657",
  329. CORSAllowedOrigins: []string{},
  330. CORSAllowedMethods: []string{http.MethodHead, http.MethodGet, http.MethodPost},
  331. CORSAllowedHeaders: []string{"Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time"},
  332. GRPCListenAddress: "",
  333. GRPCMaxOpenConnections: 900,
  334. Unsafe: false,
  335. MaxOpenConnections: 900,
  336. MaxSubscriptionClients: 100,
  337. MaxSubscriptionsPerClient: 5,
  338. TimeoutBroadcastTxCommit: 10 * time.Second,
  339. MaxBodyBytes: int64(1000000), // 1MB
  340. MaxHeaderBytes: 1 << 20, // same as the net/http default
  341. TLSCertFile: "",
  342. TLSKeyFile: "",
  343. }
  344. }
  345. // TestRPCConfig returns a configuration for testing the RPC server
  346. func TestRPCConfig() *RPCConfig {
  347. cfg := DefaultRPCConfig()
  348. cfg.ListenAddress = "tcp://127.0.0.1:36657"
  349. cfg.GRPCListenAddress = "tcp://127.0.0.1:36658"
  350. cfg.Unsafe = true
  351. return cfg
  352. }
  353. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  354. // returns an error if any check fails.
  355. func (cfg *RPCConfig) ValidateBasic() error {
  356. if cfg.GRPCMaxOpenConnections < 0 {
  357. return errors.New("grpc_max_open_connections can't be negative")
  358. }
  359. if cfg.MaxOpenConnections < 0 {
  360. return errors.New("max_open_connections can't be negative")
  361. }
  362. if cfg.MaxSubscriptionClients < 0 {
  363. return errors.New("max_subscription_clients can't be negative")
  364. }
  365. if cfg.MaxSubscriptionsPerClient < 0 {
  366. return errors.New("max_subscriptions_per_client can't be negative")
  367. }
  368. if cfg.TimeoutBroadcastTxCommit < 0 {
  369. return errors.New("timeout_broadcast_tx_commit can't be negative")
  370. }
  371. if cfg.MaxBodyBytes < 0 {
  372. return errors.New("max_body_bytes can't be negative")
  373. }
  374. if cfg.MaxHeaderBytes < 0 {
  375. return errors.New("max_header_bytes can't be negative")
  376. }
  377. return nil
  378. }
  379. // IsCorsEnabled returns true if cross-origin resource sharing is enabled.
  380. func (cfg *RPCConfig) IsCorsEnabled() bool {
  381. return len(cfg.CORSAllowedOrigins) != 0
  382. }
  383. func (cfg RPCConfig) KeyFile() string {
  384. path := cfg.TLSKeyFile
  385. if filepath.IsAbs(path) {
  386. return path
  387. }
  388. return rootify(filepath.Join(defaultConfigDir, path), cfg.RootDir)
  389. }
  390. func (cfg RPCConfig) CertFile() string {
  391. path := cfg.TLSCertFile
  392. if filepath.IsAbs(path) {
  393. return path
  394. }
  395. return rootify(filepath.Join(defaultConfigDir, path), cfg.RootDir)
  396. }
  397. func (cfg RPCConfig) IsTLSEnabled() bool {
  398. return cfg.TLSCertFile != "" && cfg.TLSKeyFile != ""
  399. }
  400. //-----------------------------------------------------------------------------
  401. // P2PConfig
  402. // P2PConfig defines the configuration options for the Tendermint peer-to-peer networking layer
  403. type P2PConfig struct { //nolint: maligned
  404. RootDir string `mapstructure:"home"`
  405. // Address to listen for incoming connections
  406. ListenAddress string `mapstructure:"laddr"`
  407. // Address to advertise to peers for them to dial
  408. ExternalAddress string `mapstructure:"external_address"`
  409. // Comma separated list of seed nodes to connect to
  410. // We only use these if we can’t connect to peers in the addrbook
  411. Seeds string `mapstructure:"seeds"`
  412. // Comma separated list of nodes to keep persistent connections to
  413. PersistentPeers string `mapstructure:"persistent_peers"`
  414. // UPNP port forwarding
  415. UPNP bool `mapstructure:"upnp"`
  416. // Path to address book
  417. AddrBook string `mapstructure:"addr_book_file"`
  418. // Set true for strict address routability rules
  419. // Set false for private or local networks
  420. AddrBookStrict bool `mapstructure:"addr_book_strict"`
  421. // Maximum number of inbound peers
  422. MaxNumInboundPeers int `mapstructure:"max_num_inbound_peers"`
  423. // Maximum number of outbound peers to connect to, excluding persistent peers
  424. MaxNumOutboundPeers int `mapstructure:"max_num_outbound_peers"`
  425. // List of node IDs, to which a connection will be (re)established ignoring any existing limits
  426. UnconditionalPeerIDs string `mapstructure:"unconditional_peer_ids"`
  427. // Maximum pause when redialing a persistent peer (if zero, exponential backoff is used)
  428. PersistentPeersMaxDialPeriod time.Duration `mapstructure:"persistent_peers_max_dial_period"`
  429. // Time to wait before flushing messages out on the connection
  430. FlushThrottleTimeout time.Duration `mapstructure:"flush_throttle_timeout"`
  431. // Maximum size of a message packet payload, in bytes
  432. MaxPacketMsgPayloadSize int `mapstructure:"max_packet_msg_payload_size"`
  433. // Rate at which packets can be sent, in bytes/second
  434. SendRate int64 `mapstructure:"send_rate"`
  435. // Rate at which packets can be received, in bytes/second
  436. RecvRate int64 `mapstructure:"recv_rate"`
  437. // Set true to enable the peer-exchange reactor
  438. PexReactor bool `mapstructure:"pex"`
  439. // Seed mode, in which node constantly crawls the network and looks for
  440. // peers. If another node asks it for addresses, it responds and disconnects.
  441. //
  442. // Does not work if the peer-exchange reactor is disabled.
  443. SeedMode bool `mapstructure:"seed_mode"`
  444. // Comma separated list of peer IDs to keep private (will not be gossiped to
  445. // other peers)
  446. PrivatePeerIDs string `mapstructure:"private_peer_ids"`
  447. // Toggle to disable guard against peers connecting from the same ip.
  448. AllowDuplicateIP bool `mapstructure:"allow_duplicate_ip"`
  449. // Peer connection configuration.
  450. HandshakeTimeout time.Duration `mapstructure:"handshake_timeout"`
  451. DialTimeout time.Duration `mapstructure:"dial_timeout"`
  452. // Testing params.
  453. // Force dial to fail
  454. TestDialFail bool `mapstructure:"test_dial_fail"`
  455. // FUzz connection
  456. TestFuzz bool `mapstructure:"test_fuzz"`
  457. TestFuzzConfig *FuzzConnConfig `mapstructure:"test_fuzz_config"`
  458. }
  459. // DefaultP2PConfig returns a default configuration for the peer-to-peer layer
  460. func DefaultP2PConfig() *P2PConfig {
  461. return &P2PConfig{
  462. ListenAddress: "tcp://0.0.0.0:26656",
  463. ExternalAddress: "",
  464. UPNP: false,
  465. AddrBook: defaultAddrBookPath,
  466. AddrBookStrict: true,
  467. MaxNumInboundPeers: 40,
  468. MaxNumOutboundPeers: 10,
  469. PersistentPeersMaxDialPeriod: 0 * time.Second,
  470. FlushThrottleTimeout: 100 * time.Millisecond,
  471. MaxPacketMsgPayloadSize: 1024, // 1 kB
  472. SendRate: 5120000, // 5 mB/s
  473. RecvRate: 5120000, // 5 mB/s
  474. PexReactor: true,
  475. SeedMode: false,
  476. AllowDuplicateIP: false,
  477. HandshakeTimeout: 20 * time.Second,
  478. DialTimeout: 3 * time.Second,
  479. TestDialFail: false,
  480. TestFuzz: false,
  481. TestFuzzConfig: DefaultFuzzConnConfig(),
  482. }
  483. }
  484. // TestP2PConfig returns a configuration for testing the peer-to-peer layer
  485. func TestP2PConfig() *P2PConfig {
  486. cfg := DefaultP2PConfig()
  487. cfg.ListenAddress = "tcp://127.0.0.1:36656"
  488. cfg.FlushThrottleTimeout = 10 * time.Millisecond
  489. cfg.AllowDuplicateIP = true
  490. return cfg
  491. }
  492. // AddrBookFile returns the full path to the address book
  493. func (cfg *P2PConfig) AddrBookFile() string {
  494. return rootify(cfg.AddrBook, cfg.RootDir)
  495. }
  496. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  497. // returns an error if any check fails.
  498. func (cfg *P2PConfig) ValidateBasic() error {
  499. if cfg.MaxNumInboundPeers < 0 {
  500. return errors.New("max_num_inbound_peers can't be negative")
  501. }
  502. if cfg.MaxNumOutboundPeers < 0 {
  503. return errors.New("max_num_outbound_peers can't be negative")
  504. }
  505. if cfg.FlushThrottleTimeout < 0 {
  506. return errors.New("flush_throttle_timeout can't be negative")
  507. }
  508. if cfg.PersistentPeersMaxDialPeriod < 0 {
  509. return errors.New("persistent_peers_max_dial_period can't be negative")
  510. }
  511. if cfg.MaxPacketMsgPayloadSize < 0 {
  512. return errors.New("max_packet_msg_payload_size can't be negative")
  513. }
  514. if cfg.SendRate < 0 {
  515. return errors.New("send_rate can't be negative")
  516. }
  517. if cfg.RecvRate < 0 {
  518. return errors.New("recv_rate can't be negative")
  519. }
  520. return nil
  521. }
  522. // FuzzConnConfig is a FuzzedConnection configuration.
  523. type FuzzConnConfig struct {
  524. Mode int
  525. MaxDelay time.Duration
  526. ProbDropRW float64
  527. ProbDropConn float64
  528. ProbSleep float64
  529. }
  530. // DefaultFuzzConnConfig returns the default config.
  531. func DefaultFuzzConnConfig() *FuzzConnConfig {
  532. return &FuzzConnConfig{
  533. Mode: FuzzModeDrop,
  534. MaxDelay: 3 * time.Second,
  535. ProbDropRW: 0.2,
  536. ProbDropConn: 0.00,
  537. ProbSleep: 0.00,
  538. }
  539. }
  540. //-----------------------------------------------------------------------------
  541. // MempoolConfig
  542. // MempoolConfig defines the configuration options for the Tendermint mempool
  543. type MempoolConfig struct {
  544. RootDir string `mapstructure:"home"`
  545. Recheck bool `mapstructure:"recheck"`
  546. Broadcast bool `mapstructure:"broadcast"`
  547. WalPath string `mapstructure:"wal_dir"`
  548. // Maximum number of transactions in the mempool
  549. Size int `mapstructure:"size"`
  550. // Limit the total size of all txs in the mempool.
  551. // This only accounts for raw transactions (e.g. given 1MB transactions and
  552. // max_txs_bytes=5MB, mempool will only accept 5 transactions).
  553. MaxTxsBytes int64 `mapstructure:"max_txs_bytes"`
  554. // Size of the cache (used to filter transactions we saw earlier) in transactions
  555. CacheSize int `mapstructure:"cache_size"`
  556. // Maximum size of a single transaction
  557. // NOTE: the max size of a tx transmitted over the network is {max_tx_bytes}.
  558. MaxTxBytes int `mapstructure:"max_tx_bytes"`
  559. // Maximum size of a batch of transactions to send to a peer
  560. // Including space needed by encoding (one varint per transaction).
  561. MaxBatchBytes int `mapstructure:"max_batch_bytes"`
  562. }
  563. // DefaultMempoolConfig returns a default configuration for the Tendermint mempool
  564. func DefaultMempoolConfig() *MempoolConfig {
  565. return &MempoolConfig{
  566. Recheck: true,
  567. Broadcast: true,
  568. WalPath: "",
  569. // Each signature verification takes .5ms, Size reduced until we implement
  570. // ABCI Recheck
  571. Size: 5000,
  572. MaxTxsBytes: 1024 * 1024 * 1024, // 1GB
  573. CacheSize: 10000,
  574. MaxTxBytes: 1024 * 1024, // 1MB
  575. MaxBatchBytes: 10 * 1024 * 1024, // 10MB
  576. }
  577. }
  578. // TestMempoolConfig returns a configuration for testing the Tendermint mempool
  579. func TestMempoolConfig() *MempoolConfig {
  580. cfg := DefaultMempoolConfig()
  581. cfg.CacheSize = 1000
  582. return cfg
  583. }
  584. // WalDir returns the full path to the mempool's write-ahead log
  585. func (cfg *MempoolConfig) WalDir() string {
  586. return rootify(cfg.WalPath, cfg.RootDir)
  587. }
  588. // WalEnabled returns true if the WAL is enabled.
  589. func (cfg *MempoolConfig) WalEnabled() bool {
  590. return cfg.WalPath != ""
  591. }
  592. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  593. // returns an error if any check fails.
  594. func (cfg *MempoolConfig) ValidateBasic() error {
  595. if cfg.Size < 0 {
  596. return errors.New("size can't be negative")
  597. }
  598. if cfg.MaxTxsBytes < 0 {
  599. return errors.New("max_txs_bytes can't be negative")
  600. }
  601. if cfg.CacheSize < 0 {
  602. return errors.New("cache_size can't be negative")
  603. }
  604. if cfg.MaxTxBytes < 0 {
  605. return errors.New("max_tx_bytes can't be negative")
  606. }
  607. if cfg.MaxBatchBytes < 0 {
  608. return errors.New("max_batch_bytes can't be negative")
  609. }
  610. if cfg.MaxBatchBytes <= cfg.MaxTxBytes {
  611. return errors.New("max_batch_bytes can't be less or equal to max_tx_bytes")
  612. }
  613. return nil
  614. }
  615. //-----------------------------------------------------------------------------
  616. // StateSyncConfig
  617. // StateSyncConfig defines the configuration for the Tendermint state sync service
  618. type StateSyncConfig struct {
  619. Enable bool `mapstructure:"enable"`
  620. TempDir string `mapstructure:"temp_dir"`
  621. RPCServers []string `mapstructure:"rpc_servers"`
  622. TrustPeriod time.Duration `mapstructure:"trust_period"`
  623. TrustHeight int64 `mapstructure:"trust_height"`
  624. TrustHash string `mapstructure:"trust_hash"`
  625. DiscoveryTime time.Duration `mapstructure:"discovery_time"`
  626. }
  627. func (cfg *StateSyncConfig) TrustHashBytes() []byte {
  628. // validated in ValidateBasic, so we can safely panic here
  629. bytes, err := hex.DecodeString(cfg.TrustHash)
  630. if err != nil {
  631. panic(err)
  632. }
  633. return bytes
  634. }
  635. // DefaultStateSyncConfig returns a default configuration for the state sync service
  636. func DefaultStateSyncConfig() *StateSyncConfig {
  637. return &StateSyncConfig{
  638. TrustPeriod: 168 * time.Hour,
  639. DiscoveryTime: 15 * time.Second,
  640. }
  641. }
  642. // TestFastSyncConfig returns a default configuration for the state sync service
  643. func TestStateSyncConfig() *StateSyncConfig {
  644. return DefaultStateSyncConfig()
  645. }
  646. // ValidateBasic performs basic validation.
  647. func (cfg *StateSyncConfig) ValidateBasic() error {
  648. if cfg.Enable {
  649. if len(cfg.RPCServers) == 0 {
  650. return errors.New("rpc_servers is required")
  651. }
  652. if len(cfg.RPCServers) < 2 {
  653. return errors.New("at least two rpc_servers entries is required")
  654. }
  655. for _, server := range cfg.RPCServers {
  656. if len(server) == 0 {
  657. return errors.New("found empty rpc_servers entry")
  658. }
  659. }
  660. if cfg.TrustPeriod <= 0 {
  661. return errors.New("trusted_period is required")
  662. }
  663. if cfg.TrustHeight <= 0 {
  664. return errors.New("trusted_height is required")
  665. }
  666. if len(cfg.TrustHash) == 0 {
  667. return errors.New("trusted_hash is required")
  668. }
  669. _, err := hex.DecodeString(cfg.TrustHash)
  670. if err != nil {
  671. return fmt.Errorf("invalid trusted_hash: %w", err)
  672. }
  673. }
  674. return nil
  675. }
  676. //-----------------------------------------------------------------------------
  677. // FastSyncConfig
  678. // FastSyncConfig defines the configuration for the Tendermint fast sync service
  679. type FastSyncConfig struct {
  680. Version string `mapstructure:"version"`
  681. }
  682. // DefaultFastSyncConfig returns a default configuration for the fast sync service
  683. func DefaultFastSyncConfig() *FastSyncConfig {
  684. return &FastSyncConfig{
  685. Version: "v0",
  686. }
  687. }
  688. // TestFastSyncConfig returns a default configuration for the fast sync.
  689. func TestFastSyncConfig() *FastSyncConfig {
  690. return DefaultFastSyncConfig()
  691. }
  692. // ValidateBasic performs basic validation.
  693. func (cfg *FastSyncConfig) ValidateBasic() error {
  694. switch cfg.Version {
  695. case "v0":
  696. return nil
  697. case "v1":
  698. return nil
  699. case "v2":
  700. return nil
  701. default:
  702. return fmt.Errorf("unknown fastsync version %s", cfg.Version)
  703. }
  704. }
  705. //-----------------------------------------------------------------------------
  706. // ConsensusConfig
  707. // ConsensusConfig defines the configuration for the Tendermint consensus service,
  708. // including timeouts and details about the WAL and the block structure.
  709. type ConsensusConfig struct {
  710. RootDir string `mapstructure:"home"`
  711. WalPath string `mapstructure:"wal_file"`
  712. walFile string // overrides WalPath if set
  713. // How long we wait for a proposal block before prevoting nil
  714. TimeoutPropose time.Duration `mapstructure:"timeout_propose"`
  715. // How much timeout_propose increases with each round
  716. TimeoutProposeDelta time.Duration `mapstructure:"timeout_propose_delta"`
  717. // How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil)
  718. TimeoutPrevote time.Duration `mapstructure:"timeout_prevote"`
  719. // How much the timeout_prevote increases with each round
  720. TimeoutPrevoteDelta time.Duration `mapstructure:"timeout_prevote_delta"`
  721. // How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil)
  722. TimeoutPrecommit time.Duration `mapstructure:"timeout_precommit"`
  723. // How much the timeout_precommit increases with each round
  724. TimeoutPrecommitDelta time.Duration `mapstructure:"timeout_precommit_delta"`
  725. // How long we wait after committing a block, before starting on the new
  726. // height (this gives us a chance to receive some more precommits, even
  727. // though we already have +2/3).
  728. // NOTE: when modifying, make sure to update time_iota_ms genesis parameter
  729. TimeoutCommit time.Duration `mapstructure:"timeout_commit"`
  730. // Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  731. SkipTimeoutCommit bool `mapstructure:"skip_timeout_commit"`
  732. // EmptyBlocks mode and possible interval between empty blocks
  733. CreateEmptyBlocks bool `mapstructure:"create_empty_blocks"`
  734. CreateEmptyBlocksInterval time.Duration `mapstructure:"create_empty_blocks_interval"`
  735. // Reactor sleep duration parameters
  736. PeerGossipSleepDuration time.Duration `mapstructure:"peer_gossip_sleep_duration"`
  737. PeerQueryMaj23SleepDuration time.Duration `mapstructure:"peer_query_maj23_sleep_duration"`
  738. DoubleSignCheckHeight int64 `mapstructure:"double_sign_check_height"`
  739. }
  740. // DefaultConsensusConfig returns a default configuration for the consensus service
  741. func DefaultConsensusConfig() *ConsensusConfig {
  742. return &ConsensusConfig{
  743. WalPath: filepath.Join(defaultDataDir, "cs.wal", "wal"),
  744. TimeoutPropose: 3000 * time.Millisecond,
  745. TimeoutProposeDelta: 500 * time.Millisecond,
  746. TimeoutPrevote: 1000 * time.Millisecond,
  747. TimeoutPrevoteDelta: 500 * time.Millisecond,
  748. TimeoutPrecommit: 1000 * time.Millisecond,
  749. TimeoutPrecommitDelta: 500 * time.Millisecond,
  750. TimeoutCommit: 1000 * time.Millisecond,
  751. SkipTimeoutCommit: false,
  752. CreateEmptyBlocks: true,
  753. CreateEmptyBlocksInterval: 0 * time.Second,
  754. PeerGossipSleepDuration: 100 * time.Millisecond,
  755. PeerQueryMaj23SleepDuration: 2000 * time.Millisecond,
  756. DoubleSignCheckHeight: int64(0),
  757. }
  758. }
  759. // TestConsensusConfig returns a configuration for testing the consensus service
  760. func TestConsensusConfig() *ConsensusConfig {
  761. cfg := DefaultConsensusConfig()
  762. cfg.TimeoutPropose = 40 * time.Millisecond
  763. cfg.TimeoutProposeDelta = 1 * time.Millisecond
  764. cfg.TimeoutPrevote = 10 * time.Millisecond
  765. cfg.TimeoutPrevoteDelta = 1 * time.Millisecond
  766. cfg.TimeoutPrecommit = 10 * time.Millisecond
  767. cfg.TimeoutPrecommitDelta = 1 * time.Millisecond
  768. // NOTE: when modifying, make sure to update time_iota_ms (testGenesisFmt) in toml.go
  769. cfg.TimeoutCommit = 10 * time.Millisecond
  770. cfg.SkipTimeoutCommit = true
  771. cfg.PeerGossipSleepDuration = 5 * time.Millisecond
  772. cfg.PeerQueryMaj23SleepDuration = 250 * time.Millisecond
  773. cfg.DoubleSignCheckHeight = int64(0)
  774. return cfg
  775. }
  776. // WaitForTxs returns true if the consensus should wait for transactions before entering the propose step
  777. func (cfg *ConsensusConfig) WaitForTxs() bool {
  778. return !cfg.CreateEmptyBlocks || cfg.CreateEmptyBlocksInterval > 0
  779. }
  780. // Propose returns the amount of time to wait for a proposal
  781. func (cfg *ConsensusConfig) Propose(round int32) time.Duration {
  782. return time.Duration(
  783. cfg.TimeoutPropose.Nanoseconds()+cfg.TimeoutProposeDelta.Nanoseconds()*int64(round),
  784. ) * time.Nanosecond
  785. }
  786. // Prevote returns the amount of time to wait for straggler votes after receiving any +2/3 prevotes
  787. func (cfg *ConsensusConfig) Prevote(round int32) time.Duration {
  788. return time.Duration(
  789. cfg.TimeoutPrevote.Nanoseconds()+cfg.TimeoutPrevoteDelta.Nanoseconds()*int64(round),
  790. ) * time.Nanosecond
  791. }
  792. // Precommit returns the amount of time to wait for straggler votes after receiving any +2/3 precommits
  793. func (cfg *ConsensusConfig) Precommit(round int32) time.Duration {
  794. return time.Duration(
  795. cfg.TimeoutPrecommit.Nanoseconds()+cfg.TimeoutPrecommitDelta.Nanoseconds()*int64(round),
  796. ) * time.Nanosecond
  797. }
  798. // Commit returns the amount of time to wait for straggler votes after receiving +2/3 precommits
  799. // for a single block (ie. a commit).
  800. func (cfg *ConsensusConfig) Commit(t time.Time) time.Time {
  801. return t.Add(cfg.TimeoutCommit)
  802. }
  803. // WalFile returns the full path to the write-ahead log file
  804. func (cfg *ConsensusConfig) WalFile() string {
  805. if cfg.walFile != "" {
  806. return cfg.walFile
  807. }
  808. return rootify(cfg.WalPath, cfg.RootDir)
  809. }
  810. // SetWalFile sets the path to the write-ahead log file
  811. func (cfg *ConsensusConfig) SetWalFile(walFile string) {
  812. cfg.walFile = walFile
  813. }
  814. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  815. // returns an error if any check fails.
  816. func (cfg *ConsensusConfig) ValidateBasic() error {
  817. if cfg.TimeoutPropose < 0 {
  818. return errors.New("timeout_propose can't be negative")
  819. }
  820. if cfg.TimeoutProposeDelta < 0 {
  821. return errors.New("timeout_propose_delta can't be negative")
  822. }
  823. if cfg.TimeoutPrevote < 0 {
  824. return errors.New("timeout_prevote can't be negative")
  825. }
  826. if cfg.TimeoutPrevoteDelta < 0 {
  827. return errors.New("timeout_prevote_delta can't be negative")
  828. }
  829. if cfg.TimeoutPrecommit < 0 {
  830. return errors.New("timeout_precommit can't be negative")
  831. }
  832. if cfg.TimeoutPrecommitDelta < 0 {
  833. return errors.New("timeout_precommit_delta can't be negative")
  834. }
  835. if cfg.TimeoutCommit < 0 {
  836. return errors.New("timeout_commit can't be negative")
  837. }
  838. if cfg.CreateEmptyBlocksInterval < 0 {
  839. return errors.New("create_empty_blocks_interval can't be negative")
  840. }
  841. if cfg.PeerGossipSleepDuration < 0 {
  842. return errors.New("peer_gossip_sleep_duration can't be negative")
  843. }
  844. if cfg.PeerQueryMaj23SleepDuration < 0 {
  845. return errors.New("peer_query_maj23_sleep_duration can't be negative")
  846. }
  847. if cfg.DoubleSignCheckHeight < 0 {
  848. return errors.New("double_sign_check_height can't be negative")
  849. }
  850. return nil
  851. }
  852. //-----------------------------------------------------------------------------
  853. // TxIndexConfig
  854. // Remember that Event has the following structure:
  855. // type: [
  856. // key: value,
  857. // ...
  858. // ]
  859. //
  860. // CompositeKeys are constructed by `type.key`
  861. // TxIndexConfig defines the configuration for the transaction indexer,
  862. // including composite keys to index.
  863. type TxIndexConfig struct {
  864. // What indexer to use for transactions
  865. //
  866. // Options:
  867. // 1) "null"
  868. // 2) "kv" (default) - the simplest possible indexer,
  869. // backed by key-value storage (defaults to levelDB; see DBBackend).
  870. Indexer string `mapstructure:"indexer"`
  871. }
  872. // DefaultTxIndexConfig returns a default configuration for the transaction indexer.
  873. func DefaultTxIndexConfig() *TxIndexConfig {
  874. return &TxIndexConfig{
  875. Indexer: "kv",
  876. }
  877. }
  878. // TestTxIndexConfig returns a default configuration for the transaction indexer.
  879. func TestTxIndexConfig() *TxIndexConfig {
  880. return DefaultTxIndexConfig()
  881. }
  882. //-----------------------------------------------------------------------------
  883. // InstrumentationConfig
  884. // InstrumentationConfig defines the configuration for metrics reporting.
  885. type InstrumentationConfig struct {
  886. // When true, Prometheus metrics are served under /metrics on
  887. // PrometheusListenAddr.
  888. // Check out the documentation for the list of available metrics.
  889. Prometheus bool `mapstructure:"prometheus"`
  890. // Address to listen for Prometheus collector(s) connections.
  891. PrometheusListenAddr string `mapstructure:"prometheus_listen_addr"`
  892. // Maximum number of simultaneous connections.
  893. // If you want to accept a larger number than the default, make sure
  894. // you increase your OS limits.
  895. // 0 - unlimited.
  896. MaxOpenConnections int `mapstructure:"max_open_connections"`
  897. // Instrumentation namespace.
  898. Namespace string `mapstructure:"namespace"`
  899. }
  900. // DefaultInstrumentationConfig returns a default configuration for metrics
  901. // reporting.
  902. func DefaultInstrumentationConfig() *InstrumentationConfig {
  903. return &InstrumentationConfig{
  904. Prometheus: false,
  905. PrometheusListenAddr: ":26660",
  906. MaxOpenConnections: 3,
  907. Namespace: "tendermint",
  908. }
  909. }
  910. // TestInstrumentationConfig returns a default configuration for metrics
  911. // reporting.
  912. func TestInstrumentationConfig() *InstrumentationConfig {
  913. return DefaultInstrumentationConfig()
  914. }
  915. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  916. // returns an error if any check fails.
  917. func (cfg *InstrumentationConfig) ValidateBasic() error {
  918. if cfg.MaxOpenConnections < 0 {
  919. return errors.New("max_open_connections can't be negative")
  920. }
  921. return nil
  922. }
  923. //-----------------------------------------------------------------------------
  924. // Utils
  925. // helper function to make config creation independent of root dir
  926. func rootify(path, root string) string {
  927. if filepath.IsAbs(path) {
  928. return path
  929. }
  930. return filepath.Join(root, path)
  931. }
  932. //-----------------------------------------------------------------------------
  933. // Moniker
  934. var defaultMoniker = getDefaultMoniker()
  935. // getDefaultMoniker returns a default moniker, which is the host name. If runtime
  936. // fails to get the host name, "anonymous" will be returned.
  937. func getDefaultMoniker() string {
  938. moniker, err := os.Hostname()
  939. if err != nil {
  940. moniker = "anonymous"
  941. }
  942. return moniker
  943. }