core, light: add canonical chain post-processor interface

This commit is contained in:
Zsolt Felfoldi 2017-03-05 16:52:03 +01:00
parent d18b509e40
commit 8bcf1c5ff2
4 changed files with 260 additions and 6 deletions

View file

@ -104,6 +104,8 @@ type BlockChain struct {
procInterrupt int32 // interrupt signaler for block processing procInterrupt int32 // interrupt signaler for block processing
wg sync.WaitGroup // chain processing wait group for shutting down wg sync.WaitGroup // chain processing wait group for shutting down
chainProcessors []ChainProcessor // NewHead function called under chain lock after a new head has been written to the db
engine consensus.Engine engine consensus.Engine
processor Processor // block processor interface processor Processor // block processor interface
validator Validator // block and state validator interface validator Validator // block and state validator interface
@ -168,6 +170,15 @@ func NewBlockChain(chainDb ethdb.Database, config *params.ChainConfig, engine co
return bc, nil return bc, nil
} }
// AddChainProcessor adds a new head callback function that will be
// called under chain lock after a new head has been written to the db
func (self *BlockChain) AddChainProcessor(cp ChainProcessor) {
self.chainmu.Lock()
self.chainProcessors = append(self.chainProcessors, cp)
cp.NewHead(self.hc.CurrentHeader().Number.Uint64(), false)
self.chainmu.Unlock()
}
func (self *BlockChain) getProcInterrupt() bool { func (self *BlockChain) getProcInterrupt() bool {
return atomic.LoadInt32(&self.procInterrupt) == 1 return atomic.LoadInt32(&self.procInterrupt) == 1
} }
@ -243,6 +254,7 @@ func (bc *BlockChain) SetHead(head uint64) error {
bc.mu.Lock() bc.mu.Lock()
defer bc.mu.Unlock() defer bc.mu.Unlock()
oldHead := bc.hc.CurrentHeader().Number.Uint64()
// Rewind the header chain, deleting all block bodies until then // Rewind the header chain, deleting all block bodies until then
delFn := func(hash common.Hash, num uint64) { delFn := func(hash common.Hash, num uint64) {
DeleteBody(bc.chainDb, hash, num) DeleteBody(bc.chainDb, hash, num)
@ -256,6 +268,11 @@ func (bc *BlockChain) SetHead(head uint64) error {
bc.blockCache.Purge() bc.blockCache.Purge()
bc.futureBlocks.Purge() bc.futureBlocks.Purge()
if head < oldHead {
for _, cp := range bc.chainProcessors {
cp.NewHead(head, true)
}
}
// Rewind the block chain, ensuring we don't end up with a stateless head block // Rewind the block chain, ensuring we don't end up with a stateless head block
if bc.currentBlock != nil && currentHeader.Number.Uint64() < bc.currentBlock.NumberU64() { if bc.currentBlock != nil && currentHeader.Number.Uint64() < bc.currentBlock.NumberU64() {
bc.currentBlock = bc.GetBlock(currentHeader.Hash(), currentHeader.Number.Uint64()) bc.currentBlock = bc.GetBlock(currentHeader.Hash(), currentHeader.Number.Uint64())
@ -637,12 +654,15 @@ func (self *BlockChain) Rollback(chain []common.Hash) {
self.mu.Lock() self.mu.Lock()
defer self.mu.Unlock() defer self.mu.Unlock()
var rollbackHead *types.Header
for i := len(chain) - 1; i >= 0; i-- { for i := len(chain) - 1; i >= 0; i-- {
hash := chain[i] hash := chain[i]
currentHeader := self.hc.CurrentHeader() currentHeader := self.hc.CurrentHeader()
if currentHeader.Hash() == hash { if currentHeader.Hash() == hash {
self.hc.SetCurrentHeader(self.GetHeader(currentHeader.ParentHash, currentHeader.Number.Uint64()-1)) rollbackHead = self.GetHeader(currentHeader.ParentHash, currentHeader.Number.Uint64()-1)
self.hc.SetCurrentHeader(rollbackHead)
} }
if self.currentFastBlock.Hash() == hash { if self.currentFastBlock.Hash() == hash {
self.currentFastBlock = self.GetBlock(self.currentFastBlock.ParentHash(), self.currentFastBlock.NumberU64()-1) self.currentFastBlock = self.GetBlock(self.currentFastBlock.ParentHash(), self.currentFastBlock.NumberU64()-1)
@ -653,6 +673,12 @@ func (self *BlockChain) Rollback(chain []common.Hash) {
WriteHeadBlockHash(self.chainDb, self.currentBlock.Hash()) WriteHeadBlockHash(self.chainDb, self.currentBlock.Hash())
} }
} }
if rollbackHead != nil {
for _, cp := range self.chainProcessors {
cp.NewHead(rollbackHead.Number.Uint64(), true)
}
}
} }
// SetReceiptsData computes all the non-consensus fields of the receipts // SetReceiptsData computes all the non-consensus fields of the receipts
@ -1316,7 +1342,16 @@ func (self *BlockChain) InsertHeaderChain(chain []*types.Header, checkFreq int)
self.mu.Lock() self.mu.Lock()
defer self.mu.Unlock() defer self.mu.Unlock()
_, err := self.hc.WriteHeader(header) _, err := self.hc.WriteHeader(header, func(head *types.Header) {
for _, cp := range self.chainProcessors {
cp.NewHead(head.Number.Uint64(), true)
}
})
for _, cp := range self.chainProcessors {
cp.NewHead(header.Number.Uint64(), false)
}
return err return err
} }
@ -1339,7 +1374,7 @@ func (self *BlockChain) writeHeader(header *types.Header) error {
self.mu.Lock() self.mu.Lock()
defer self.mu.Unlock() defer self.mu.Unlock()
_, err := self.hc.WriteHeader(header) _, err := self.hc.WriteHeader(header, nil)
return err return err
} }

176
core/chain_processor.go Normal file
View file

@ -0,0 +1,176 @@
// Copyright 2017 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
// Package core implements the Ethereum consensus protocol.
package core
import (
"sync"
"time"
)
// ChainProcessor is an external process that creates auxiliary data structures
// using the canonical chain as an input. Its callback function NewHead is called every
// time a new head is added to the chain or it gets rolled back. The callback function
// should never block because it is called under the chain's mutex lock so that the
// structures can stay consistent with the canonical chain.
// The same interface can be used for chaining processors (one using the output of the
// other).
type ChainProcessor interface {
NewHead(headNum uint64, rollBack bool)
}
// ChainSectionProcessor is a ChainProcessor that does a post-processing job for
// equally sized sections of the canonical chain (like BlooomBits and CHT structures).
// Further child ChainProcessors can be added which use the output of this section
// processor. These child processors receive NewHead calls only after an entire section
// has been finished or in case of rollbacks that might affect already finished sections.
type ChainSectionProcessor struct {
backend ChainSectionProcessorBackend
sectionSize, confirmReq uint64
stop chan struct{}
updateChn chan uint64
lock sync.Mutex
calcValid bool
procWait time.Duration
stored, calcIdx, lastForwarded uint64
childProcessors []ChainProcessor
}
// ChainSectionProcessorBackend does the actual post-processing job.
// GetStored and SetStored are called under the canonical chain lock and should
// not block. Process is called without a chain lock and may take longer to
// finish. If the chain gets rolled back while Process is running, the results
// are considered invalid and SetStored is not called.
type ChainSectionProcessorBackend interface {
Process(idx uint64) bool
GetStored() uint64
SetStored(count uint64)
}
// NewChainSectionProcessor creates a new ChainSectionProcessor
func NewChainSectionProcessor(backend ChainSectionProcessorBackend, sectionSize, confirmReq uint64, procWait time.Duration, stop chan struct{}) *ChainSectionProcessor {
csp := &ChainSectionProcessor{
backend: backend,
sectionSize: sectionSize,
confirmReq: confirmReq,
stop: stop,
procWait: procWait,
updateChn: make(chan uint64, 100),
stored: backend.GetStored(),
}
go csp.updateLoop()
return csp
}
func (csp *ChainSectionProcessor) updateLoop() {
tryUpdate := make(chan struct{}, 1)
updating := false
var targetCnt uint64
for {
select {
case <-csp.stop:
return
case targetCnt = <-csp.updateChn:
if !updating {
updating = true
tryUpdate <- struct{}{}
}
case <-tryUpdate:
csp.lock.Lock()
if targetCnt > csp.stored {
csp.calcValid = true
csp.calcIdx = csp.stored
csp.lock.Unlock()
ok := csp.backend.Process(csp.calcIdx)
csp.lock.Lock()
if ok && csp.calcValid {
csp.stored = csp.calcIdx + 1
csp.backend.SetStored(csp.stored)
csp.lastForwarded = csp.stored*csp.sectionSize - 1
for _, cp := range csp.childProcessors {
cp.NewHead(csp.lastForwarded, false)
}
}
csp.calcValid = false
}
stored := csp.stored
csp.lock.Unlock()
if targetCnt > stored {
go func() {
time.Sleep(csp.procWait)
tryUpdate <- struct{}{}
}()
} else {
updating = false
}
}
}
}
// NewHead implements the ChainProcessor interface
func (csp *ChainSectionProcessor) NewHead(headNum uint64, rollback bool) {
csp.lock.Lock()
defer csp.lock.Unlock()
if rollback {
firstChanged := headNum / csp.sectionSize
if firstChanged <= csp.calcIdx {
csp.calcValid = false
}
if firstChanged < csp.stored {
csp.stored = firstChanged
csp.backend.SetStored(csp.stored)
select {
case <-csp.stop:
case csp.updateChn <- firstChanged:
}
}
if headNum < csp.lastForwarded {
csp.lastForwarded = headNum
for _, cp := range csp.childProcessors {
cp.NewHead(csp.lastForwarded, true)
}
}
} else {
var newCount uint64
if headNum >= csp.confirmReq {
newCount = (headNum + 1 - csp.confirmReq) / csp.sectionSize
if newCount > csp.stored {
go func() {
select {
case <-csp.stop:
case csp.updateChn <- newCount:
}
}()
}
}
}
}
// AddChildProcessor adds a child ChainProcessor that can use the output of this
// section processor.
func (csp *ChainSectionProcessor) AddChildProcessor(cp ChainProcessor) {
csp.childProcessors = append(csp.childProcessors, cp)
}

View file

@ -119,6 +119,10 @@ func (hc *HeaderChain) GetBlockNumber(hash common.Hash) uint64 {
return number return number
} }
// ReorgCallback is a callback function to be called in case of a chain reorg.
// The parameter is the header of the last unchanged canonical block.
type ReorgCallback func(*types.Header)
// WriteHeader writes a header into the local chain, given that its parent is // WriteHeader writes a header into the local chain, given that its parent is
// already known. If the total difficulty of the newly inserted header becomes // already known. If the total difficulty of the newly inserted header becomes
// greater than the current known TD, the canonical chain is re-routed. // greater than the current known TD, the canonical chain is re-routed.
@ -128,7 +132,7 @@ func (hc *HeaderChain) GetBlockNumber(hash common.Hash) uint64 {
// without the real blocks. Hence, writing headers directly should only be done // without the real blocks. Hence, writing headers directly should only be done
// in two scenarios: pure-header mode of operation (light clients), or properly // in two scenarios: pure-header mode of operation (light clients), or properly
// separated header/block phases (non-archive clients). // separated header/block phases (non-archive clients).
func (hc *HeaderChain) WriteHeader(header *types.Header) (status WriteStatus, err error) { func (hc *HeaderChain) WriteHeader(header *types.Header, reorgCallback ReorgCallback) (status WriteStatus, err error) {
// Cache some values to prevent constant recalculation // Cache some values to prevent constant recalculation
var ( var (
hash = header.Hash() hash = header.Hash()
@ -174,6 +178,11 @@ func (hc *HeaderChain) WriteHeader(header *types.Header) (status WriteStatus, er
headNumber = headHeader.Number.Uint64() - 1 headNumber = headHeader.Number.Uint64() - 1
headHeader = hc.GetHeader(headHash, headNumber) headHeader = hc.GetHeader(headHash, headNumber)
} }
if reorgCallback != nil && headNumber < hc.currentHeader.Number.Uint64() {
reorgCallback(headHeader)
}
// Extend the canonical chain with the new header // Extend the canonical chain with the new header
if err := WriteCanonicalHash(hc.chainDb, hash, number); err != nil { if err := WriteCanonicalHash(hc.chainDb, hash, number); err != nil {
log.Crit("Failed to insert header number", "err", err) log.Crit("Failed to insert header number", "err", err)

View file

@ -64,6 +64,8 @@ type LightChain struct {
procInterrupt int32 // interrupt signaler for block processing procInterrupt int32 // interrupt signaler for block processing
wg sync.WaitGroup wg sync.WaitGroup
chainProcessors []core.ChainProcessor // NewHead function called under chain lock after a new head has been written to the db
engine consensus.Engine engine consensus.Engine
} }
@ -114,6 +116,15 @@ func NewLightChain(odr OdrBackend, config *params.ChainConfig, engine consensus.
return bc, nil return bc, nil
} }
// AddChainProcessor adds a new head callback function that will be
// called under chain lock after a new head has been written to the db
func (self *LightChain) AddChainProcessor(cp core.ChainProcessor) {
self.chainmu.Lock()
self.chainProcessors = append(self.chainProcessors, cp)
cp.NewHead(self.hc.CurrentHeader().Number.Uint64(), false)
self.chainmu.Unlock()
}
func (self *LightChain) getProcInterrupt() bool { func (self *LightChain) getProcInterrupt() bool {
return atomic.LoadInt32(&self.procInterrupt) == 1 return atomic.LoadInt32(&self.procInterrupt) == 1
} }
@ -149,7 +160,13 @@ func (bc *LightChain) SetHead(head uint64) {
bc.mu.Lock() bc.mu.Lock()
defer bc.mu.Unlock() defer bc.mu.Unlock()
oldHead := bc.hc.CurrentHeader().Number.Uint64()
bc.hc.SetHead(head, nil) bc.hc.SetHead(head, nil)
if head < oldHead {
for _, cp := range bc.chainProcessors {
cp.NewHead(head, true)
}
}
bc.loadLastState() bc.loadLastState()
} }
@ -312,11 +329,20 @@ func (self *LightChain) Rollback(chain []common.Hash) {
self.mu.Lock() self.mu.Lock()
defer self.mu.Unlock() defer self.mu.Unlock()
var rollbackHead *types.Header
for i := len(chain) - 1; i >= 0; i-- { for i := len(chain) - 1; i >= 0; i-- {
hash := chain[i] hash := chain[i]
if head := self.hc.CurrentHeader(); head.Hash() == hash { if head := self.hc.CurrentHeader(); head.Hash() == hash {
self.hc.SetCurrentHeader(self.GetHeader(head.ParentHash, head.Number.Uint64()-1)) rollbackHead = self.GetHeader(head.ParentHash, head.Number.Uint64()-1)
self.hc.SetCurrentHeader(rollbackHead)
}
}
if rollbackHead != nil {
for _, cp := range self.chainProcessors {
cp.NewHead(rollbackHead.Number.Uint64(), true)
} }
} }
} }
@ -367,7 +393,15 @@ func (self *LightChain) InsertHeaderChain(chain []*types.Header, checkFreq int)
self.mu.Lock() self.mu.Lock()
defer self.mu.Unlock() defer self.mu.Unlock()
status, err := self.hc.WriteHeader(header) status, err := self.hc.WriteHeader(header, func(head *types.Header) {
for _, cp := range self.chainProcessors {
cp.NewHead(head.Number.Uint64(), true)
}
})
for _, cp := range self.chainProcessors {
cp.NewHead(header.Number.Uint64(), false)
}
switch status { switch status {
case core.CanonStatTy: case core.CanonStatTy: