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.

630 lines
24 KiB

limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
  1. package config
  2. import (
  3. "bytes"
  4. "fmt"
  5. "io/ioutil"
  6. "os"
  7. "path/filepath"
  8. "strings"
  9. "text/template"
  10. tmos "github.com/tendermint/tendermint/libs/os"
  11. )
  12. // DefaultDirPerm is the default permissions used when creating directories.
  13. const DefaultDirPerm = 0700
  14. var configTemplate *template.Template
  15. func init() {
  16. var err error
  17. tmpl := template.New("configFileTemplate").Funcs(template.FuncMap{
  18. "StringsJoin": strings.Join,
  19. })
  20. if configTemplate, err = tmpl.Parse(defaultConfigTemplate); err != nil {
  21. panic(err)
  22. }
  23. }
  24. /****** these are for production settings ***********/
  25. // EnsureRoot creates the root, config, and data directories if they don't exist,
  26. // and panics if it fails.
  27. func EnsureRoot(rootDir string) {
  28. if err := tmos.EnsureDir(rootDir, DefaultDirPerm); err != nil {
  29. panic(err.Error())
  30. }
  31. if err := tmos.EnsureDir(filepath.Join(rootDir, defaultConfigDir), DefaultDirPerm); err != nil {
  32. panic(err.Error())
  33. }
  34. if err := tmos.EnsureDir(filepath.Join(rootDir, defaultDataDir), DefaultDirPerm); err != nil {
  35. panic(err.Error())
  36. }
  37. }
  38. // WriteConfigFile renders config using the template and writes it to configFilePath.
  39. // This function is called by cmd/tendermint/commands/init.go
  40. func WriteConfigFile(rootDir string, config *Config) {
  41. var buffer bytes.Buffer
  42. if err := configTemplate.Execute(&buffer, config); err != nil {
  43. panic(err)
  44. }
  45. configFilePath := filepath.Join(rootDir, defaultConfigFilePath)
  46. mustWriteFile(configFilePath, buffer.Bytes(), 0644)
  47. }
  48. func writeDefaultConfigFileIfNone(rootDir string) {
  49. configFilePath := filepath.Join(rootDir, defaultConfigFilePath)
  50. if !tmos.FileExists(configFilePath) {
  51. WriteConfigFile(rootDir, DefaultConfig())
  52. }
  53. }
  54. // Note: any changes to the comments/variables/mapstructure
  55. // must be reflected in the appropriate struct in config/config.go
  56. const defaultConfigTemplate = `# This is a TOML config file.
  57. # For more information, see https://github.com/toml-lang/toml
  58. # NOTE: Any path below can be absolute (e.g. "/var/myawesomeapp/data") or
  59. # relative to the home directory (e.g. "data"). The home directory is
  60. # "$HOME/.tendermint" by default, but could be changed via $TMHOME env variable
  61. # or --home cmd flag.
  62. #######################################################################
  63. ### Main Base Config Options ###
  64. #######################################################################
  65. # TCP or UNIX socket address of the ABCI application,
  66. # or the name of an ABCI application compiled in with the Tendermint binary
  67. proxy-app = "{{ .BaseConfig.ProxyApp }}"
  68. # A custom human readable name for this node
  69. moniker = "{{ .BaseConfig.Moniker }}"
  70. # Mode of Node: full | validator | seed
  71. # * validator node
  72. # - all reactors
  73. # - with priv_validator_key.json, priv_validator_state.json
  74. # * full node
  75. # - all reactors
  76. # - No priv_validator_key.json, priv_validator_state.json
  77. # * seed node
  78. # - only P2P, PEX Reactor
  79. # - No priv_validator_key.json, priv_validator_state.json
  80. mode = "{{ .BaseConfig.Mode }}"
  81. # If this node is many blocks behind the tip of the chain, FastSync
  82. # allows them to catchup quickly by downloading blocks in parallel
  83. # and verifying their commits
  84. fast-sync = {{ .BaseConfig.FastSyncMode }}
  85. # Database backend: goleveldb | cleveldb | boltdb | rocksdb | badgerdb
  86. # * goleveldb (github.com/syndtr/goleveldb - most popular implementation)
  87. # - pure go
  88. # - stable
  89. # * cleveldb (uses levigo wrapper)
  90. # - fast
  91. # - requires gcc
  92. # - use cleveldb build tag (go build -tags cleveldb)
  93. # * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt)
  94. # - EXPERIMENTAL
  95. # - may be faster is some use-cases (random reads - indexer)
  96. # - use boltdb build tag (go build -tags boltdb)
  97. # * rocksdb (uses github.com/tecbot/gorocksdb)
  98. # - EXPERIMENTAL
  99. # - requires gcc
  100. # - use rocksdb build tag (go build -tags rocksdb)
  101. # * badgerdb (uses github.com/dgraph-io/badger)
  102. # - EXPERIMENTAL
  103. # - use badgerdb build tag (go build -tags badgerdb)
  104. db-backend = "{{ .BaseConfig.DBBackend }}"
  105. # Database directory
  106. db-dir = "{{ js .BaseConfig.DBPath }}"
  107. # Output level for logging, including package level options
  108. log-level = "{{ .BaseConfig.LogLevel }}"
  109. # Output format: 'plain' (colored text) or 'json'
  110. log-format = "{{ .BaseConfig.LogFormat }}"
  111. ##### additional base config options #####
  112. # Path to the JSON file containing the initial validator set and other meta data
  113. genesis-file = "{{ js .BaseConfig.Genesis }}"
  114. # Path to the JSON file containing the private key to use for node authentication in the p2p protocol
  115. node-key-file = "{{ js .BaseConfig.NodeKey }}"
  116. # Mechanism to connect to the ABCI application: socket | grpc
  117. abci = "{{ .BaseConfig.ABCI }}"
  118. # If true, query the ABCI app on connecting to a new peer
  119. # so the app can decide if we should keep the connection or not
  120. filter-peers = {{ .BaseConfig.FilterPeers }}
  121. #######################################################
  122. ### Priv Validator Configuration ###
  123. #######################################################
  124. [priv-validator]
  125. # Path to the JSON file containing the private key to use as a validator in the consensus protocol
  126. key-file = "{{ js .PrivValidator.Key }}"
  127. # Path to the JSON file containing the last sign state of a validator
  128. state-file = "{{ js .PrivValidator.State }}"
  129. # TCP or UNIX socket address for Tendermint to listen on for
  130. # connections from an external PrivValidator process
  131. # when the listenAddr is prefixed with grpc instead of tcp it will use the gRPC Client
  132. laddr = "{{ .PrivValidator.ListenAddr }}"
  133. # Client certificate generated while creating needed files for secure connection.
  134. # If a remote validator address is provided but no certificate, the connection will be insecure
  135. client-certificate-file = "{{ js .PrivValidator.ClientCertificate }}"
  136. # Client key generated while creating certificates for secure connection
  137. validator-client-key-file = "{{ js .PrivValidator.ClientKey }}"
  138. # Path Root Certificate Authority used to sign both client and server certificates
  139. certificate-authority = "{{ js .PrivValidator.RootCA }}"
  140. #######################################################################
  141. ### Advanced Configuration Options ###
  142. #######################################################################
  143. #######################################################
  144. ### RPC Server Configuration Options ###
  145. #######################################################
  146. [rpc]
  147. # TCP or UNIX socket address for the RPC server to listen on
  148. laddr = "{{ .RPC.ListenAddress }}"
  149. # A list of origins a cross-domain request can be executed from
  150. # Default value '[]' disables cors support
  151. # Use '["*"]' to allow any origin
  152. cors-allowed-origins = [{{ range .RPC.CORSAllowedOrigins }}{{ printf "%q, " . }}{{end}}]
  153. # A list of methods the client is allowed to use with cross-domain requests
  154. cors-allowed-methods = [{{ range .RPC.CORSAllowedMethods }}{{ printf "%q, " . }}{{end}}]
  155. # A list of non simple headers the client is allowed to use with cross-domain requests
  156. cors-allowed-headers = [{{ range .RPC.CORSAllowedHeaders }}{{ printf "%q, " . }}{{end}}]
  157. # TCP or UNIX socket address for the gRPC server to listen on
  158. # NOTE: This server only supports /broadcast_tx_commit
  159. grpc-laddr = "{{ .RPC.GRPCListenAddress }}"
  160. # Maximum number of simultaneous connections.
  161. # Does not include RPC (HTTP&WebSocket) connections. See max-open-connections
  162. # If you want to accept a larger number than the default, make sure
  163. # you increase your OS limits.
  164. # 0 - unlimited.
  165. # Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
  166. # 1024 - 40 - 10 - 50 = 924 = ~900
  167. grpc-max-open-connections = {{ .RPC.GRPCMaxOpenConnections }}
  168. # Activate unsafe RPC commands like /dial-seeds and /unsafe-flush-mempool
  169. unsafe = {{ .RPC.Unsafe }}
  170. # Maximum number of simultaneous connections (including WebSocket).
  171. # Does not include gRPC connections. See grpc-max-open-connections
  172. # If you want to accept a larger number than the default, make sure
  173. # you increase your OS limits.
  174. # 0 - unlimited.
  175. # Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
  176. # 1024 - 40 - 10 - 50 = 924 = ~900
  177. max-open-connections = {{ .RPC.MaxOpenConnections }}
  178. # Maximum number of unique clientIDs that can /subscribe
  179. # If you're using /broadcast_tx_commit, set to the estimated maximum number
  180. # of broadcast_tx_commit calls per block.
  181. max-subscription-clients = {{ .RPC.MaxSubscriptionClients }}
  182. # Maximum number of unique queries a given client can /subscribe to
  183. # If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to
  184. # the estimated # maximum number of broadcast_tx_commit calls per block.
  185. max-subscriptions-per-client = {{ .RPC.MaxSubscriptionsPerClient }}
  186. # How long to wait for a tx to be committed during /broadcast_tx_commit.
  187. # WARNING: Using a value larger than 10s will result in increasing the
  188. # global HTTP write timeout, which applies to all connections and endpoints.
  189. # See https://github.com/tendermint/tendermint/issues/3435
  190. timeout-broadcast-tx-commit = "{{ .RPC.TimeoutBroadcastTxCommit }}"
  191. # Maximum size of request body, in bytes
  192. max-body-bytes = {{ .RPC.MaxBodyBytes }}
  193. # Maximum size of request header, in bytes
  194. max-header-bytes = {{ .RPC.MaxHeaderBytes }}
  195. # The path to a file containing certificate that is used to create the HTTPS server.
  196. # Might be either absolute path or path related to Tendermint's config directory.
  197. # If the certificate is signed by a certificate authority,
  198. # the certFile should be the concatenation of the server's certificate, any intermediates,
  199. # and the CA's certificate.
  200. # NOTE: both tls-cert-file and tls-key-file must be present for Tendermint to create HTTPS server.
  201. # Otherwise, HTTP server is run.
  202. tls-cert-file = "{{ .RPC.TLSCertFile }}"
  203. # The path to a file containing matching private key that is used to create the HTTPS server.
  204. # Might be either absolute path or path related to Tendermint's config directory.
  205. # NOTE: both tls-cert-file and tls-key-file must be present for Tendermint to create HTTPS server.
  206. # Otherwise, HTTP server is run.
  207. tls-key-file = "{{ .RPC.TLSKeyFile }}"
  208. # pprof listen address (https://golang.org/pkg/net/http/pprof)
  209. pprof-laddr = "{{ .RPC.PprofListenAddress }}"
  210. #######################################################
  211. ### P2P Configuration Options ###
  212. #######################################################
  213. [p2p]
  214. # Enable the new p2p layer.
  215. disable-legacy = {{ .P2P.DisableLegacy }}
  216. # Select the p2p internal queue
  217. queue-type = "{{ .P2P.QueueType }}"
  218. # Address to listen for incoming connections
  219. laddr = "{{ .P2P.ListenAddress }}"
  220. # Address to advertise to peers for them to dial
  221. # If empty, will use the same port as the laddr,
  222. # and will introspect on the listener or use UPnP
  223. # to figure out the address.
  224. external-address = "{{ .P2P.ExternalAddress }}"
  225. # Comma separated list of seed nodes to connect to
  226. # We only use these if we cant connect to peers in the addrbook
  227. # NOTE: not used by the new PEX reactor. Please use BootstrapPeers instead.
  228. # TODO: Remove once p2p refactor is complete
  229. # ref: https:#github.com/tendermint/tendermint/issues/5670
  230. seeds = "{{ .P2P.Seeds }}"
  231. # Comma separated list of peers to be added to the peer store
  232. # on startup. Either BootstrapPeers or PersistentPeers are
  233. # needed for peer discovery
  234. bootstrap-peers = "{{ .P2P.BootstrapPeers }}"
  235. # Comma separated list of nodes to keep persistent connections to
  236. persistent-peers = "{{ .P2P.PersistentPeers }}"
  237. # UPNP port forwarding
  238. upnp = {{ .P2P.UPNP }}
  239. # Path to address book
  240. addr-book-file = "{{ js .P2P.AddrBook }}"
  241. # Set true for strict address routability rules
  242. # Set false for private or local networks
  243. addr-book-strict = {{ .P2P.AddrBookStrict }}
  244. # Maximum number of inbound peers
  245. #
  246. # TODO: Remove once p2p refactor is complete in favor of MaxConnections.
  247. # ref: https://github.com/tendermint/tendermint/issues/5670
  248. max-num-inbound-peers = {{ .P2P.MaxNumInboundPeers }}
  249. # Maximum number of outbound peers to connect to, excluding persistent peers
  250. #
  251. # TODO: Remove once p2p refactor is complete in favor of MaxConnections.
  252. # ref: https://github.com/tendermint/tendermint/issues/5670
  253. max-num-outbound-peers = {{ .P2P.MaxNumOutboundPeers }}
  254. # Maximum number of connections (inbound and outbound).
  255. max-connections = {{ .P2P.MaxConnections }}
  256. # Rate limits the number of incoming connection attempts per IP address.
  257. max-incoming-connection-attempts = {{ .P2P.MaxIncomingConnectionAttempts }}
  258. # List of node IDs, to which a connection will be (re)established ignoring any existing limits
  259. unconditional-peer-ids = "{{ .P2P.UnconditionalPeerIDs }}"
  260. # Maximum pause when redialing a persistent peer (if zero, exponential backoff is used)
  261. persistent-peers-max-dial-period = "{{ .P2P.PersistentPeersMaxDialPeriod }}"
  262. # Time to wait before flushing messages out on the connection
  263. flush-throttle-timeout = "{{ .P2P.FlushThrottleTimeout }}"
  264. # Maximum size of a message packet payload, in bytes
  265. max-packet-msg-payload-size = {{ .P2P.MaxPacketMsgPayloadSize }}
  266. # Rate at which packets can be sent, in bytes/second
  267. send-rate = {{ .P2P.SendRate }}
  268. # Rate at which packets can be received, in bytes/second
  269. recv-rate = {{ .P2P.RecvRate }}
  270. # Set true to enable the peer-exchange reactor
  271. pex = {{ .P2P.PexReactor }}
  272. # Comma separated list of peer IDs to keep private (will not be gossiped to other peers)
  273. # Warning: IPs will be exposed at /net_info, for more information https://github.com/tendermint/tendermint/issues/3055
  274. private-peer-ids = "{{ .P2P.PrivatePeerIDs }}"
  275. # Toggle to disable guard against peers connecting from the same ip.
  276. allow-duplicate-ip = {{ .P2P.AllowDuplicateIP }}
  277. # Peer connection configuration.
  278. handshake-timeout = "{{ .P2P.HandshakeTimeout }}"
  279. dial-timeout = "{{ .P2P.DialTimeout }}"
  280. #######################################################
  281. ### Mempool Configuration Option ###
  282. #######################################################
  283. [mempool]
  284. # Mempool version to use:
  285. # 1) "v0" - The legacy non-prioritized mempool reactor.
  286. # 2) "v1" (default) - The prioritized mempool reactor.
  287. version = "{{ .Mempool.Version }}"
  288. recheck = {{ .Mempool.Recheck }}
  289. broadcast = {{ .Mempool.Broadcast }}
  290. # Maximum number of transactions in the mempool
  291. size = {{ .Mempool.Size }}
  292. # Limit the total size of all txs in the mempool.
  293. # This only accounts for raw transactions (e.g. given 1MB transactions and
  294. # max-txs-bytes=5MB, mempool will only accept 5 transactions).
  295. max-txs-bytes = {{ .Mempool.MaxTxsBytes }}
  296. # Size of the cache (used to filter transactions we saw earlier) in transactions
  297. cache-size = {{ .Mempool.CacheSize }}
  298. # Do not remove invalid transactions from the cache (default: false)
  299. # Set to true if it's not possible for any invalid transaction to become valid
  300. # again in the future.
  301. keep-invalid-txs-in-cache = {{ .Mempool.KeepInvalidTxsInCache }}
  302. # Maximum size of a single transaction.
  303. # NOTE: the max size of a tx transmitted over the network is {max-tx-bytes}.
  304. max-tx-bytes = {{ .Mempool.MaxTxBytes }}
  305. # Maximum size of a batch of transactions to send to a peer
  306. # Including space needed by encoding (one varint per transaction).
  307. # XXX: Unused due to https://github.com/tendermint/tendermint/issues/5796
  308. max-batch-bytes = {{ .Mempool.MaxBatchBytes }}
  309. #######################################################
  310. ### State Sync Configuration Options ###
  311. #######################################################
  312. [statesync]
  313. # State sync rapidly bootstraps a new node by discovering, fetching, and restoring a state machine
  314. # snapshot from peers instead of fetching and replaying historical blocks. Requires some peers in
  315. # the network to take and serve state machine snapshots. State sync is not attempted if the node
  316. # has any local state (LastBlockHeight > 0). The node will have a truncated block history,
  317. # starting from the height of the snapshot.
  318. enable = {{ .StateSync.Enable }}
  319. # RPC servers (comma-separated) for light client verification of the synced state machine and
  320. # retrieval of state data for node bootstrapping. Also needs a trusted height and corresponding
  321. # header hash obtained from a trusted source, and a period during which validators can be trusted.
  322. #
  323. # For Cosmos SDK-based chains, trust-period should usually be about 2/3 of the unbonding time (~2
  324. # weeks) during which they can be financially punished (slashed) for misbehavior.
  325. rpc-servers = "{{ StringsJoin .StateSync.RPCServers "," }}"
  326. trust-height = {{ .StateSync.TrustHeight }}
  327. trust-hash = "{{ .StateSync.TrustHash }}"
  328. trust-period = "{{ .StateSync.TrustPeriod }}"
  329. # Time to spend discovering snapshots before initiating a restore.
  330. discovery-time = "{{ .StateSync.DiscoveryTime }}"
  331. # Temporary directory for state sync snapshot chunks, defaults to the OS tempdir (typically /tmp).
  332. # Will create a new, randomly named directory within, and remove it when done.
  333. temp-dir = "{{ .StateSync.TempDir }}"
  334. # The timeout duration before re-requesting a chunk, possibly from a different
  335. # peer (default: 1 minute).
  336. chunk-request-timeout = "{{ .StateSync.ChunkRequestTimeout }}"
  337. # The number of concurrent chunk fetchers to run (default: 1).
  338. chunk-fetchers = "{{ .StateSync.ChunkFetchers }}"
  339. #######################################################
  340. ### Fast Sync Configuration Connections ###
  341. #######################################################
  342. [fastsync]
  343. # Fast Sync version to use:
  344. # 1) "v0" (default) - the legacy fast sync implementation
  345. # 2) "v2" - complete redesign of v0, optimized for testability & readability
  346. version = "{{ .FastSync.Version }}"
  347. #######################################################
  348. ### Consensus Configuration Options ###
  349. #######################################################
  350. [consensus]
  351. wal-file = "{{ js .Consensus.WalPath }}"
  352. # How long we wait for a proposal block before prevoting nil
  353. timeout-propose = "{{ .Consensus.TimeoutPropose }}"
  354. # How much timeout-propose increases with each round
  355. timeout-propose-delta = "{{ .Consensus.TimeoutProposeDelta }}"
  356. # How long we wait after receiving +2/3 prevotes for anything (ie. not a single block or nil)
  357. timeout-prevote = "{{ .Consensus.TimeoutPrevote }}"
  358. # How much the timeout-prevote increases with each round
  359. timeout-prevote-delta = "{{ .Consensus.TimeoutPrevoteDelta }}"
  360. # How long we wait after receiving +2/3 precommits for anything (ie. not a single block or nil)
  361. timeout-precommit = "{{ .Consensus.TimeoutPrecommit }}"
  362. # How much the timeout-precommit increases with each round
  363. timeout-precommit-delta = "{{ .Consensus.TimeoutPrecommitDelta }}"
  364. # How long we wait after committing a block, before starting on the new
  365. # height (this gives us a chance to receive some more precommits, even
  366. # though we already have +2/3).
  367. timeout-commit = "{{ .Consensus.TimeoutCommit }}"
  368. # How many blocks to look back to check existence of the node's consensus votes before joining consensus
  369. # When non-zero, the node will panic upon restart
  370. # if the same consensus key was used to sign {double-sign-check-height} last blocks.
  371. # So, validators should stop the state machine, wait for some blocks, and then restart the state machine to avoid panic.
  372. double-sign-check-height = {{ .Consensus.DoubleSignCheckHeight }}
  373. # Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  374. skip-timeout-commit = {{ .Consensus.SkipTimeoutCommit }}
  375. # EmptyBlocks mode and possible interval between empty blocks
  376. create-empty-blocks = {{ .Consensus.CreateEmptyBlocks }}
  377. create-empty-blocks-interval = "{{ .Consensus.CreateEmptyBlocksInterval }}"
  378. # Reactor sleep duration parameters
  379. peer-gossip-sleep-duration = "{{ .Consensus.PeerGossipSleepDuration }}"
  380. peer-query-maj23-sleep-duration = "{{ .Consensus.PeerQueryMaj23SleepDuration }}"
  381. #######################################################
  382. ### Transaction Indexer Configuration Options ###
  383. #######################################################
  384. [tx-index]
  385. # The backend database list to back the indexer.
  386. # If list contains null, meaning no indexer service will be used.
  387. #
  388. # The application will set which txs to index. In some cases a node operator will be able
  389. # to decide which txs to index based on configuration set in the application.
  390. #
  391. # Options:
  392. # 1) "null"
  393. # 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
  394. # - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed.
  395. # 3) "psql" - the indexer services backed by PostgreSQL.
  396. indexer = [{{ range $i, $e := .TxIndex.Indexer }}{{if $i}}, {{end}}{{ printf "%q" $e}}{{end}}]
  397. # The PostgreSQL connection configuration, the connection format:
  398. # postgresql://<user>:<password>@<host>:<port>/<db>?<opts>
  399. psql-conn = "{{ .TxIndex.PsqlConn }}"
  400. #######################################################
  401. ### Instrumentation Configuration Options ###
  402. #######################################################
  403. [instrumentation]
  404. # When true, Prometheus metrics are served under /metrics on
  405. # PrometheusListenAddr.
  406. # Check out the documentation for the list of available metrics.
  407. prometheus = {{ .Instrumentation.Prometheus }}
  408. # Address to listen for Prometheus collector(s) connections
  409. prometheus-listen-addr = "{{ .Instrumentation.PrometheusListenAddr }}"
  410. # Maximum number of simultaneous connections.
  411. # If you want to accept a larger number than the default, make sure
  412. # you increase your OS limits.
  413. # 0 - unlimited.
  414. max-open-connections = {{ .Instrumentation.MaxOpenConnections }}
  415. # Instrumentation namespace
  416. namespace = "{{ .Instrumentation.Namespace }}"
  417. `
  418. /****** these are for test settings ***********/
  419. func ResetTestRoot(testName string) *Config {
  420. return ResetTestRootWithChainID(testName, "")
  421. }
  422. func ResetTestRootWithChainID(testName string, chainID string) *Config {
  423. // create a unique, concurrency-safe test directory under os.TempDir()
  424. rootDir, err := ioutil.TempDir("", fmt.Sprintf("%s-%s_", chainID, testName))
  425. if err != nil {
  426. panic(err)
  427. }
  428. // ensure config and data subdirs are created
  429. if err := tmos.EnsureDir(filepath.Join(rootDir, defaultConfigDir), DefaultDirPerm); err != nil {
  430. panic(err)
  431. }
  432. if err := tmos.EnsureDir(filepath.Join(rootDir, defaultDataDir), DefaultDirPerm); err != nil {
  433. panic(err)
  434. }
  435. conf := DefaultConfig()
  436. genesisFilePath := filepath.Join(rootDir, conf.Genesis)
  437. privKeyFilePath := filepath.Join(rootDir, conf.PrivValidator.Key)
  438. privStateFilePath := filepath.Join(rootDir, conf.PrivValidator.State)
  439. // Write default config file if missing.
  440. writeDefaultConfigFileIfNone(rootDir)
  441. if !tmos.FileExists(genesisFilePath) {
  442. if chainID == "" {
  443. chainID = "tendermint_test"
  444. }
  445. testGenesis := fmt.Sprintf(testGenesisFmt, chainID)
  446. mustWriteFile(genesisFilePath, []byte(testGenesis), 0644)
  447. }
  448. // we always overwrite the priv val
  449. mustWriteFile(privKeyFilePath, []byte(testPrivValidatorKey), 0644)
  450. mustWriteFile(privStateFilePath, []byte(testPrivValidatorState), 0644)
  451. config := TestConfig().SetRoot(rootDir)
  452. return config
  453. }
  454. func mustWriteFile(filePath string, contents []byte, mode os.FileMode) {
  455. if err := ioutil.WriteFile(filePath, contents, mode); err != nil {
  456. tmos.Exit(fmt.Sprintf("failed to write file: %v", err))
  457. }
  458. }
  459. var testGenesisFmt = `{
  460. "genesis_time": "2018-10-10T08:20:13.695936996Z",
  461. "chain_id": "%s",
  462. "initial_height": "1",
  463. "consensus_params": {
  464. "block": {
  465. "max_bytes": "22020096",
  466. "max_gas": "-1",
  467. "time_iota_ms": "10"
  468. },
  469. "evidence": {
  470. "max_age_num_blocks": "100000",
  471. "max_age_duration": "172800000000000",
  472. "max_bytes": "1048576"
  473. },
  474. "validator": {
  475. "pub_key_types": [
  476. "ed25519"
  477. ]
  478. },
  479. "version": {}
  480. },
  481. "validators": [
  482. {
  483. "pub_key": {
  484. "type": "tendermint/PubKeyEd25519",
  485. "value":"AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="
  486. },
  487. "power": "10",
  488. "name": ""
  489. }
  490. ],
  491. "app_hash": ""
  492. }`
  493. var testPrivValidatorKey = `{
  494. "address": "A3258DCBF45DCA0DF052981870F2D1441A36D145",
  495. "pub_key": {
  496. "type": "tendermint/PubKeyEd25519",
  497. "value": "AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="
  498. },
  499. "priv_key": {
  500. "type": "tendermint/PrivKeyEd25519",
  501. "value": "EVkqJO/jIXp3rkASXfh9YnyToYXRXhBr6g9cQVxPFnQBP/5povV4HTjvsy530kybxKHwEi85iU8YL0qQhSYVoQ=="
  502. }
  503. }`
  504. var testPrivValidatorState = `{
  505. "height": "0",
  506. "round": 0,
  507. "step": 0
  508. }`