github.com/bigzoro/my_simplechain@v0.0.0-20240315012955-8ad0a2a29bb9/eth/sync.go (about) 1 // Copyright 2015 The go-simplechain Authors 2 // This file is part of the go-simplechain library. 3 // 4 // The go-simplechain 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-simplechain 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-simplechain library. If not, see <http://www.gnu.org/licenses/>. 16 17 package eth 18 19 import ( 20 "math/rand" 21 "sync/atomic" 22 "time" 23 24 "github.com/bigzoro/my_simplechain/common" 25 "github.com/bigzoro/my_simplechain/core/types" 26 "github.com/bigzoro/my_simplechain/eth/downloader" 27 "github.com/bigzoro/my_simplechain/log" 28 "github.com/bigzoro/my_simplechain/p2p/enode" 29 ) 30 31 const ( 32 forceSyncCycle = 10 * time.Second // Time interval to force syncs, even if few peers are available 33 minDesiredPeerCount = 5 // Amount of peers desired to start syncing 34 35 // This is the target size for the packs of transactions sent by txsyncLoop. 36 // A pack can get larger than this if a single transactions exceeds this size. 37 txsyncPackSize = 100 * 1024 38 ) 39 40 type txsync struct { 41 p *peer 42 txs []*types.Transaction 43 } 44 45 // syncTransactions starts sending all currently pending transactions to the given peer. 46 func (h *handler) syncTransactions(p *peer) { 47 var txs types.Transactions 48 pending, _ := h.txpool.Pending() 49 for _, batch := range pending { 50 txs = append(txs, batch...) 51 } 52 if len(txs) == 0 { 53 return 54 } 55 select { 56 case h.txsyncCh <- &txsync{p, txs}: 57 case <-h.quitSync: 58 } 59 } 60 61 // txsyncLoop takes care of the initial transaction sync for each new 62 // connection. When a new peer appears, we relay all currently pending 63 // transactions. In order to minimise egress bandwidth usage, we send 64 // the transactions in small packs to one peer at a time. 65 func (h *handler) txsyncLoop() { 66 var ( 67 pending = make(map[enode.ID]*txsync) 68 sending = false // whether a send is active 69 pack = new(txsync) // the pack that is being sent 70 done = make(chan error, 1) // result of the send 71 ) 72 73 // send starts a sending a pack of transactions from the sync. 74 send := func(s *txsync) { 75 // Fill pack with transactions up to the target size. 76 size := common.StorageSize(0) 77 pack.p = s.p 78 pack.txs = pack.txs[:0] 79 for i := 0; i < len(s.txs) && size < txsyncPackSize; i++ { 80 pack.txs = append(pack.txs, s.txs[i]) 81 size += s.txs[i].Size() 82 } 83 // Remove the transactions that will be sent. 84 s.txs = s.txs[:copy(s.txs, s.txs[len(pack.txs):])] 85 if len(s.txs) == 0 { 86 delete(pending, s.p.ID()) 87 } 88 // Send the pack in the background. 89 s.p.Log().Trace("Sending batch of transactions", "count", len(pack.txs), "bytes", size) 90 sending = true 91 go func() { done <- pack.p.SendTransactions(pack.txs) }() 92 } 93 94 // pick chooses the next pending sync. 95 pick := func() *txsync { 96 if len(pending) == 0 { 97 return nil 98 } 99 n := rand.Intn(len(pending)) + 1 100 for _, s := range pending { 101 if n--; n == 0 { 102 return s 103 } 104 } 105 return nil 106 } 107 108 for { 109 select { 110 case s := <-h.txsyncCh: 111 pending[s.p.ID()] = s 112 if !sending { 113 send(s) 114 } 115 case err := <-done: 116 sending = false 117 // Stop tracking peers that cause send failures. 118 if err != nil { 119 pack.p.Log().Debug("Transaction send failed", "err", err) 120 delete(pending, pack.p.ID()) 121 } 122 // Schedule the next send. 123 if s := pick(); s != nil { 124 send(s) 125 } 126 case <-h.quitSync: 127 return 128 } 129 } 130 } 131 132 // syncer is responsible for periodically synchronising with the network, both 133 // downloading hashes and blocks as well as handling the announcement handler. 134 func (h *handler) syncer() { 135 // Start and ensure cleanup of sync mechanisms 136 h.fetcher.Start() 137 defer h.fetcher.Stop() 138 defer h.downloader.Terminate() 139 140 // Wait for different events to fire synchronisation operations 141 forceSync := time.NewTicker(forceSyncCycle) 142 defer forceSync.Stop() 143 144 for { 145 select { 146 case <-h.newPeerCh: 147 // Make sure we have peers to select from, then sync 148 if h.peers.Len() < minDesiredPeerCount { 149 break 150 } 151 if !h.raftMode { 152 go h.synchronise(h.peers.BestPeer()) 153 } 154 155 case <-forceSync.C: 156 // Force a sync even if not enough peers are present 157 if !h.raftMode { 158 go h.synchronise(h.peers.BestPeer()) 159 } 160 161 case <-h.noMorePeers: 162 return 163 } 164 } 165 } 166 167 // synchronise tries to sync up our local block chain with a remote peer. 168 func (h *handler) synchronise(peer *peer) { 169 // Short circuit if no peers are available 170 if peer == nil { 171 return 172 } 173 // Make sure the peer's TD is higher than our own 174 currentBlock := h.blockchain.CurrentBlock() 175 td := h.blockchain.GetTd(currentBlock.Hash(), currentBlock.NumberU64()) 176 177 pHead, pTd := peer.Head() 178 if pTd.Cmp(td) <= 0 { 179 return 180 } 181 // Otherwise try to sync with the downloader 182 mode := downloader.FullSync 183 if atomic.LoadUint32(&h.fastSync) == 1 { 184 // Fast sync was explicitly requested, and explicitly granted 185 mode = downloader.FastSync 186 } 187 if mode == downloader.FastSync { 188 // Make sure the peer's total difficulty we are synchronizing is higher. 189 if h.blockchain.GetTdByHash(h.blockchain.CurrentFastBlock().Hash()).Cmp(pTd) >= 0 { 190 return 191 } 192 } 193 // Run the sync cycle, and disable fast sync if we've went past the pivot block 194 if err := h.downloader.Synchronise(peer.id, pHead, pTd, mode); err != nil { 195 return 196 } 197 if atomic.LoadUint32(&h.fastSync) == 1 { 198 log.Info("Fast sync complete, auto disabling") 199 atomic.StoreUint32(&h.fastSync, 0) 200 } 201 // If we've successfully finished a sync cycle and passed any required checkpoint, 202 // enable accepting transactions from the network. 203 head := h.blockchain.CurrentBlock() 204 if head.NumberU64() >= h.checkpointNumber { 205 // Checkpoint passed, sanity check the timestamp to have a fallback mechanism 206 // for non-checkpointed (number = 0) private networks. 207 if head.Time() >= uint64(time.Now().AddDate(0, -1, 0).Unix()) { 208 atomic.StoreUint32(&h.acceptTxs, 1) 209 } 210 } 211 if head.NumberU64() > 0 { 212 // We've completed a sync cycle, notify all peers of new state. This path is 213 // essential in star-topology networks where a gateway node needs to notify 214 // all its out-of-date peers of the availability of a new block. This failure 215 // scenario will most often crop up in private and hackathon networks with 216 // degenerate connectivity, but it should be healthy for the mainnet too to 217 // more reliably update peers or the local TD state. 218 go h.BroadcastBlock(head, false) 219 } 220 }