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.

1075 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
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>
6 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>
6 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>
6 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>
6 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>
6 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>
6 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>
6 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>
6 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. }
  456. // DefaultP2PConfig returns a default configuration for the peer-to-peer layer
  457. func DefaultP2PConfig() *P2PConfig {
  458. return &P2PConfig{
  459. ListenAddress: "tcp://0.0.0.0:26656",
  460. ExternalAddress: "",
  461. UPNP: false,
  462. AddrBook: defaultAddrBookPath,
  463. AddrBookStrict: true,
  464. MaxNumInboundPeers: 40,
  465. MaxNumOutboundPeers: 10,
  466. PersistentPeersMaxDialPeriod: 0 * time.Second,
  467. FlushThrottleTimeout: 100 * time.Millisecond,
  468. // The MTU (Maximum Transmission Unit) for Ethernet is 1500 bytes.
  469. // The IP header and the TCP header take up 20 bytes each at least (unless
  470. // optional header fields are used) and thus the max for (non-Jumbo frame)
  471. // Ethernet is 1500 - 20 -20 = 1460
  472. // Source: https://stackoverflow.com/a/3074427/820520
  473. MaxPacketMsgPayloadSize: 1400,
  474. SendRate: 5120000, // 5 mB/s
  475. RecvRate: 5120000, // 5 mB/s
  476. PexReactor: true,
  477. SeedMode: false,
  478. AllowDuplicateIP: false,
  479. HandshakeTimeout: 20 * time.Second,
  480. DialTimeout: 3 * time.Second,
  481. TestDialFail: false,
  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. //-----------------------------------------------------------------------------
  523. // MempoolConfig
  524. // MempoolConfig defines the configuration options for the Tendermint mempool
  525. type MempoolConfig struct {
  526. RootDir string `mapstructure:"home"`
  527. Recheck bool `mapstructure:"recheck"`
  528. Broadcast bool `mapstructure:"broadcast"`
  529. WalPath string `mapstructure:"wal-dir"`
  530. // Maximum number of transactions in the mempool
  531. Size int `mapstructure:"size"`
  532. // Limit the total size of all txs in the mempool.
  533. // This only accounts for raw transactions (e.g. given 1MB transactions and
  534. // max-txs-bytes=5MB, mempool will only accept 5 transactions).
  535. MaxTxsBytes int64 `mapstructure:"max-txs-bytes"`
  536. // Size of the cache (used to filter transactions we saw earlier) in transactions
  537. CacheSize int `mapstructure:"cache-size"`
  538. // Do not remove invalid transactions from the cache (default: false)
  539. // Set to true if it's not possible for any invalid transaction to become
  540. // valid again in the future.
  541. KeepInvalidTxsInCache bool `mapstructure:"keep-invalid-txs-in-cache"`
  542. // Maximum size of a single transaction
  543. // NOTE: the max size of a tx transmitted over the network is {max-tx-bytes}.
  544. MaxTxBytes int `mapstructure:"max-tx-bytes"`
  545. // Maximum size of a batch of transactions to send to a peer
  546. // Including space needed by encoding (one varint per transaction).
  547. MaxBatchBytes int `mapstructure:"max-batch-bytes"`
  548. }
  549. // DefaultMempoolConfig returns a default configuration for the Tendermint mempool
  550. func DefaultMempoolConfig() *MempoolConfig {
  551. return &MempoolConfig{
  552. Recheck: true,
  553. Broadcast: true,
  554. WalPath: "",
  555. // Each signature verification takes .5ms, Size reduced until we implement
  556. // ABCI Recheck
  557. Size: 5000,
  558. MaxTxsBytes: 1024 * 1024 * 1024, // 1GB
  559. CacheSize: 10000,
  560. MaxTxBytes: 1024 * 1024, // 1MB
  561. MaxBatchBytes: 10 * 1024 * 1024, // 10MB
  562. }
  563. }
  564. // TestMempoolConfig returns a configuration for testing the Tendermint mempool
  565. func TestMempoolConfig() *MempoolConfig {
  566. cfg := DefaultMempoolConfig()
  567. cfg.CacheSize = 1000
  568. return cfg
  569. }
  570. // WalDir returns the full path to the mempool's write-ahead log
  571. func (cfg *MempoolConfig) WalDir() string {
  572. return rootify(cfg.WalPath, cfg.RootDir)
  573. }
  574. // WalEnabled returns true if the WAL is enabled.
  575. func (cfg *MempoolConfig) WalEnabled() bool {
  576. return cfg.WalPath != ""
  577. }
  578. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  579. // returns an error if any check fails.
  580. func (cfg *MempoolConfig) ValidateBasic() error {
  581. if cfg.Size < 0 {
  582. return errors.New("size can't be negative")
  583. }
  584. if cfg.MaxTxsBytes < 0 {
  585. return errors.New("max-txs-bytes can't be negative")
  586. }
  587. if cfg.CacheSize < 0 {
  588. return errors.New("cache-size can't be negative")
  589. }
  590. if cfg.MaxTxBytes < 0 {
  591. return errors.New("max-tx-bytes can't be negative")
  592. }
  593. if cfg.MaxBatchBytes < 0 {
  594. return errors.New("max-batch-bytes can't be negative")
  595. }
  596. if cfg.MaxBatchBytes <= cfg.MaxTxBytes {
  597. return errors.New("max-batch-bytes can't be less or equal to max-tx-bytes")
  598. }
  599. return nil
  600. }
  601. //-----------------------------------------------------------------------------
  602. // StateSyncConfig
  603. // StateSyncConfig defines the configuration for the Tendermint state sync service
  604. type StateSyncConfig struct {
  605. Enable bool `mapstructure:"enable"`
  606. TempDir string `mapstructure:"temp-dir"`
  607. RPCServers []string `mapstructure:"rpc-servers"`
  608. TrustPeriod time.Duration `mapstructure:"trust-period"`
  609. TrustHeight int64 `mapstructure:"trust-height"`
  610. TrustHash string `mapstructure:"trust-hash"`
  611. DiscoveryTime time.Duration `mapstructure:"discovery-time"`
  612. }
  613. func (cfg *StateSyncConfig) TrustHashBytes() []byte {
  614. // validated in ValidateBasic, so we can safely panic here
  615. bytes, err := hex.DecodeString(cfg.TrustHash)
  616. if err != nil {
  617. panic(err)
  618. }
  619. return bytes
  620. }
  621. // DefaultStateSyncConfig returns a default configuration for the state sync service
  622. func DefaultStateSyncConfig() *StateSyncConfig {
  623. return &StateSyncConfig{
  624. TrustPeriod: 168 * time.Hour,
  625. DiscoveryTime: 15 * time.Second,
  626. }
  627. }
  628. // TestFastSyncConfig returns a default configuration for the state sync service
  629. func TestStateSyncConfig() *StateSyncConfig {
  630. return DefaultStateSyncConfig()
  631. }
  632. // ValidateBasic performs basic validation.
  633. func (cfg *StateSyncConfig) ValidateBasic() error {
  634. if cfg.Enable {
  635. if len(cfg.RPCServers) == 0 {
  636. return errors.New("rpc-servers is required")
  637. }
  638. if len(cfg.RPCServers) < 2 {
  639. return errors.New("at least two rpc-servers entries is required")
  640. }
  641. for _, server := range cfg.RPCServers {
  642. if len(server) == 0 {
  643. return errors.New("found empty rpc-servers entry")
  644. }
  645. }
  646. if cfg.TrustPeriod <= 0 {
  647. return errors.New("trusted-period is required")
  648. }
  649. if cfg.TrustHeight <= 0 {
  650. return errors.New("trusted-height is required")
  651. }
  652. if len(cfg.TrustHash) == 0 {
  653. return errors.New("trusted-hash is required")
  654. }
  655. _, err := hex.DecodeString(cfg.TrustHash)
  656. if err != nil {
  657. return fmt.Errorf("invalid trusted-hash: %w", err)
  658. }
  659. }
  660. return nil
  661. }
  662. //-----------------------------------------------------------------------------
  663. // FastSyncConfig
  664. // FastSyncConfig defines the configuration for the Tendermint fast sync service
  665. type FastSyncConfig struct {
  666. Version string `mapstructure:"version"`
  667. }
  668. // DefaultFastSyncConfig returns a default configuration for the fast sync service
  669. func DefaultFastSyncConfig() *FastSyncConfig {
  670. return &FastSyncConfig{
  671. Version: "v0",
  672. }
  673. }
  674. // TestFastSyncConfig returns a default configuration for the fast sync.
  675. func TestFastSyncConfig() *FastSyncConfig {
  676. return DefaultFastSyncConfig()
  677. }
  678. // ValidateBasic performs basic validation.
  679. func (cfg *FastSyncConfig) ValidateBasic() error {
  680. switch cfg.Version {
  681. case "v0":
  682. return nil
  683. case "v2":
  684. return nil
  685. default:
  686. return fmt.Errorf("unknown fastsync version %s", cfg.Version)
  687. }
  688. }
  689. //-----------------------------------------------------------------------------
  690. // ConsensusConfig
  691. // ConsensusConfig defines the configuration for the Tendermint consensus service,
  692. // including timeouts and details about the WAL and the block structure.
  693. type ConsensusConfig struct {
  694. RootDir string `mapstructure:"home"`
  695. WalPath string `mapstructure:"wal-file"`
  696. walFile string // overrides WalPath if set
  697. // How long we wait for a proposal block before prevoting nil
  698. TimeoutPropose time.Duration `mapstructure:"timeout-propose"`
  699. // How much timeout-propose increases with each round
  700. TimeoutProposeDelta time.Duration `mapstructure:"timeout-propose-delta"`
  701. // How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil)
  702. TimeoutPrevote time.Duration `mapstructure:"timeout-prevote"`
  703. // How much the timeout-prevote increases with each round
  704. TimeoutPrevoteDelta time.Duration `mapstructure:"timeout-prevote-delta"`
  705. // How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil)
  706. TimeoutPrecommit time.Duration `mapstructure:"timeout-precommit"`
  707. // How much the timeout-precommit increases with each round
  708. TimeoutPrecommitDelta time.Duration `mapstructure:"timeout-precommit-delta"`
  709. // How long we wait after committing a block, before starting on the new
  710. // height (this gives us a chance to receive some more precommits, even
  711. // though we already have +2/3).
  712. TimeoutCommit time.Duration `mapstructure:"timeout-commit"`
  713. // Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  714. SkipTimeoutCommit bool `mapstructure:"skip-timeout-commit"`
  715. // EmptyBlocks mode and possible interval between empty blocks
  716. CreateEmptyBlocks bool `mapstructure:"create-empty-blocks"`
  717. CreateEmptyBlocksInterval time.Duration `mapstructure:"create-empty-blocks-interval"`
  718. // Reactor sleep duration parameters
  719. PeerGossipSleepDuration time.Duration `mapstructure:"peer-gossip-sleep-duration"`
  720. PeerQueryMaj23SleepDuration time.Duration `mapstructure:"peer-query-maj23-sleep-duration"`
  721. DoubleSignCheckHeight int64 `mapstructure:"double-sign-check-height"`
  722. }
  723. // DefaultConsensusConfig returns a default configuration for the consensus service
  724. func DefaultConsensusConfig() *ConsensusConfig {
  725. return &ConsensusConfig{
  726. WalPath: filepath.Join(defaultDataDir, "cs.wal", "wal"),
  727. TimeoutPropose: 3000 * time.Millisecond,
  728. TimeoutProposeDelta: 500 * time.Millisecond,
  729. TimeoutPrevote: 1000 * time.Millisecond,
  730. TimeoutPrevoteDelta: 500 * time.Millisecond,
  731. TimeoutPrecommit: 1000 * time.Millisecond,
  732. TimeoutPrecommitDelta: 500 * time.Millisecond,
  733. TimeoutCommit: 1000 * time.Millisecond,
  734. SkipTimeoutCommit: false,
  735. CreateEmptyBlocks: true,
  736. CreateEmptyBlocksInterval: 0 * time.Second,
  737. PeerGossipSleepDuration: 100 * time.Millisecond,
  738. PeerQueryMaj23SleepDuration: 2000 * time.Millisecond,
  739. DoubleSignCheckHeight: int64(0),
  740. }
  741. }
  742. // TestConsensusConfig returns a configuration for testing the consensus service
  743. func TestConsensusConfig() *ConsensusConfig {
  744. cfg := DefaultConsensusConfig()
  745. cfg.TimeoutPropose = 40 * time.Millisecond
  746. cfg.TimeoutProposeDelta = 1 * time.Millisecond
  747. cfg.TimeoutPrevote = 10 * time.Millisecond
  748. cfg.TimeoutPrevoteDelta = 1 * time.Millisecond
  749. cfg.TimeoutPrecommit = 10 * time.Millisecond
  750. cfg.TimeoutPrecommitDelta = 1 * time.Millisecond
  751. cfg.TimeoutCommit = 10 * time.Millisecond
  752. cfg.SkipTimeoutCommit = true
  753. cfg.PeerGossipSleepDuration = 5 * time.Millisecond
  754. cfg.PeerQueryMaj23SleepDuration = 250 * time.Millisecond
  755. cfg.DoubleSignCheckHeight = int64(0)
  756. return cfg
  757. }
  758. // WaitForTxs returns true if the consensus should wait for transactions before entering the propose step
  759. func (cfg *ConsensusConfig) WaitForTxs() bool {
  760. return !cfg.CreateEmptyBlocks || cfg.CreateEmptyBlocksInterval > 0
  761. }
  762. // Propose returns the amount of time to wait for a proposal
  763. func (cfg *ConsensusConfig) Propose(round int32) time.Duration {
  764. return time.Duration(
  765. cfg.TimeoutPropose.Nanoseconds()+cfg.TimeoutProposeDelta.Nanoseconds()*int64(round),
  766. ) * time.Nanosecond
  767. }
  768. // Prevote returns the amount of time to wait for straggler votes after receiving any +2/3 prevotes
  769. func (cfg *ConsensusConfig) Prevote(round int32) time.Duration {
  770. return time.Duration(
  771. cfg.TimeoutPrevote.Nanoseconds()+cfg.TimeoutPrevoteDelta.Nanoseconds()*int64(round),
  772. ) * time.Nanosecond
  773. }
  774. // Precommit returns the amount of time to wait for straggler votes after receiving any +2/3 precommits
  775. func (cfg *ConsensusConfig) Precommit(round int32) time.Duration {
  776. return time.Duration(
  777. cfg.TimeoutPrecommit.Nanoseconds()+cfg.TimeoutPrecommitDelta.Nanoseconds()*int64(round),
  778. ) * time.Nanosecond
  779. }
  780. // Commit returns the amount of time to wait for straggler votes after receiving +2/3 precommits
  781. // for a single block (ie. a commit).
  782. func (cfg *ConsensusConfig) Commit(t time.Time) time.Time {
  783. return t.Add(cfg.TimeoutCommit)
  784. }
  785. // WalFile returns the full path to the write-ahead log file
  786. func (cfg *ConsensusConfig) WalFile() string {
  787. if cfg.walFile != "" {
  788. return cfg.walFile
  789. }
  790. return rootify(cfg.WalPath, cfg.RootDir)
  791. }
  792. // SetWalFile sets the path to the write-ahead log file
  793. func (cfg *ConsensusConfig) SetWalFile(walFile string) {
  794. cfg.walFile = walFile
  795. }
  796. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  797. // returns an error if any check fails.
  798. func (cfg *ConsensusConfig) ValidateBasic() error {
  799. if cfg.TimeoutPropose < 0 {
  800. return errors.New("timeout-propose can't be negative")
  801. }
  802. if cfg.TimeoutProposeDelta < 0 {
  803. return errors.New("timeout-propose-delta can't be negative")
  804. }
  805. if cfg.TimeoutPrevote < 0 {
  806. return errors.New("timeout-prevote can't be negative")
  807. }
  808. if cfg.TimeoutPrevoteDelta < 0 {
  809. return errors.New("timeout-prevote-delta can't be negative")
  810. }
  811. if cfg.TimeoutPrecommit < 0 {
  812. return errors.New("timeout-precommit can't be negative")
  813. }
  814. if cfg.TimeoutPrecommitDelta < 0 {
  815. return errors.New("timeout-precommit-delta can't be negative")
  816. }
  817. if cfg.TimeoutCommit < 0 {
  818. return errors.New("timeout-commit can't be negative")
  819. }
  820. if cfg.CreateEmptyBlocksInterval < 0 {
  821. return errors.New("create-empty-blocks-interval can't be negative")
  822. }
  823. if cfg.PeerGossipSleepDuration < 0 {
  824. return errors.New("peer-gossip-sleep-duration can't be negative")
  825. }
  826. if cfg.PeerQueryMaj23SleepDuration < 0 {
  827. return errors.New("peer-query-maj23-sleep-duration can't be negative")
  828. }
  829. if cfg.DoubleSignCheckHeight < 0 {
  830. return errors.New("double-sign-check-height can't be negative")
  831. }
  832. return nil
  833. }
  834. //-----------------------------------------------------------------------------
  835. // TxIndexConfig
  836. // Remember that Event has the following structure:
  837. // type: [
  838. // key: value,
  839. // ...
  840. // ]
  841. //
  842. // CompositeKeys are constructed by `type.key`
  843. // TxIndexConfig defines the configuration for the transaction indexer,
  844. // including composite keys to index.
  845. type TxIndexConfig struct {
  846. // What indexer to use for transactions
  847. //
  848. // Options:
  849. // 1) "null"
  850. // 2) "kv" (default) - the simplest possible indexer,
  851. // backed by key-value storage (defaults to levelDB; see DBBackend).
  852. Indexer string `mapstructure:"indexer"`
  853. }
  854. // DefaultTxIndexConfig returns a default configuration for the transaction indexer.
  855. func DefaultTxIndexConfig() *TxIndexConfig {
  856. return &TxIndexConfig{
  857. Indexer: "kv",
  858. }
  859. }
  860. // TestTxIndexConfig returns a default configuration for the transaction indexer.
  861. func TestTxIndexConfig() *TxIndexConfig {
  862. return DefaultTxIndexConfig()
  863. }
  864. //-----------------------------------------------------------------------------
  865. // InstrumentationConfig
  866. // InstrumentationConfig defines the configuration for metrics reporting.
  867. type InstrumentationConfig struct {
  868. // When true, Prometheus metrics are served under /metrics on
  869. // PrometheusListenAddr.
  870. // Check out the documentation for the list of available metrics.
  871. Prometheus bool `mapstructure:"prometheus"`
  872. // Address to listen for Prometheus collector(s) connections.
  873. PrometheusListenAddr string `mapstructure:"prometheus-listen-addr"`
  874. // Maximum number of simultaneous connections.
  875. // If you want to accept a larger number than the default, make sure
  876. // you increase your OS limits.
  877. // 0 - unlimited.
  878. MaxOpenConnections int `mapstructure:"max-open-connections"`
  879. // Instrumentation namespace.
  880. Namespace string `mapstructure:"namespace"`
  881. }
  882. // DefaultInstrumentationConfig returns a default configuration for metrics
  883. // reporting.
  884. func DefaultInstrumentationConfig() *InstrumentationConfig {
  885. return &InstrumentationConfig{
  886. Prometheus: false,
  887. PrometheusListenAddr: ":26660",
  888. MaxOpenConnections: 3,
  889. Namespace: "tendermint",
  890. }
  891. }
  892. // TestInstrumentationConfig returns a default configuration for metrics
  893. // reporting.
  894. func TestInstrumentationConfig() *InstrumentationConfig {
  895. return DefaultInstrumentationConfig()
  896. }
  897. // ValidateBasic performs basic validation (checking param bounds, etc.) and
  898. // returns an error if any check fails.
  899. func (cfg *InstrumentationConfig) ValidateBasic() error {
  900. if cfg.MaxOpenConnections < 0 {
  901. return errors.New("max-open-connections can't be negative")
  902. }
  903. return nil
  904. }
  905. //-----------------------------------------------------------------------------
  906. // Utils
  907. // helper function to make config creation independent of root dir
  908. func rootify(path, root string) string {
  909. if filepath.IsAbs(path) {
  910. return path
  911. }
  912. return filepath.Join(root, path)
  913. }
  914. //-----------------------------------------------------------------------------
  915. // Moniker
  916. var defaultMoniker = getDefaultMoniker()
  917. // getDefaultMoniker returns a default moniker, which is the host name. If runtime
  918. // fails to get the host name, "anonymous" will be returned.
  919. func getDefaultMoniker() string {
  920. moniker, err := os.Hostname()
  921. if err != nil {
  922. moniker = "anonymous"
  923. }
  924. return moniker
  925. }