blockchain.go 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313
  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 core implements the Ethereum consensus protocol.
  17. package core
  18. import (
  19. "errors"
  20. "fmt"
  21. "io"
  22. "math/big"
  23. mrand "math/rand"
  24. "runtime"
  25. "sync"
  26. "sync/atomic"
  27. "time"
  28. "github.com/ethereum/go-ethereum/common"
  29. "github.com/ethereum/go-ethereum/core/state"
  30. "github.com/ethereum/go-ethereum/core/types"
  31. "github.com/ethereum/go-ethereum/core/vm"
  32. "github.com/ethereum/go-ethereum/crypto"
  33. "github.com/ethereum/go-ethereum/ethdb"
  34. "github.com/ethereum/go-ethereum/event"
  35. "github.com/ethereum/go-ethereum/logger"
  36. "github.com/ethereum/go-ethereum/logger/glog"
  37. "github.com/ethereum/go-ethereum/metrics"
  38. "github.com/ethereum/go-ethereum/params"
  39. "github.com/ethereum/go-ethereum/pow"
  40. "github.com/ethereum/go-ethereum/rlp"
  41. "github.com/ethereum/go-ethereum/trie"
  42. "github.com/hashicorp/golang-lru"
  43. )
  44. var (
  45. chainlogger = logger.NewLogger("CHAIN")
  46. jsonlogger = logger.NewJsonLogger()
  47. blockInsertTimer = metrics.NewTimer("chain/inserts")
  48. ErrNoGenesis = errors.New("Genesis not found in chain")
  49. )
  50. const (
  51. bodyCacheLimit = 256
  52. blockCacheLimit = 256
  53. maxFutureBlocks = 256
  54. maxTimeFutureBlocks = 30
  55. // must be bumped when consensus algorithm is changed, this forces the upgradedb
  56. // command to be run (forces the blocks to be imported again using the new algorithm)
  57. BlockChainVersion = 3
  58. )
  59. // BlockChain represents the canonical chain given a database with a genesis
  60. // block. The Blockchain manages chain imports, reverts, chain reorganisations.
  61. //
  62. // Importing blocks in to the block chain happens according to the set of rules
  63. // defined by the two stage Validator. Processing of blocks is done using the
  64. // Processor which processes the included transaction. The validation of the state
  65. // is done in the second part of the Validator. Failing results in aborting of
  66. // the import.
  67. //
  68. // The BlockChain also helps in returning blocks from **any** chain included
  69. // in the database as well as blocks that represents the canonical chain. It's
  70. // important to note that GetBlock can return any block and does not need to be
  71. // included in the canonical one where as GetBlockByNumber always represents the
  72. // canonical chain.
  73. type BlockChain struct {
  74. config *params.ChainConfig // chain & network configuration
  75. hc *HeaderChain
  76. chainDb ethdb.Database
  77. eventMux *event.TypeMux
  78. genesisBlock *types.Block
  79. mu sync.RWMutex // global mutex for locking chain operations
  80. chainmu sync.RWMutex // blockchain insertion lock
  81. procmu sync.RWMutex // block processor lock
  82. checkpoint int // checkpoint counts towards the new checkpoint
  83. currentBlock *types.Block // Current head of the block chain
  84. currentFastBlock *types.Block // Current head of the fast-sync chain (may be above the block chain!)
  85. stateCache *state.StateDB // State database to reuse between imports (contains state cache)
  86. bodyCache *lru.Cache // Cache for the most recent block bodies
  87. bodyRLPCache *lru.Cache // Cache for the most recent block bodies in RLP encoded format
  88. blockCache *lru.Cache // Cache for the most recent entire blocks
  89. futureBlocks *lru.Cache // future blocks are blocks added for later processing
  90. quit chan struct{} // blockchain quit channel
  91. running int32 // running must be called atomically
  92. // procInterrupt must be atomically called
  93. procInterrupt int32 // interrupt signaler for block processing
  94. wg sync.WaitGroup // chain processing wait group for shutting down
  95. pow pow.PoW
  96. processor Processor // block processor interface
  97. validator Validator // block and state validator interface
  98. }
  99. // NewBlockChain returns a fully initialised block chain using information
  100. // available in the database. It initialiser the default Ethereum Validator and
  101. // Processor.
  102. func NewBlockChain(chainDb ethdb.Database, config *params.ChainConfig, pow pow.PoW, mux *event.TypeMux) (*BlockChain, error) {
  103. bodyCache, _ := lru.New(bodyCacheLimit)
  104. bodyRLPCache, _ := lru.New(bodyCacheLimit)
  105. blockCache, _ := lru.New(blockCacheLimit)
  106. futureBlocks, _ := lru.New(maxFutureBlocks)
  107. bc := &BlockChain{
  108. config: config,
  109. chainDb: chainDb,
  110. eventMux: mux,
  111. quit: make(chan struct{}),
  112. bodyCache: bodyCache,
  113. bodyRLPCache: bodyRLPCache,
  114. blockCache: blockCache,
  115. futureBlocks: futureBlocks,
  116. pow: pow,
  117. }
  118. bc.SetValidator(NewBlockValidator(config, bc, pow))
  119. bc.SetProcessor(NewStateProcessor(config, bc))
  120. gv := func() HeaderValidator { return bc.Validator() }
  121. var err error
  122. bc.hc, err = NewHeaderChain(chainDb, config, gv, bc.getProcInterrupt)
  123. if err != nil {
  124. return nil, err
  125. }
  126. bc.genesisBlock = bc.GetBlockByNumber(0)
  127. if bc.genesisBlock == nil {
  128. return nil, ErrNoGenesis
  129. }
  130. if err := bc.loadLastState(); err != nil {
  131. return nil, err
  132. }
  133. // Check the current state of the block hashes and make sure that we do not have any of the bad blocks in our chain
  134. for hash, _ := range BadHashes {
  135. if header := bc.GetHeaderByHash(hash); header != nil {
  136. glog.V(logger.Error).Infof("Found bad hash, rewinding chain to block #%d [%x…]", header.Number, header.ParentHash[:4])
  137. bc.SetHead(header.Number.Uint64() - 1)
  138. glog.V(logger.Error).Infoln("Chain rewind was successful, resuming normal operation")
  139. }
  140. }
  141. // Take ownership of this particular state
  142. go bc.update()
  143. return bc, nil
  144. }
  145. func (self *BlockChain) getProcInterrupt() bool {
  146. return atomic.LoadInt32(&self.procInterrupt) == 1
  147. }
  148. // loadLastState loads the last known chain state from the database. This method
  149. // assumes that the chain manager mutex is held.
  150. func (self *BlockChain) loadLastState() error {
  151. // Restore the last known head block
  152. head := GetHeadBlockHash(self.chainDb)
  153. if head == (common.Hash{}) {
  154. // Corrupt or empty database, init from scratch
  155. self.Reset()
  156. } else {
  157. if block := self.GetBlockByHash(head); block != nil {
  158. // Block found, set as the current head
  159. self.currentBlock = block
  160. } else {
  161. // Corrupt or empty database, init from scratch
  162. self.Reset()
  163. }
  164. }
  165. // Restore the last known head header
  166. currentHeader := self.currentBlock.Header()
  167. if head := GetHeadHeaderHash(self.chainDb); head != (common.Hash{}) {
  168. if header := self.GetHeaderByHash(head); header != nil {
  169. currentHeader = header
  170. }
  171. }
  172. self.hc.SetCurrentHeader(currentHeader)
  173. // Restore the last known head fast block
  174. self.currentFastBlock = self.currentBlock
  175. if head := GetHeadFastBlockHash(self.chainDb); head != (common.Hash{}) {
  176. if block := self.GetBlockByHash(head); block != nil {
  177. self.currentFastBlock = block
  178. }
  179. }
  180. // Initialize a statedb cache to ensure singleton account bloom filter generation
  181. statedb, err := state.New(self.currentBlock.Root(), self.chainDb)
  182. if err != nil {
  183. return err
  184. }
  185. self.stateCache = statedb
  186. self.stateCache.GetAccount(common.Address{})
  187. // Issue a status log for the user
  188. headerTd := self.GetTd(currentHeader.Hash(), currentHeader.Number.Uint64())
  189. blockTd := self.GetTd(self.currentBlock.Hash(), self.currentBlock.NumberU64())
  190. fastTd := self.GetTd(self.currentFastBlock.Hash(), self.currentFastBlock.NumberU64())
  191. glog.V(logger.Info).Infof("Last header: #%d [%x…] TD=%v", currentHeader.Number, currentHeader.Hash().Bytes()[:4], headerTd)
  192. glog.V(logger.Info).Infof("Last block: #%d [%x…] TD=%v", self.currentBlock.Number(), self.currentBlock.Hash().Bytes()[:4], blockTd)
  193. glog.V(logger.Info).Infof("Fast block: #%d [%x…] TD=%v", self.currentFastBlock.Number(), self.currentFastBlock.Hash().Bytes()[:4], fastTd)
  194. return nil
  195. }
  196. // SetHead rewinds the local chain to a new head. In the case of headers, everything
  197. // above the new head will be deleted and the new one set. In the case of blocks
  198. // though, the head may be further rewound if block bodies are missing (non-archive
  199. // nodes after a fast sync).
  200. func (bc *BlockChain) SetHead(head uint64) {
  201. bc.mu.Lock()
  202. defer bc.mu.Unlock()
  203. delFn := func(hash common.Hash, num uint64) {
  204. DeleteBody(bc.chainDb, hash, num)
  205. }
  206. bc.hc.SetHead(head, delFn)
  207. // Clear out any stale content from the caches
  208. bc.bodyCache.Purge()
  209. bc.bodyRLPCache.Purge()
  210. bc.blockCache.Purge()
  211. bc.futureBlocks.Purge()
  212. // Update all computed fields to the new head
  213. currentHeader := bc.hc.CurrentHeader()
  214. if bc.currentBlock != nil && currentHeader.Number.Uint64() < bc.currentBlock.NumberU64() {
  215. bc.currentBlock = bc.GetBlock(currentHeader.Hash(), currentHeader.Number.Uint64())
  216. }
  217. if bc.currentFastBlock != nil && currentHeader.Number.Uint64() < bc.currentFastBlock.NumberU64() {
  218. bc.currentFastBlock = bc.GetBlock(currentHeader.Hash(), currentHeader.Number.Uint64())
  219. }
  220. if bc.currentBlock == nil {
  221. bc.currentBlock = bc.genesisBlock
  222. }
  223. if bc.currentFastBlock == nil {
  224. bc.currentFastBlock = bc.genesisBlock
  225. }
  226. if err := WriteHeadBlockHash(bc.chainDb, bc.currentBlock.Hash()); err != nil {
  227. glog.Fatalf("failed to reset head block hash: %v", err)
  228. }
  229. if err := WriteHeadFastBlockHash(bc.chainDb, bc.currentFastBlock.Hash()); err != nil {
  230. glog.Fatalf("failed to reset head fast block hash: %v", err)
  231. }
  232. bc.loadLastState()
  233. }
  234. // FastSyncCommitHead sets the current head block to the one defined by the hash
  235. // irrelevant what the chain contents were prior.
  236. func (self *BlockChain) FastSyncCommitHead(hash common.Hash) error {
  237. // Make sure that both the block as well at its state trie exists
  238. block := self.GetBlockByHash(hash)
  239. if block == nil {
  240. return fmt.Errorf("non existent block [%x…]", hash[:4])
  241. }
  242. if _, err := trie.NewSecure(block.Root(), self.chainDb, 0); err != nil {
  243. return err
  244. }
  245. // If all checks out, manually set the head block
  246. self.mu.Lock()
  247. self.currentBlock = block
  248. self.mu.Unlock()
  249. glog.V(logger.Info).Infof("committed block #%d [%x…] as new head", block.Number(), hash[:4])
  250. return nil
  251. }
  252. // GasLimit returns the gas limit of the current HEAD block.
  253. func (self *BlockChain) GasLimit() *big.Int {
  254. self.mu.RLock()
  255. defer self.mu.RUnlock()
  256. return self.currentBlock.GasLimit()
  257. }
  258. // LastBlockHash return the hash of the HEAD block.
  259. func (self *BlockChain) LastBlockHash() common.Hash {
  260. self.mu.RLock()
  261. defer self.mu.RUnlock()
  262. return self.currentBlock.Hash()
  263. }
  264. // CurrentBlock retrieves the current head block of the canonical chain. The
  265. // block is retrieved from the blockchain's internal cache.
  266. func (self *BlockChain) CurrentBlock() *types.Block {
  267. self.mu.RLock()
  268. defer self.mu.RUnlock()
  269. return self.currentBlock
  270. }
  271. // CurrentFastBlock retrieves the current fast-sync head block of the canonical
  272. // chain. The block is retrieved from the blockchain's internal cache.
  273. func (self *BlockChain) CurrentFastBlock() *types.Block {
  274. self.mu.RLock()
  275. defer self.mu.RUnlock()
  276. return self.currentFastBlock
  277. }
  278. // Status returns status information about the current chain such as the HEAD Td,
  279. // the HEAD hash and the hash of the genesis block.
  280. func (self *BlockChain) Status() (td *big.Int, currentBlock common.Hash, genesisBlock common.Hash) {
  281. self.mu.RLock()
  282. defer self.mu.RUnlock()
  283. return self.GetTd(self.currentBlock.Hash(), self.currentBlock.NumberU64()), self.currentBlock.Hash(), self.genesisBlock.Hash()
  284. }
  285. // SetProcessor sets the processor required for making state modifications.
  286. func (self *BlockChain) SetProcessor(processor Processor) {
  287. self.procmu.Lock()
  288. defer self.procmu.Unlock()
  289. self.processor = processor
  290. }
  291. // SetValidator sets the validator which is used to validate incoming blocks.
  292. func (self *BlockChain) SetValidator(validator Validator) {
  293. self.procmu.Lock()
  294. defer self.procmu.Unlock()
  295. self.validator = validator
  296. }
  297. // Validator returns the current validator.
  298. func (self *BlockChain) Validator() Validator {
  299. self.procmu.RLock()
  300. defer self.procmu.RUnlock()
  301. return self.validator
  302. }
  303. // Processor returns the current processor.
  304. func (self *BlockChain) Processor() Processor {
  305. self.procmu.RLock()
  306. defer self.procmu.RUnlock()
  307. return self.processor
  308. }
  309. // AuxValidator returns the auxiliary validator (Proof of work atm)
  310. func (self *BlockChain) AuxValidator() pow.PoW { return self.pow }
  311. // State returns a new mutable state based on the current HEAD block.
  312. func (self *BlockChain) State() (*state.StateDB, error) {
  313. return self.StateAt(self.CurrentBlock().Root())
  314. }
  315. // StateAt returns a new mutable state based on a particular point in time.
  316. func (self *BlockChain) StateAt(root common.Hash) (*state.StateDB, error) {
  317. return self.stateCache.New(root)
  318. }
  319. // Reset purges the entire blockchain, restoring it to its genesis state.
  320. func (bc *BlockChain) Reset() {
  321. bc.ResetWithGenesisBlock(bc.genesisBlock)
  322. }
  323. // ResetWithGenesisBlock purges the entire blockchain, restoring it to the
  324. // specified genesis state.
  325. func (bc *BlockChain) ResetWithGenesisBlock(genesis *types.Block) {
  326. // Dump the entire block chain and purge the caches
  327. bc.SetHead(0)
  328. bc.mu.Lock()
  329. defer bc.mu.Unlock()
  330. // Prepare the genesis block and reinitialise the chain
  331. if err := bc.hc.WriteTd(genesis.Hash(), genesis.NumberU64(), genesis.Difficulty()); err != nil {
  332. glog.Fatalf("failed to write genesis block TD: %v", err)
  333. }
  334. if err := WriteBlock(bc.chainDb, genesis); err != nil {
  335. glog.Fatalf("failed to write genesis block: %v", err)
  336. }
  337. bc.genesisBlock = genesis
  338. bc.insert(bc.genesisBlock)
  339. bc.currentBlock = bc.genesisBlock
  340. bc.hc.SetGenesis(bc.genesisBlock.Header())
  341. bc.hc.SetCurrentHeader(bc.genesisBlock.Header())
  342. bc.currentFastBlock = bc.genesisBlock
  343. }
  344. // Export writes the active chain to the given writer.
  345. func (self *BlockChain) Export(w io.Writer) error {
  346. if err := self.ExportN(w, uint64(0), self.currentBlock.NumberU64()); err != nil {
  347. return err
  348. }
  349. return nil
  350. }
  351. // ExportN writes a subset of the active chain to the given writer.
  352. func (self *BlockChain) ExportN(w io.Writer, first uint64, last uint64) error {
  353. self.mu.RLock()
  354. defer self.mu.RUnlock()
  355. if first > last {
  356. return fmt.Errorf("export failed: first (%d) is greater than last (%d)", first, last)
  357. }
  358. glog.V(logger.Info).Infof("exporting %d blocks...\n", last-first+1)
  359. for nr := first; nr <= last; nr++ {
  360. block := self.GetBlockByNumber(nr)
  361. if block == nil {
  362. return fmt.Errorf("export failed on #%d: not found", nr)
  363. }
  364. if err := block.EncodeRLP(w); err != nil {
  365. return err
  366. }
  367. }
  368. return nil
  369. }
  370. // insert injects a new head block into the current block chain. This method
  371. // assumes that the block is indeed a true head. It will also reset the head
  372. // header and the head fast sync block to this very same block if they are older
  373. // or if they are on a different side chain.
  374. //
  375. // Note, this function assumes that the `mu` mutex is held!
  376. func (bc *BlockChain) insert(block *types.Block) {
  377. // If the block is on a side chain or an unknown one, force other heads onto it too
  378. updateHeads := GetCanonicalHash(bc.chainDb, block.NumberU64()) != block.Hash()
  379. // Add the block to the canonical chain number scheme and mark as the head
  380. if err := WriteCanonicalHash(bc.chainDb, block.Hash(), block.NumberU64()); err != nil {
  381. glog.Fatalf("failed to insert block number: %v", err)
  382. }
  383. if err := WriteHeadBlockHash(bc.chainDb, block.Hash()); err != nil {
  384. glog.Fatalf("failed to insert head block hash: %v", err)
  385. }
  386. bc.currentBlock = block
  387. // If the block is better than out head or is on a different chain, force update heads
  388. if updateHeads {
  389. bc.hc.SetCurrentHeader(block.Header())
  390. if err := WriteHeadFastBlockHash(bc.chainDb, block.Hash()); err != nil {
  391. glog.Fatalf("failed to insert head fast block hash: %v", err)
  392. }
  393. bc.currentFastBlock = block
  394. }
  395. }
  396. // Accessors
  397. func (bc *BlockChain) Genesis() *types.Block {
  398. return bc.genesisBlock
  399. }
  400. // GetBody retrieves a block body (transactions and uncles) from the database by
  401. // hash, caching it if found.
  402. func (self *BlockChain) GetBody(hash common.Hash) *types.Body {
  403. // Short circuit if the body's already in the cache, retrieve otherwise
  404. if cached, ok := self.bodyCache.Get(hash); ok {
  405. body := cached.(*types.Body)
  406. return body
  407. }
  408. body := GetBody(self.chainDb, hash, self.hc.GetBlockNumber(hash))
  409. if body == nil {
  410. return nil
  411. }
  412. // Cache the found body for next time and return
  413. self.bodyCache.Add(hash, body)
  414. return body
  415. }
  416. // GetBodyRLP retrieves a block body in RLP encoding from the database by hash,
  417. // caching it if found.
  418. func (self *BlockChain) GetBodyRLP(hash common.Hash) rlp.RawValue {
  419. // Short circuit if the body's already in the cache, retrieve otherwise
  420. if cached, ok := self.bodyRLPCache.Get(hash); ok {
  421. return cached.(rlp.RawValue)
  422. }
  423. body := GetBodyRLP(self.chainDb, hash, self.hc.GetBlockNumber(hash))
  424. if len(body) == 0 {
  425. return nil
  426. }
  427. // Cache the found body for next time and return
  428. self.bodyRLPCache.Add(hash, body)
  429. return body
  430. }
  431. // HasBlock checks if a block is fully present in the database or not, caching
  432. // it if present.
  433. func (bc *BlockChain) HasBlock(hash common.Hash) bool {
  434. return bc.GetBlockByHash(hash) != nil
  435. }
  436. // HasBlockAndState checks if a block and associated state trie is fully present
  437. // in the database or not, caching it if present.
  438. func (bc *BlockChain) HasBlockAndState(hash common.Hash) bool {
  439. // Check first that the block itself is known
  440. block := bc.GetBlockByHash(hash)
  441. if block == nil {
  442. return false
  443. }
  444. // Ensure the associated state is also present
  445. _, err := state.New(block.Root(), bc.chainDb)
  446. return err == nil
  447. }
  448. // GetBlock retrieves a block from the database by hash and number,
  449. // caching it if found.
  450. func (self *BlockChain) GetBlock(hash common.Hash, number uint64) *types.Block {
  451. // Short circuit if the block's already in the cache, retrieve otherwise
  452. if block, ok := self.blockCache.Get(hash); ok {
  453. return block.(*types.Block)
  454. }
  455. block := GetBlock(self.chainDb, hash, number)
  456. if block == nil {
  457. return nil
  458. }
  459. // Cache the found block for next time and return
  460. self.blockCache.Add(block.Hash(), block)
  461. return block
  462. }
  463. // GetBlockByHash retrieves a block from the database by hash, caching it if found.
  464. func (self *BlockChain) GetBlockByHash(hash common.Hash) *types.Block {
  465. return self.GetBlock(hash, self.hc.GetBlockNumber(hash))
  466. }
  467. // GetBlockByNumber retrieves a block from the database by number, caching it
  468. // (associated with its hash) if found.
  469. func (self *BlockChain) GetBlockByNumber(number uint64) *types.Block {
  470. hash := GetCanonicalHash(self.chainDb, number)
  471. if hash == (common.Hash{}) {
  472. return nil
  473. }
  474. return self.GetBlock(hash, number)
  475. }
  476. // [deprecated by eth/62]
  477. // GetBlocksFromHash returns the block corresponding to hash and up to n-1 ancestors.
  478. func (self *BlockChain) GetBlocksFromHash(hash common.Hash, n int) (blocks []*types.Block) {
  479. number := self.hc.GetBlockNumber(hash)
  480. for i := 0; i < n; i++ {
  481. block := self.GetBlock(hash, number)
  482. if block == nil {
  483. break
  484. }
  485. blocks = append(blocks, block)
  486. hash = block.ParentHash()
  487. number--
  488. }
  489. return
  490. }
  491. // GetUnclesInChain retrieves all the uncles from a given block backwards until
  492. // a specific distance is reached.
  493. func (self *BlockChain) GetUnclesInChain(block *types.Block, length int) []*types.Header {
  494. uncles := []*types.Header{}
  495. for i := 0; block != nil && i < length; i++ {
  496. uncles = append(uncles, block.Uncles()...)
  497. block = self.GetBlock(block.ParentHash(), block.NumberU64()-1)
  498. }
  499. return uncles
  500. }
  501. // Stop stops the blockchain service. If any imports are currently in progress
  502. // it will abort them using the procInterrupt.
  503. func (bc *BlockChain) Stop() {
  504. if !atomic.CompareAndSwapInt32(&bc.running, 0, 1) {
  505. return
  506. }
  507. close(bc.quit)
  508. atomic.StoreInt32(&bc.procInterrupt, 1)
  509. bc.wg.Wait()
  510. glog.V(logger.Info).Infoln("Chain manager stopped")
  511. }
  512. func (self *BlockChain) procFutureBlocks() {
  513. blocks := make([]*types.Block, 0, self.futureBlocks.Len())
  514. for _, hash := range self.futureBlocks.Keys() {
  515. if block, exist := self.futureBlocks.Get(hash); exist {
  516. blocks = append(blocks, block.(*types.Block))
  517. }
  518. }
  519. if len(blocks) > 0 {
  520. types.BlockBy(types.Number).Sort(blocks)
  521. self.InsertChain(blocks)
  522. }
  523. }
  524. type WriteStatus byte
  525. const (
  526. NonStatTy WriteStatus = iota
  527. CanonStatTy
  528. SplitStatTy
  529. SideStatTy
  530. )
  531. // Rollback is designed to remove a chain of links from the database that aren't
  532. // certain enough to be valid.
  533. func (self *BlockChain) Rollback(chain []common.Hash) {
  534. self.mu.Lock()
  535. defer self.mu.Unlock()
  536. for i := len(chain) - 1; i >= 0; i-- {
  537. hash := chain[i]
  538. currentHeader := self.hc.CurrentHeader()
  539. if currentHeader.Hash() == hash {
  540. self.hc.SetCurrentHeader(self.GetHeader(currentHeader.ParentHash, currentHeader.Number.Uint64()-1))
  541. }
  542. if self.currentFastBlock.Hash() == hash {
  543. self.currentFastBlock = self.GetBlock(self.currentFastBlock.ParentHash(), self.currentFastBlock.NumberU64()-1)
  544. WriteHeadFastBlockHash(self.chainDb, self.currentFastBlock.Hash())
  545. }
  546. if self.currentBlock.Hash() == hash {
  547. self.currentBlock = self.GetBlock(self.currentBlock.ParentHash(), self.currentBlock.NumberU64()-1)
  548. WriteHeadBlockHash(self.chainDb, self.currentBlock.Hash())
  549. }
  550. }
  551. }
  552. // SetReceiptsData computes all the non-consensus fields of the receipts
  553. func SetReceiptsData(block *types.Block, receipts types.Receipts) {
  554. transactions, logIndex := block.Transactions(), uint(0)
  555. for j := 0; j < len(receipts); j++ {
  556. // The transaction hash can be retrieved from the transaction itself
  557. receipts[j].TxHash = transactions[j].Hash()
  558. // The contract address can be derived from the transaction itself
  559. if MessageCreatesContract(transactions[j]) {
  560. from, _ := transactions[j].From()
  561. receipts[j].ContractAddress = crypto.CreateAddress(from, transactions[j].Nonce())
  562. }
  563. // The used gas can be calculated based on previous receipts
  564. if j == 0 {
  565. receipts[j].GasUsed = new(big.Int).Set(receipts[j].CumulativeGasUsed)
  566. } else {
  567. receipts[j].GasUsed = new(big.Int).Sub(receipts[j].CumulativeGasUsed, receipts[j-1].CumulativeGasUsed)
  568. }
  569. // The derived log fields can simply be set from the block and transaction
  570. for k := 0; k < len(receipts[j].Logs); k++ {
  571. receipts[j].Logs[k].BlockNumber = block.NumberU64()
  572. receipts[j].Logs[k].BlockHash = block.Hash()
  573. receipts[j].Logs[k].TxHash = receipts[j].TxHash
  574. receipts[j].Logs[k].TxIndex = uint(j)
  575. receipts[j].Logs[k].Index = logIndex
  576. logIndex++
  577. }
  578. }
  579. }
  580. // InsertReceiptChain attempts to complete an already existing header chain with
  581. // transaction and receipt data.
  582. func (self *BlockChain) InsertReceiptChain(blockChain types.Blocks, receiptChain []types.Receipts) (int, error) {
  583. self.wg.Add(1)
  584. defer self.wg.Done()
  585. // Collect some import statistics to report on
  586. stats := struct{ processed, ignored int32 }{}
  587. start := time.Now()
  588. // Create the block importing task queue and worker functions
  589. tasks := make(chan int, len(blockChain))
  590. for i := 0; i < len(blockChain) && i < len(receiptChain); i++ {
  591. tasks <- i
  592. }
  593. close(tasks)
  594. errs, failed := make([]error, len(tasks)), int32(0)
  595. process := func(worker int) {
  596. for index := range tasks {
  597. block, receipts := blockChain[index], receiptChain[index]
  598. // Short circuit insertion if shutting down or processing failed
  599. if atomic.LoadInt32(&self.procInterrupt) == 1 {
  600. return
  601. }
  602. if atomic.LoadInt32(&failed) > 0 {
  603. return
  604. }
  605. // Short circuit if the owner header is unknown
  606. if !self.HasHeader(block.Hash()) {
  607. errs[index] = fmt.Errorf("containing header #%d [%x…] unknown", block.Number(), block.Hash().Bytes()[:4])
  608. atomic.AddInt32(&failed, 1)
  609. return
  610. }
  611. // Skip if the entire data is already known
  612. if self.HasBlock(block.Hash()) {
  613. atomic.AddInt32(&stats.ignored, 1)
  614. continue
  615. }
  616. // Compute all the non-consensus fields of the receipts
  617. SetReceiptsData(block, receipts)
  618. // Write all the data out into the database
  619. if err := WriteBody(self.chainDb, block.Hash(), block.NumberU64(), block.Body()); err != nil {
  620. errs[index] = fmt.Errorf("failed to write block body: %v", err)
  621. atomic.AddInt32(&failed, 1)
  622. glog.Fatal(errs[index])
  623. return
  624. }
  625. if err := WriteBlockReceipts(self.chainDb, block.Hash(), block.NumberU64(), receipts); err != nil {
  626. errs[index] = fmt.Errorf("failed to write block receipts: %v", err)
  627. atomic.AddInt32(&failed, 1)
  628. glog.Fatal(errs[index])
  629. return
  630. }
  631. if err := WriteMipmapBloom(self.chainDb, block.NumberU64(), receipts); err != nil {
  632. errs[index] = fmt.Errorf("failed to write log blooms: %v", err)
  633. atomic.AddInt32(&failed, 1)
  634. glog.Fatal(errs[index])
  635. return
  636. }
  637. if err := WriteTransactions(self.chainDb, block); err != nil {
  638. errs[index] = fmt.Errorf("failed to write individual transactions: %v", err)
  639. atomic.AddInt32(&failed, 1)
  640. glog.Fatal(errs[index])
  641. return
  642. }
  643. if err := WriteReceipts(self.chainDb, receipts); err != nil {
  644. errs[index] = fmt.Errorf("failed to write individual receipts: %v", err)
  645. atomic.AddInt32(&failed, 1)
  646. glog.Fatal(errs[index])
  647. return
  648. }
  649. atomic.AddInt32(&stats.processed, 1)
  650. }
  651. }
  652. // Start as many worker threads as goroutines allowed
  653. pending := new(sync.WaitGroup)
  654. for i := 0; i < runtime.GOMAXPROCS(0); i++ {
  655. pending.Add(1)
  656. go func(id int) {
  657. defer pending.Done()
  658. process(id)
  659. }(i)
  660. }
  661. pending.Wait()
  662. // If anything failed, report
  663. if failed > 0 {
  664. for i, err := range errs {
  665. if err != nil {
  666. return i, err
  667. }
  668. }
  669. }
  670. if atomic.LoadInt32(&self.procInterrupt) == 1 {
  671. glog.V(logger.Debug).Infoln("premature abort during receipt chain processing")
  672. return 0, nil
  673. }
  674. // Update the head fast sync block if better
  675. self.mu.Lock()
  676. head := blockChain[len(errs)-1]
  677. if self.GetTd(self.currentFastBlock.Hash(), self.currentFastBlock.NumberU64()).Cmp(self.GetTd(head.Hash(), head.NumberU64())) < 0 {
  678. if err := WriteHeadFastBlockHash(self.chainDb, head.Hash()); err != nil {
  679. glog.Fatalf("failed to update head fast block hash: %v", err)
  680. }
  681. self.currentFastBlock = head
  682. }
  683. self.mu.Unlock()
  684. // Report some public statistics so the user has a clue what's going on
  685. first, last := blockChain[0], blockChain[len(blockChain)-1]
  686. ignored := ""
  687. if stats.ignored > 0 {
  688. ignored = fmt.Sprintf(" (%d ignored)", stats.ignored)
  689. }
  690. glog.V(logger.Info).Infof("imported %d receipts in %9v. #%d [%x… / %x…]%s", stats.processed, common.PrettyDuration(time.Since(start)), last.Number(), first.Hash().Bytes()[:4], last.Hash().Bytes()[:4], ignored)
  691. return 0, nil
  692. }
  693. // WriteBlock writes the block to the chain.
  694. func (self *BlockChain) WriteBlock(block *types.Block) (status WriteStatus, err error) {
  695. self.wg.Add(1)
  696. defer self.wg.Done()
  697. // Calculate the total difficulty of the block
  698. ptd := self.GetTd(block.ParentHash(), block.NumberU64()-1)
  699. if ptd == nil {
  700. return NonStatTy, ParentError(block.ParentHash())
  701. }
  702. // Make sure no inconsistent state is leaked during insertion
  703. self.mu.Lock()
  704. defer self.mu.Unlock()
  705. localTd := self.GetTd(self.currentBlock.Hash(), self.currentBlock.NumberU64())
  706. externTd := new(big.Int).Add(block.Difficulty(), ptd)
  707. // Irrelevant of the canonical status, write the block itself to the database
  708. if err := self.hc.WriteTd(block.Hash(), block.NumberU64(), externTd); err != nil {
  709. glog.Fatalf("failed to write block total difficulty: %v", err)
  710. }
  711. if err := WriteBlock(self.chainDb, block); err != nil {
  712. glog.Fatalf("failed to write block contents: %v", err)
  713. }
  714. // If the total difficulty is higher than our known, add it to the canonical chain
  715. // Second clause in the if statement reduces the vulnerability to selfish mining.
  716. // Please refer to http://www.cs.cornell.edu/~ie53/publications/btcProcFC.pdf
  717. if externTd.Cmp(localTd) > 0 || (externTd.Cmp(localTd) == 0 && mrand.Float64() < 0.5) {
  718. // Reorganise the chain if the parent is not the head block
  719. if block.ParentHash() != self.currentBlock.Hash() {
  720. if err := self.reorg(self.currentBlock, block); err != nil {
  721. return NonStatTy, err
  722. }
  723. }
  724. self.insert(block) // Insert the block as the new head of the chain
  725. status = CanonStatTy
  726. } else {
  727. status = SideStatTy
  728. }
  729. self.futureBlocks.Remove(block.Hash())
  730. return
  731. }
  732. // InsertChain will attempt to insert the given chain in to the canonical chain or, otherwise, create a fork. It an error is returned
  733. // it will return the index number of the failing block as well an error describing what went wrong (for possible errors see core/errors.go).
  734. func (self *BlockChain) InsertChain(chain types.Blocks) (int, error) {
  735. self.wg.Add(1)
  736. defer self.wg.Done()
  737. self.chainmu.Lock()
  738. defer self.chainmu.Unlock()
  739. // A queued approach to delivering events. This is generally
  740. // faster than direct delivery and requires much less mutex
  741. // acquiring.
  742. var (
  743. stats = insertStats{startTime: time.Now()}
  744. events = make([]interface{}, 0, len(chain))
  745. coalescedLogs vm.Logs
  746. nonceChecked = make([]bool, len(chain))
  747. )
  748. // Start the parallel nonce verifier.
  749. nonceAbort, nonceResults := verifyNoncesFromBlocks(self.pow, chain)
  750. defer close(nonceAbort)
  751. for i, block := range chain {
  752. if atomic.LoadInt32(&self.procInterrupt) == 1 {
  753. glog.V(logger.Debug).Infoln("Premature abort during block chain processing")
  754. break
  755. }
  756. bstart := time.Now()
  757. // Wait for block i's nonce to be verified before processing
  758. // its state transition.
  759. for !nonceChecked[i] {
  760. r := <-nonceResults
  761. nonceChecked[r.index] = true
  762. if !r.valid {
  763. block := chain[r.index]
  764. return r.index, &BlockNonceErr{Hash: block.Hash(), Number: block.Number(), Nonce: block.Nonce()}
  765. }
  766. }
  767. if BadHashes[block.Hash()] {
  768. err := BadHashError(block.Hash())
  769. reportBlock(block, err)
  770. return i, err
  771. }
  772. // Stage 1 validation of the block using the chain's validator
  773. // interface.
  774. err := self.Validator().ValidateBlock(block)
  775. if err != nil {
  776. if IsKnownBlockErr(err) {
  777. stats.ignored++
  778. continue
  779. }
  780. if err == BlockFutureErr {
  781. // Allow up to MaxFuture second in the future blocks. If this limit
  782. // is exceeded the chain is discarded and processed at a later time
  783. // if given.
  784. max := big.NewInt(time.Now().Unix() + maxTimeFutureBlocks)
  785. if block.Time().Cmp(max) == 1 {
  786. return i, fmt.Errorf("%v: BlockFutureErr, %v > %v", BlockFutureErr, block.Time(), max)
  787. }
  788. self.futureBlocks.Add(block.Hash(), block)
  789. stats.queued++
  790. continue
  791. }
  792. if IsParentErr(err) && self.futureBlocks.Contains(block.ParentHash()) {
  793. self.futureBlocks.Add(block.Hash(), block)
  794. stats.queued++
  795. continue
  796. }
  797. reportBlock(block, err)
  798. return i, err
  799. }
  800. // Create a new statedb using the parent block and report an
  801. // error if it fails.
  802. switch {
  803. case i == 0:
  804. err = self.stateCache.Reset(self.GetBlock(block.ParentHash(), block.NumberU64()-1).Root())
  805. default:
  806. err = self.stateCache.Reset(chain[i-1].Root())
  807. }
  808. if err != nil {
  809. reportBlock(block, err)
  810. return i, err
  811. }
  812. // Process block using the parent state as reference point.
  813. receipts, logs, usedGas, err := self.processor.Process(block, self.stateCache, vm.Config{})
  814. if err != nil {
  815. reportBlock(block, err)
  816. return i, err
  817. }
  818. // Validate the state using the default validator
  819. err = self.Validator().ValidateState(block, self.GetBlock(block.ParentHash(), block.NumberU64()-1), self.stateCache, receipts, usedGas)
  820. if err != nil {
  821. reportBlock(block, err)
  822. return i, err
  823. }
  824. // Write state changes to database
  825. _, err = self.stateCache.Commit(self.config.IsEIP158(block.Number()))
  826. if err != nil {
  827. return i, err
  828. }
  829. // coalesce logs for later processing
  830. coalescedLogs = append(coalescedLogs, logs...)
  831. if err := WriteBlockReceipts(self.chainDb, block.Hash(), block.NumberU64(), receipts); err != nil {
  832. return i, err
  833. }
  834. // write the block to the chain and get the status
  835. status, err := self.WriteBlock(block)
  836. if err != nil {
  837. return i, err
  838. }
  839. switch status {
  840. case CanonStatTy:
  841. if glog.V(logger.Debug) {
  842. glog.Infof("inserted block #%d [%x…] in %9v: %3d txs %7v gas %d uncles.", block.Number(), block.Hash().Bytes()[0:4], common.PrettyDuration(time.Since(bstart)), len(block.Transactions()), block.GasUsed(), len(block.Uncles()))
  843. }
  844. blockInsertTimer.UpdateSince(bstart)
  845. events = append(events, ChainEvent{block, block.Hash(), logs})
  846. // This puts transactions in a extra db for rpc
  847. if err := WriteTransactions(self.chainDb, block); err != nil {
  848. return i, err
  849. }
  850. // store the receipts
  851. if err := WriteReceipts(self.chainDb, receipts); err != nil {
  852. return i, err
  853. }
  854. // Write map map bloom filters
  855. if err := WriteMipmapBloom(self.chainDb, block.NumberU64(), receipts); err != nil {
  856. return i, err
  857. }
  858. case SideStatTy:
  859. if glog.V(logger.Detail) {
  860. glog.Infof("inserted forked block #%d [%x…] (TD=%v) in %9v: %3d txs %d uncles.", block.Number(), block.Hash().Bytes()[0:4], block.Difficulty(), common.PrettyDuration(time.Since(bstart)), len(block.Transactions()), len(block.Uncles()))
  861. }
  862. blockInsertTimer.UpdateSince(bstart)
  863. events = append(events, ChainSideEvent{block, logs})
  864. case SplitStatTy:
  865. events = append(events, ChainSplitEvent{block, logs})
  866. }
  867. stats.processed++
  868. if glog.V(logger.Info) {
  869. stats.usedGas += usedGas.Uint64()
  870. stats.report(chain, i)
  871. }
  872. }
  873. go self.postChainEvents(events, coalescedLogs)
  874. return 0, nil
  875. }
  876. // insertStats tracks and reports on block insertion.
  877. type insertStats struct {
  878. queued, processed, ignored int
  879. usedGas uint64
  880. lastIndex int
  881. startTime time.Time
  882. }
  883. // statsReportLimit is the time limit during import after which we always print
  884. // out progress. This avoids the user wondering what's going on.
  885. const statsReportLimit = 8 * time.Second
  886. // report prints statistics if some number of blocks have been processed
  887. // or more than a few seconds have passed since the last message.
  888. func (st *insertStats) report(chain []*types.Block, index int) {
  889. // Fetch the timings for the batch
  890. var (
  891. now = time.Now()
  892. elapsed = now.Sub(st.startTime)
  893. )
  894. if elapsed == 0 { // Yes Windows, I'm looking at you
  895. elapsed = 1
  896. }
  897. // If we're at the last block of the batch or report period reached, log
  898. if index == len(chain)-1 || elapsed >= statsReportLimit {
  899. start, end := chain[st.lastIndex], chain[index]
  900. txcount := countTransactions(chain[st.lastIndex : index+1])
  901. extra := ""
  902. if st.queued > 0 || st.ignored > 0 {
  903. extra = fmt.Sprintf(" (%d queued %d ignored)", st.queued, st.ignored)
  904. }
  905. hashes := ""
  906. if st.processed > 1 {
  907. hashes = fmt.Sprintf("%x… / %x…", start.Hash().Bytes()[:4], end.Hash().Bytes()[:4])
  908. } else {
  909. hashes = fmt.Sprintf("%x…", end.Hash().Bytes()[:4])
  910. }
  911. glog.Infof("imported %d blocks, %5d txs (%7.3f Mg) in %9v (%6.3f Mg/s). #%v [%s]%s", st.processed, txcount, float64(st.usedGas)/1000000, common.PrettyDuration(elapsed), float64(st.usedGas)*1000/float64(elapsed), end.Number(), hashes, extra)
  912. *st = insertStats{startTime: now, lastIndex: index}
  913. }
  914. }
  915. func countTransactions(chain []*types.Block) (c int) {
  916. for _, b := range chain {
  917. c += len(b.Transactions())
  918. }
  919. return c
  920. }
  921. // reorgs takes two blocks, an old chain and a new chain and will reconstruct the blocks and inserts them
  922. // to be part of the new canonical chain and accumulates potential missing transactions and post an
  923. // event about them
  924. func (self *BlockChain) reorg(oldBlock, newBlock *types.Block) error {
  925. var (
  926. newChain types.Blocks
  927. oldChain types.Blocks
  928. commonBlock *types.Block
  929. oldStart = oldBlock
  930. newStart = newBlock
  931. deletedTxs types.Transactions
  932. deletedLogs vm.Logs
  933. deletedLogsByHash = make(map[common.Hash]vm.Logs)
  934. // collectLogs collects the logs that were generated during the
  935. // processing of the block that corresponds with the given hash.
  936. // These logs are later announced as deleted.
  937. collectLogs = func(h common.Hash) {
  938. // Coalesce logs
  939. receipts := GetBlockReceipts(self.chainDb, h, self.hc.GetBlockNumber(h))
  940. for _, receipt := range receipts {
  941. deletedLogs = append(deletedLogs, receipt.Logs...)
  942. deletedLogsByHash[h] = receipt.Logs
  943. }
  944. }
  945. )
  946. // first reduce whoever is higher bound
  947. if oldBlock.NumberU64() > newBlock.NumberU64() {
  948. // reduce old chain
  949. for ; oldBlock != nil && oldBlock.NumberU64() != newBlock.NumberU64(); oldBlock = self.GetBlock(oldBlock.ParentHash(), oldBlock.NumberU64()-1) {
  950. oldChain = append(oldChain, oldBlock)
  951. deletedTxs = append(deletedTxs, oldBlock.Transactions()...)
  952. collectLogs(oldBlock.Hash())
  953. }
  954. } else {
  955. // reduce new chain and append new chain blocks for inserting later on
  956. for ; newBlock != nil && newBlock.NumberU64() != oldBlock.NumberU64(); newBlock = self.GetBlock(newBlock.ParentHash(), newBlock.NumberU64()-1) {
  957. newChain = append(newChain, newBlock)
  958. }
  959. }
  960. if oldBlock == nil {
  961. return fmt.Errorf("Invalid old chain")
  962. }
  963. if newBlock == nil {
  964. return fmt.Errorf("Invalid new chain")
  965. }
  966. numSplit := newBlock.Number()
  967. for {
  968. if oldBlock.Hash() == newBlock.Hash() {
  969. commonBlock = oldBlock
  970. break
  971. }
  972. oldChain = append(oldChain, oldBlock)
  973. newChain = append(newChain, newBlock)
  974. deletedTxs = append(deletedTxs, oldBlock.Transactions()...)
  975. collectLogs(oldBlock.Hash())
  976. oldBlock, newBlock = self.GetBlock(oldBlock.ParentHash(), oldBlock.NumberU64()-1), self.GetBlock(newBlock.ParentHash(), newBlock.NumberU64()-1)
  977. if oldBlock == nil {
  978. return fmt.Errorf("Invalid old chain")
  979. }
  980. if newBlock == nil {
  981. return fmt.Errorf("Invalid new chain")
  982. }
  983. }
  984. if glog.V(logger.Debug) {
  985. commonHash := commonBlock.Hash()
  986. glog.Infof("Chain split detected @ %x. Reorganising chain from #%v %x to %x", commonHash[:4], numSplit, oldStart.Hash().Bytes()[:4], newStart.Hash().Bytes()[:4])
  987. }
  988. var addedTxs types.Transactions
  989. // insert blocks. Order does not matter. Last block will be written in ImportChain itself which creates the new head properly
  990. for _, block := range newChain {
  991. // insert the block in the canonical way, re-writing history
  992. self.insert(block)
  993. // write canonical receipts and transactions
  994. if err := WriteTransactions(self.chainDb, block); err != nil {
  995. return err
  996. }
  997. receipts := GetBlockReceipts(self.chainDb, block.Hash(), block.NumberU64())
  998. // write receipts
  999. if err := WriteReceipts(self.chainDb, receipts); err != nil {
  1000. return err
  1001. }
  1002. // Write map map bloom filters
  1003. if err := WriteMipmapBloom(self.chainDb, block.NumberU64(), receipts); err != nil {
  1004. return err
  1005. }
  1006. addedTxs = append(addedTxs, block.Transactions()...)
  1007. }
  1008. // calculate the difference between deleted and added transactions
  1009. diff := types.TxDifference(deletedTxs, addedTxs)
  1010. // When transactions get deleted from the database that means the
  1011. // receipts that were created in the fork must also be deleted
  1012. for _, tx := range diff {
  1013. DeleteReceipt(self.chainDb, tx.Hash())
  1014. DeleteTransaction(self.chainDb, tx.Hash())
  1015. }
  1016. // Must be posted in a goroutine because of the transaction pool trying
  1017. // to acquire the chain manager lock
  1018. if len(diff) > 0 {
  1019. go self.eventMux.Post(RemovedTransactionEvent{diff})
  1020. }
  1021. if len(deletedLogs) > 0 {
  1022. go self.eventMux.Post(RemovedLogsEvent{deletedLogs})
  1023. }
  1024. if len(oldChain) > 0 {
  1025. go func() {
  1026. for _, block := range oldChain {
  1027. self.eventMux.Post(ChainSideEvent{Block: block, Logs: deletedLogsByHash[block.Hash()]})
  1028. }
  1029. }()
  1030. }
  1031. return nil
  1032. }
  1033. // postChainEvents iterates over the events generated by a chain insertion and
  1034. // posts them into the event mux.
  1035. func (self *BlockChain) postChainEvents(events []interface{}, logs vm.Logs) {
  1036. // post event logs for further processing
  1037. self.eventMux.Post(logs)
  1038. for _, event := range events {
  1039. if event, ok := event.(ChainEvent); ok {
  1040. // We need some control over the mining operation. Acquiring locks and waiting for the miner to create new block takes too long
  1041. // and in most cases isn't even necessary.
  1042. if self.LastBlockHash() == event.Hash {
  1043. self.eventMux.Post(ChainHeadEvent{event.Block})
  1044. }
  1045. }
  1046. // Fire the insertion events individually too
  1047. self.eventMux.Post(event)
  1048. }
  1049. }
  1050. func (self *BlockChain) update() {
  1051. futureTimer := time.Tick(5 * time.Second)
  1052. for {
  1053. select {
  1054. case <-futureTimer:
  1055. self.procFutureBlocks()
  1056. case <-self.quit:
  1057. return
  1058. }
  1059. }
  1060. }
  1061. // reportBlock logs a bad block error.
  1062. func reportBlock(block *types.Block, err error) {
  1063. if glog.V(logger.Error) {
  1064. glog.Errorf("Bad block #%v (%s)\n", block.Number(), block.Hash().Hex())
  1065. glog.Errorf(" %v", err)
  1066. }
  1067. }
  1068. // InsertHeaderChain attempts to insert the given header chain in to the local
  1069. // chain, possibly creating a reorg. If an error is returned, it will return the
  1070. // index number of the failing header as well an error describing what went wrong.
  1071. //
  1072. // The verify parameter can be used to fine tune whether nonce verification
  1073. // should be done or not. The reason behind the optional check is because some
  1074. // of the header retrieval mechanisms already need to verify nonces, as well as
  1075. // because nonces can be verified sparsely, not needing to check each.
  1076. func (self *BlockChain) InsertHeaderChain(chain []*types.Header, checkFreq int) (int, error) {
  1077. // Make sure only one thread manipulates the chain at once
  1078. self.chainmu.Lock()
  1079. defer self.chainmu.Unlock()
  1080. self.wg.Add(1)
  1081. defer self.wg.Done()
  1082. whFunc := func(header *types.Header) error {
  1083. self.mu.Lock()
  1084. defer self.mu.Unlock()
  1085. _, err := self.hc.WriteHeader(header)
  1086. return err
  1087. }
  1088. return self.hc.InsertHeaderChain(chain, checkFreq, whFunc)
  1089. }
  1090. // writeHeader writes a header into the local chain, given that its parent is
  1091. // already known. If the total difficulty of the newly inserted header becomes
  1092. // greater than the current known TD, the canonical chain is re-routed.
  1093. //
  1094. // Note: This method is not concurrent-safe with inserting blocks simultaneously
  1095. // into the chain, as side effects caused by reorganisations cannot be emulated
  1096. // without the real blocks. Hence, writing headers directly should only be done
  1097. // in two scenarios: pure-header mode of operation (light clients), or properly
  1098. // separated header/block phases (non-archive clients).
  1099. func (self *BlockChain) writeHeader(header *types.Header) error {
  1100. self.wg.Add(1)
  1101. defer self.wg.Done()
  1102. self.mu.Lock()
  1103. defer self.mu.Unlock()
  1104. _, err := self.hc.WriteHeader(header)
  1105. return err
  1106. }
  1107. // CurrentHeader retrieves the current head header of the canonical chain. The
  1108. // header is retrieved from the HeaderChain's internal cache.
  1109. func (self *BlockChain) CurrentHeader() *types.Header {
  1110. self.mu.RLock()
  1111. defer self.mu.RUnlock()
  1112. return self.hc.CurrentHeader()
  1113. }
  1114. // GetTd retrieves a block's total difficulty in the canonical chain from the
  1115. // database by hash and number, caching it if found.
  1116. func (self *BlockChain) GetTd(hash common.Hash, number uint64) *big.Int {
  1117. return self.hc.GetTd(hash, number)
  1118. }
  1119. // GetTdByHash retrieves a block's total difficulty in the canonical chain from the
  1120. // database by hash, caching it if found.
  1121. func (self *BlockChain) GetTdByHash(hash common.Hash) *big.Int {
  1122. return self.hc.GetTdByHash(hash)
  1123. }
  1124. // GetHeader retrieves a block header from the database by hash and number,
  1125. // caching it if found.
  1126. func (self *BlockChain) GetHeader(hash common.Hash, number uint64) *types.Header {
  1127. return self.hc.GetHeader(hash, number)
  1128. }
  1129. // GetHeaderByHash retrieves a block header from the database by hash, caching it if
  1130. // found.
  1131. func (self *BlockChain) GetHeaderByHash(hash common.Hash) *types.Header {
  1132. return self.hc.GetHeaderByHash(hash)
  1133. }
  1134. // HasHeader checks if a block header is present in the database or not, caching
  1135. // it if present.
  1136. func (bc *BlockChain) HasHeader(hash common.Hash) bool {
  1137. return bc.hc.HasHeader(hash)
  1138. }
  1139. // GetBlockHashesFromHash retrieves a number of block hashes starting at a given
  1140. // hash, fetching towards the genesis block.
  1141. func (self *BlockChain) GetBlockHashesFromHash(hash common.Hash, max uint64) []common.Hash {
  1142. return self.hc.GetBlockHashesFromHash(hash, max)
  1143. }
  1144. // GetHeaderByNumber retrieves a block header from the database by number,
  1145. // caching it (associated with its hash) if found.
  1146. func (self *BlockChain) GetHeaderByNumber(number uint64) *types.Header {
  1147. return self.hc.GetHeaderByNumber(number)
  1148. }
  1149. // Config retrieves the blockchain's chain configuration.
  1150. func (self *BlockChain) Config() *params.ChainConfig { return self.config }