core, eth: verify td of received blocks
This commit is contained in:
parent
9b6e8f6195
commit
28b39267d9
@ -511,6 +511,10 @@ func (self *ChainManager) InsertChain(chain types.Blocks) (int, error) {
|
||||
if block == nil {
|
||||
continue
|
||||
}
|
||||
// Setting block.Td regardless of error (known for example) prevents errors down the line
|
||||
// in the protocol handler
|
||||
block.Td = new(big.Int).Set(CalculateTD(block, self.GetBlock(block.ParentHash())))
|
||||
|
||||
// Call in to the block processor and check for errors. It's likely that if one block fails
|
||||
// all others will fail too (unless a known block is returned).
|
||||
logs, err := self.processor.Process(block)
|
||||
@ -545,8 +549,6 @@ func (self *ChainManager) InsertChain(chain types.Blocks) (int, error) {
|
||||
return i, err
|
||||
}
|
||||
|
||||
block.Td = new(big.Int).Set(CalculateTD(block, self.GetBlock(block.ParentHash())))
|
||||
|
||||
self.mu.Lock()
|
||||
{
|
||||
cblock := self.currentBlock
|
||||
|
@ -125,6 +125,7 @@ func NewProtocolManager(protocolVersion, networkId int, mux *event.TypeMux, txpo
|
||||
func (pm *ProtocolManager) removePeer(peer *peer) {
|
||||
pm.pmu.Lock()
|
||||
defer pm.pmu.Unlock()
|
||||
pm.downloader.UnregisterPeer(peer.id)
|
||||
delete(pm.peers, peer.id)
|
||||
}
|
||||
|
||||
@ -223,7 +224,6 @@ func (pm *ProtocolManager) handle(p *peer) error {
|
||||
|
||||
pm.downloader.RegisterPeer(p.id, p.recentHash, p.requestHashes, p.requestBlocks)
|
||||
defer func() {
|
||||
pm.downloader.UnregisterPeer(p.id)
|
||||
pm.removePeer(p)
|
||||
}()
|
||||
|
||||
@ -392,6 +392,12 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
if err := self.verifyTd(p, request); err != nil {
|
||||
glog.V(logger.Error).Infoln(err)
|
||||
// XXX for now return nil so it won't disconnect (we should in the future)
|
||||
return nil
|
||||
}
|
||||
self.BroadcastBlock(hash, request.Block)
|
||||
} else {
|
||||
// adding blocks is synchronous
|
||||
@ -406,6 +412,10 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
|
||||
glog.V(logger.Detail).Infoln("downloader err:", err)
|
||||
return
|
||||
}
|
||||
if err := self.verifyTd(p, request); err != nil {
|
||||
glog.V(logger.Error).Infoln(err)
|
||||
return
|
||||
}
|
||||
self.BroadcastBlock(hash, request.Block)
|
||||
}()
|
||||
}
|
||||
@ -415,6 +425,16 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (pm *ProtocolManager) verifyTd(peer *peer, request newBlockMsgData) error {
|
||||
if request.Block.Td.Cmp(request.TD) != 0 {
|
||||
glog.V(logger.Detail).Infoln(peer)
|
||||
|
||||
return fmt.Errorf("invalid TD on block(%v) from peer(%s): block.td=%v, request.td=%v", request.Block.Number(), peer.id, request.Block.Td, request.TD)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// BroadcastBlock will propagate the block to its connected peers. It will sort
|
||||
// out which peers do not contain the block in their block set and will do a
|
||||
// sqrt(peers) to determine the amount of peers we broadcast to.
|
||||
|
Loading…
Reference in New Issue
Block a user