sync.go 3.3 KB
Newer Older
1 2 3 4
package eth

import (
	"math"
5
	"sync/atomic"
6 7 8 9 10 11 12 13 14 15
	"time"

	"github.com/ethereum/go-ethereum/eth/downloader"
	"github.com/ethereum/go-ethereum/logger"
	"github.com/ethereum/go-ethereum/logger/glog"
)

// Sync contains all synchronisation code for the eth protocol

func (pm *ProtocolManager) update() {
16 17
	forceSync := time.Tick(forceSyncCycle)
	blockProc := time.Tick(blockProcCycle)
18
	blockProcPend := int32(0)
O
obscuren 已提交
19

20 21 22 23 24 25 26
	for {
		select {
		case <-pm.newPeerCh:
			// Meet the `minDesiredPeerCount` before we select our best peer
			if len(pm.peers) < minDesiredPeerCount {
				break
			}
27
			// Find the best peer and synchronise with it
28 29
			peer := getBestPeer(pm.peers)
			if peer == nil {
30
				glog.V(logger.Debug).Infoln("Sync attempt canceled. No peers available")
31
			}
32
			go pm.synchronise(peer)
33

34 35
		case <-forceSync:
			// Force a sync even if not enough peers are present
36
			if peer := getBestPeer(pm.peers); peer != nil {
37
				go pm.synchronise(peer)
38
			}
39 40
		case <-blockProc:
			// Try to pull some blocks from the downloaded
41 42
			if atomic.CompareAndSwapInt32(&blockProcPend, 0, 1) {
				go func() {
43
					pm.processBlocks()
44 45 46
					atomic.StoreInt32(&blockProcPend, 0)
				}()
			}
47

48
		case <-pm.quitSync:
O
obscuren 已提交
49
			return
50 51 52 53 54 55 56 57 58 59 60 61
		}
	}
}

// processBlocks will attempt to reconstruct a chain by checking the first item and check if it's
// a known parent. The first block in the chain may be unknown during downloading. When the
// downloader isn't downloading blocks will be dropped with an unknown parent until either it
// has depleted the list or found a known parent.
func (pm *ProtocolManager) processBlocks() error {
	pm.wg.Add(1)
	defer pm.wg.Done()

62 63
	// Short circuit if no blocks are available for insertion
	blocks := pm.downloader.TakeBlocks()
64 65 66 67 68 69 70 71 72
	if len(blocks) == 0 {
		return nil
	}
	glog.V(logger.Debug).Infof("Inserting chain with %d blocks (#%v - #%v)\n", len(blocks), blocks[0].Number(), blocks[len(blocks)-1].Number())

	for len(blocks) != 0 && !pm.quit {
		max := int(math.Min(float64(len(blocks)), float64(blockProcAmount)))
		_, err := pm.chainman.InsertChain(blocks[:max])
		if err != nil {
73
			glog.V(logger.Warn).Infof("Block insertion failed: %v", err)
74
			pm.downloader.Cancel()
75 76 77 78 79 80 81
			return err
		}
		blocks = blocks[max:]
	}
	return nil
}

82
func (pm *ProtocolManager) synchronise(peer *peer) {
83 84 85 86
	// Make sure the peer's TD is higher than our own. If not drop.
	if peer.td.Cmp(pm.chainman.Td()) <= 0 {
		return
	}
87 88 89 90 91 92
	// FIXME if we have the hash in our chain and the TD of the peer is
	// much higher than ours, something is wrong with us or the peer.
	// Check if the hash is on our own chain
	if pm.chainman.HasBlock(peer.recentHash) {
		return
	}
93
	// Get the hashes from the peer (synchronously)
94 95 96 97 98 99 100 101 102 103
	glog.V(logger.Debug).Infof("Attempting synchronisation: %v, 0x%x", peer.id, peer.recentHash)

	err := pm.downloader.Synchronise(peer.id, peer.recentHash)
	switch err {
	case nil:
		glog.V(logger.Debug).Infof("Synchronisation completed")

	case downloader.ErrBusy:
		glog.V(logger.Debug).Infof("Synchronisation already in progress")

104
	case downloader.ErrTimeout, downloader.ErrBadPeer, downloader.ErrInvalidChain, downloader.ErrCrossCheckFailed:
105
		glog.V(logger.Debug).Infof("Removing peer %v: %v", peer.id, err)
106
		pm.removePeer(peer)
107

108 109
	case downloader.ErrPendingQueue:
		glog.V(logger.Debug).Infoln("Synchronisation aborted:", err)
110

111 112
	default:
		glog.V(logger.Warn).Infof("Synchronisation failed: %v", err)
113 114
	}
}