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.

317 lines
10 KiB

8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
  1. package config
  2. import (
  3. "bytes"
  4. "os"
  5. "path/filepath"
  6. "text/template"
  7. cmn "github.com/tendermint/tmlibs/common"
  8. )
  9. var configTemplate *template.Template
  10. func init() {
  11. var err error
  12. if configTemplate, err = template.New("configFileTemplate").Parse(defaultConfigTemplate); err != nil {
  13. panic(err)
  14. }
  15. }
  16. /****** these are for production settings ***********/
  17. // EnsureRoot creates the root, config, and data directories if they don't exist,
  18. // and panics if it fails.
  19. func EnsureRoot(rootDir string) {
  20. if err := cmn.EnsureDir(rootDir, 0700); err != nil {
  21. cmn.PanicSanity(err.Error())
  22. }
  23. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultConfigDir), 0700); err != nil {
  24. cmn.PanicSanity(err.Error())
  25. }
  26. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultDataDir), 0700); err != nil {
  27. cmn.PanicSanity(err.Error())
  28. }
  29. configFilePath := filepath.Join(rootDir, defaultConfigFilePath)
  30. // Write default config file if missing.
  31. if !cmn.FileExists(configFilePath) {
  32. writeDefaultConfigFile(configFilePath)
  33. }
  34. }
  35. // XXX: this func should probably be called by cmd/tendermint/commands/init.go
  36. // alongside the writing of the genesis.json and priv_validator.json
  37. func writeDefaultConfigFile(configFilePath string) {
  38. WriteConfigFile(configFilePath, DefaultConfig())
  39. }
  40. // WriteConfigFile renders config using the template and writes it to configFilePath.
  41. func WriteConfigFile(configFilePath string, config *Config) {
  42. var buffer bytes.Buffer
  43. if err := configTemplate.Execute(&buffer, config); err != nil {
  44. panic(err)
  45. }
  46. cmn.MustWriteFile(configFilePath, buffer.Bytes(), 0644)
  47. }
  48. // Note: any changes to the comments/variables/mapstructure
  49. // must be reflected in the appropriate struct in config/config.go
  50. const defaultConfigTemplate = `# This is a TOML config file.
  51. # For more information, see https://github.com/toml-lang/toml
  52. ##### main base config options #####
  53. # TCP or UNIX socket address of the ABCI application,
  54. # or the name of an ABCI application compiled in with the Tendermint binary
  55. proxy_app = "{{ .BaseConfig.ProxyApp }}"
  56. # A custom human readable name for this node
  57. moniker = "{{ .BaseConfig.Moniker }}"
  58. # If this node is many blocks behind the tip of the chain, FastSync
  59. # allows them to catchup quickly by downloading blocks in parallel
  60. # and verifying their commits
  61. fast_sync = {{ .BaseConfig.FastSync }}
  62. # Database backend: leveldb | memdb
  63. db_backend = "{{ .BaseConfig.DBBackend }}"
  64. # Database directory
  65. db_path = "{{ js .BaseConfig.DBPath }}"
  66. # Output level for logging, including package level options
  67. log_level = "{{ .BaseConfig.LogLevel }}"
  68. ##### additional base config options #####
  69. # Path to the JSON file containing the initial validator set and other meta data
  70. genesis_file = "{{ js .BaseConfig.Genesis }}"
  71. # Path to the JSON file containing the private key to use as a validator in the consensus protocol
  72. priv_validator_file = "{{ js .BaseConfig.PrivValidator }}"
  73. # Path to the JSON file containing the private key to use for node authentication in the p2p protocol
  74. node_key_file = "{{ js .BaseConfig.NodeKey}}"
  75. # Mechanism to connect to the ABCI application: socket | grpc
  76. abci = "{{ .BaseConfig.ABCI }}"
  77. # TCP or UNIX socket address for the profiling server to listen on
  78. prof_laddr = "{{ .BaseConfig.ProfListenAddress }}"
  79. # If true, query the ABCI app on connecting to a new peer
  80. # so the app can decide if we should keep the connection or not
  81. filter_peers = {{ .BaseConfig.FilterPeers }}
  82. # When true, metrics are served under /metrics using a Prometheus client
  83. # Check out the documentation for the list of available metrics.
  84. monitoring = {{ .BaseConfig.Monitoring }}
  85. ##### advanced configuration options #####
  86. ##### rpc server configuration options #####
  87. [rpc]
  88. # TCP or UNIX socket address for the RPC server to listen on
  89. laddr = "{{ .RPC.ListenAddress }}"
  90. # TCP or UNIX socket address for the gRPC server to listen on
  91. # NOTE: This server only supports /broadcast_tx_commit
  92. grpc_laddr = "{{ .RPC.GRPCListenAddress }}"
  93. # Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool
  94. unsafe = {{ .RPC.Unsafe }}
  95. ##### peer to peer configuration options #####
  96. [p2p]
  97. # Address to listen for incoming connections
  98. laddr = "{{ .P2P.ListenAddress }}"
  99. # Comma separated list of seed nodes to connect to
  100. seeds = "{{ .P2P.Seeds }}"
  101. # Comma separated list of nodes to keep persistent connections to
  102. # Do not add private peers to this list if you don't want them advertised
  103. persistent_peers = "{{ .P2P.PersistentPeers }}"
  104. # Path to address book
  105. addr_book_file = "{{ js .P2P.AddrBook }}"
  106. # Set true for strict address routability rules
  107. addr_book_strict = {{ .P2P.AddrBookStrict }}
  108. # Time to wait before flushing messages out on the connection, in ms
  109. flush_throttle_timeout = {{ .P2P.FlushThrottleTimeout }}
  110. # Maximum number of peers to connect to
  111. max_num_peers = {{ .P2P.MaxNumPeers }}
  112. # Maximum size of a message packet payload, in bytes
  113. max_packet_msg_payload_size = {{ .P2P.MaxPacketMsgPayloadSize }}
  114. # Rate at which packets can be sent, in bytes/second
  115. send_rate = {{ .P2P.SendRate }}
  116. # Rate at which packets can be received, in bytes/second
  117. recv_rate = {{ .P2P.RecvRate }}
  118. # Set true to enable the peer-exchange reactor
  119. pex = {{ .P2P.PexReactor }}
  120. # Seed mode, in which node constantly crawls the network and looks for
  121. # peers. If another node asks it for addresses, it responds and disconnects.
  122. #
  123. # Does not work if the peer-exchange reactor is disabled.
  124. seed_mode = {{ .P2P.SeedMode }}
  125. # Comma separated list of peer IDs to keep private (will not be gossiped to other peers)
  126. private_peer_ids = "{{ .P2P.PrivatePeerIDs }}"
  127. ##### mempool configuration options #####
  128. [mempool]
  129. recheck = {{ .Mempool.Recheck }}
  130. recheck_empty = {{ .Mempool.RecheckEmpty }}
  131. broadcast = {{ .Mempool.Broadcast }}
  132. wal_dir = "{{ js .Mempool.WalPath }}"
  133. # size of the mempool
  134. size = {{ .Mempool.Size }}
  135. # size of the cache (used to filter transactions we saw earlier)
  136. cache_size = {{ .Mempool.CacheSize }}
  137. ##### consensus configuration options #####
  138. [consensus]
  139. wal_file = "{{ js .Consensus.WalPath }}"
  140. # All timeouts are in milliseconds
  141. timeout_propose = {{ .Consensus.TimeoutPropose }}
  142. timeout_propose_delta = {{ .Consensus.TimeoutProposeDelta }}
  143. timeout_prevote = {{ .Consensus.TimeoutPrevote }}
  144. timeout_prevote_delta = {{ .Consensus.TimeoutPrevoteDelta }}
  145. timeout_precommit = {{ .Consensus.TimeoutPrecommit }}
  146. timeout_precommit_delta = {{ .Consensus.TimeoutPrecommitDelta }}
  147. timeout_commit = {{ .Consensus.TimeoutCommit }}
  148. # Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  149. skip_timeout_commit = {{ .Consensus.SkipTimeoutCommit }}
  150. # BlockSize
  151. max_block_size_txs = {{ .Consensus.MaxBlockSizeTxs }}
  152. max_block_size_bytes = {{ .Consensus.MaxBlockSizeBytes }}
  153. # EmptyBlocks mode and possible interval between empty blocks in seconds
  154. create_empty_blocks = {{ .Consensus.CreateEmptyBlocks }}
  155. create_empty_blocks_interval = {{ .Consensus.CreateEmptyBlocksInterval }}
  156. # Reactor sleep duration parameters are in milliseconds
  157. peer_gossip_sleep_duration = {{ .Consensus.PeerGossipSleepDuration }}
  158. peer_query_maj23_sleep_duration = {{ .Consensus.PeerQueryMaj23SleepDuration }}
  159. ##### transactions indexer configuration options #####
  160. [tx_index]
  161. # What indexer to use for transactions
  162. #
  163. # Options:
  164. # 1) "null" (default)
  165. # 2) "kv" - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
  166. indexer = "{{ .TxIndex.Indexer }}"
  167. # Comma-separated list of tags to index (by default the only tag is tx hash)
  168. #
  169. # It's recommended to index only a subset of tags due to possible memory
  170. # bloat. This is, of course, depends on the indexer's DB and the volume of
  171. # transactions.
  172. index_tags = "{{ .TxIndex.IndexTags }}"
  173. # When set to true, tells indexer to index all tags. Note this may be not
  174. # desirable (see the comment above). IndexTags has a precedence over
  175. # IndexAllTags (i.e. when given both, IndexTags will be indexed).
  176. index_all_tags = {{ .TxIndex.IndexAllTags }}
  177. `
  178. /****** these are for test settings ***********/
  179. func ResetTestRoot(testName string) *Config {
  180. rootDir := os.ExpandEnv("$HOME/.tendermint_test")
  181. rootDir = filepath.Join(rootDir, testName)
  182. // Remove ~/.tendermint_test_bak
  183. if cmn.FileExists(rootDir + "_bak") {
  184. if err := os.RemoveAll(rootDir + "_bak"); err != nil {
  185. cmn.PanicSanity(err.Error())
  186. }
  187. }
  188. // Move ~/.tendermint_test to ~/.tendermint_test_bak
  189. if cmn.FileExists(rootDir) {
  190. if err := os.Rename(rootDir, rootDir+"_bak"); err != nil {
  191. cmn.PanicSanity(err.Error())
  192. }
  193. }
  194. // Create new dir
  195. if err := cmn.EnsureDir(rootDir, 0700); err != nil {
  196. cmn.PanicSanity(err.Error())
  197. }
  198. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultConfigDir), 0700); err != nil {
  199. cmn.PanicSanity(err.Error())
  200. }
  201. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultDataDir), 0700); err != nil {
  202. cmn.PanicSanity(err.Error())
  203. }
  204. baseConfig := DefaultBaseConfig()
  205. configFilePath := filepath.Join(rootDir, defaultConfigFilePath)
  206. genesisFilePath := filepath.Join(rootDir, baseConfig.Genesis)
  207. privFilePath := filepath.Join(rootDir, baseConfig.PrivValidator)
  208. // Write default config file if missing.
  209. if !cmn.FileExists(configFilePath) {
  210. writeDefaultConfigFile(configFilePath)
  211. }
  212. if !cmn.FileExists(genesisFilePath) {
  213. cmn.MustWriteFile(genesisFilePath, []byte(testGenesis), 0644)
  214. }
  215. // we always overwrite the priv val
  216. cmn.MustWriteFile(privFilePath, []byte(testPrivValidator), 0644)
  217. config := TestConfig().SetRoot(rootDir)
  218. return config
  219. }
  220. var testGenesis = `{
  221. "genesis_time": "0001-01-01T00:00:00.000Z",
  222. "chain_id": "tendermint_test",
  223. "validators": [
  224. {
  225. "pub_key": {
  226. "type": "AC26791624DE60",
  227. "value":"AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="
  228. },
  229. "power": 10,
  230. "name": ""
  231. }
  232. ],
  233. "app_hash": ""
  234. }`
  235. var testPrivValidator = `{
  236. "address": "849CB2C877F87A20925F35D00AE6688342D25B47",
  237. "pub_key": {
  238. "type": "AC26791624DE60",
  239. "value": "AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="
  240. },
  241. "priv_key": {
  242. "type": "954568A3288910",
  243. "value": "EVkqJO/jIXp3rkASXfh9YnyToYXRXhBr6g9cQVxPFnQBP/5povV4HTjvsy530kybxKHwEi85iU8YL0qQhSYVoQ=="
  244. },
  245. "last_height": 0,
  246. "last_round": 0,
  247. "last_step": 0
  248. }`