miner.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. // Copyright 2014 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. // Package miner implements Ethereum block creation and mining.
  17. package miner
  18. import (
  19. "fmt"
  20. "sync/atomic"
  21. "github.com/ethereum/go-ethereum/accounts"
  22. "github.com/ethereum/go-ethereum/common"
  23. "github.com/ethereum/go-ethereum/consensus"
  24. "github.com/ethereum/go-ethereum/core"
  25. "github.com/ethereum/go-ethereum/core/state"
  26. "github.com/ethereum/go-ethereum/core/types"
  27. "github.com/ethereum/go-ethereum/eth/downloader"
  28. "github.com/ethereum/go-ethereum/ethdb"
  29. "github.com/ethereum/go-ethereum/event"
  30. "github.com/ethereum/go-ethereum/log"
  31. "github.com/ethereum/go-ethereum/params"
  32. )
  33. // Backend wraps all methods required for mining.
  34. type Backend interface {
  35. AccountManager() *accounts.Manager
  36. BlockChain() *core.BlockChain
  37. TxPool() *core.TxPool
  38. ChainDb() ethdb.Database
  39. }
  40. // Miner creates blocks and searches for proof-of-work values.
  41. type Miner struct {
  42. mux *event.TypeMux
  43. worker *worker
  44. coinbase common.Address
  45. eth Backend
  46. engine consensus.Engine
  47. canStart int32 // can start indicates whether we can start the mining operation
  48. shouldStart int32 // should start indicates whether we should start after sync
  49. }
  50. func New(eth Backend, config *params.ChainConfig, mux *event.TypeMux, engine consensus.Engine) *Miner {
  51. miner := &Miner{
  52. eth: eth,
  53. mux: mux,
  54. engine: engine,
  55. worker: newWorker(config, engine, eth, mux),
  56. canStart: 1,
  57. }
  58. miner.Register(NewCpuAgent(eth.BlockChain(), engine))
  59. go miner.update()
  60. return miner
  61. }
  62. // update keeps track of the downloader events. Please be aware that this is a one shot type of update loop.
  63. // It's entered once and as soon as `Done` or `Failed` has been broadcasted the events are unregistered and
  64. // the loop is exited. This to prevent a major security vuln where external parties can DOS you with blocks
  65. // and halt your mining operation for as long as the DOS continues.
  66. func (self *Miner) update() {
  67. events := self.mux.Subscribe(downloader.StartEvent{}, downloader.DoneEvent{}, downloader.FailedEvent{})
  68. out:
  69. for ev := range events.Chan() {
  70. switch ev.Data.(type) {
  71. case downloader.StartEvent:
  72. atomic.StoreInt32(&self.canStart, 0)
  73. if self.Mining() {
  74. self.Stop()
  75. atomic.StoreInt32(&self.shouldStart, 1)
  76. log.Info("Mining aborted due to sync")
  77. }
  78. case downloader.DoneEvent, downloader.FailedEvent:
  79. shouldStart := atomic.LoadInt32(&self.shouldStart) == 1
  80. atomic.StoreInt32(&self.canStart, 1)
  81. atomic.StoreInt32(&self.shouldStart, 0)
  82. if shouldStart {
  83. self.Start(self.coinbase)
  84. }
  85. // unsubscribe. we're only interested in this event once
  86. events.Unsubscribe()
  87. // stop immediately and ignore all further pending events
  88. break out
  89. }
  90. }
  91. }
  92. func (self *Miner) Start(coinbase common.Address) {
  93. atomic.StoreInt32(&self.shouldStart, 1)
  94. self.SetEtherbase(coinbase)
  95. if atomic.LoadInt32(&self.canStart) == 0 {
  96. log.Info("Network syncing, will start miner afterwards")
  97. return
  98. }
  99. self.worker.start()
  100. self.worker.commitNewWork()
  101. }
  102. func (self *Miner) Stop() {
  103. self.worker.stop()
  104. atomic.StoreInt32(&self.shouldStart, 0)
  105. }
  106. func (self *Miner) Register(agent Agent) {
  107. self.worker.register(agent)
  108. }
  109. func (self *Miner) Unregister(agent Agent) {
  110. self.worker.unregister(agent)
  111. }
  112. func (self *Miner) Mining() bool {
  113. return self.worker.isRunning()
  114. }
  115. func (self *Miner) HashRate() uint64 {
  116. if pow, ok := self.engine.(consensus.PoW); ok {
  117. return uint64(pow.Hashrate())
  118. }
  119. return 0
  120. }
  121. func (self *Miner) SetExtra(extra []byte) error {
  122. if uint64(len(extra)) > params.MaximumExtraDataSize {
  123. return fmt.Errorf("Extra exceeds max length. %d > %v", len(extra), params.MaximumExtraDataSize)
  124. }
  125. self.worker.setExtra(extra)
  126. return nil
  127. }
  128. // Pending returns the currently pending block and associated state.
  129. func (self *Miner) Pending() (*types.Block, *state.StateDB) {
  130. return self.worker.pending()
  131. }
  132. // PendingBlock returns the currently pending block.
  133. //
  134. // Note, to access both the pending block and the pending state
  135. // simultaneously, please use Pending(), as the pending state can
  136. // change between multiple method calls
  137. func (self *Miner) PendingBlock() *types.Block {
  138. return self.worker.pendingBlock()
  139. }
  140. func (self *Miner) SetEtherbase(addr common.Address) {
  141. self.coinbase = addr
  142. self.worker.setEtherbase(addr)
  143. }