github.com/nitinawathare/ethereumassignment3@v0.0.0-20211021213010-f07344c2b868/go-ethereum/les/commons.go (about) 1 // Copyright 2018 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 17 package les 18 19 import ( 20 "fmt" 21 "math/big" 22 23 "github.com/ethereum/go-ethereum/common" 24 "github.com/ethereum/go-ethereum/core" 25 "github.com/ethereum/go-ethereum/eth" 26 "github.com/ethereum/go-ethereum/ethdb" 27 "github.com/ethereum/go-ethereum/light" 28 "github.com/ethereum/go-ethereum/p2p" 29 "github.com/ethereum/go-ethereum/p2p/enode" 30 "github.com/ethereum/go-ethereum/params" 31 ) 32 33 // lesCommons contains fields needed by both server and client. 34 type lesCommons struct { 35 config *eth.Config 36 iConfig *light.IndexerConfig 37 chainDb ethdb.Database 38 protocolManager *ProtocolManager 39 chtIndexer, bloomTrieIndexer *core.ChainIndexer 40 } 41 42 // NodeInfo represents a short summary of the Ethereum sub-protocol metadata 43 // known about the host peer. 44 type NodeInfo struct { 45 Network uint64 `json:"network"` // Ethereum network ID (1=Frontier, 2=Morden, Ropsten=3, Rinkeby=4) 46 Difficulty *big.Int `json:"difficulty"` // Total difficulty of the host's blockchain 47 Genesis common.Hash `json:"genesis"` // SHA3 hash of the host's genesis block 48 Config *params.ChainConfig `json:"config"` // Chain configuration for the fork rules 49 Head common.Hash `json:"head"` // SHA3 hash of the host's best owned block 50 CHT params.TrustedCheckpoint `json:"cht"` // Trused CHT checkpoint for fast catchup 51 } 52 53 // makeProtocols creates protocol descriptors for the given LES versions. 54 func (c *lesCommons) makeProtocols(versions []uint) []p2p.Protocol { 55 protos := make([]p2p.Protocol, len(versions)) 56 for i, version := range versions { 57 version := version 58 protos[i] = p2p.Protocol{ 59 Name: "les", 60 Version: version, 61 Length: ProtocolLengths[version], 62 NodeInfo: c.nodeInfo, 63 Run: func(p *p2p.Peer, rw p2p.MsgReadWriter) error { 64 return c.protocolManager.runPeer(version, p, rw) 65 }, 66 PeerInfo: func(id enode.ID) interface{} { 67 if p := c.protocolManager.peers.Peer(fmt.Sprintf("%x", id.Bytes())); p != nil { 68 return p.Info() 69 } 70 return nil 71 }, 72 } 73 } 74 return protos 75 } 76 77 // nodeInfo retrieves some protocol metadata about the running host node. 78 func (c *lesCommons) nodeInfo() interface{} { 79 var cht params.TrustedCheckpoint 80 sections, _, _ := c.chtIndexer.Sections() 81 sections2, _, _ := c.bloomTrieIndexer.Sections() 82 83 if sections2 < sections { 84 sections = sections2 85 } 86 if sections > 0 { 87 sectionIndex := sections - 1 88 sectionHead := c.bloomTrieIndexer.SectionHead(sectionIndex) 89 cht = params.TrustedCheckpoint{ 90 SectionIndex: sectionIndex, 91 SectionHead: sectionHead, 92 CHTRoot: light.GetChtRoot(c.chainDb, sectionIndex, sectionHead), 93 BloomRoot: light.GetBloomTrieRoot(c.chainDb, sectionIndex, sectionHead), 94 } 95 } 96 97 chain := c.protocolManager.blockchain 98 head := chain.CurrentHeader() 99 hash := head.Hash() 100 return &NodeInfo{ 101 Network: c.config.NetworkId, 102 Difficulty: chain.GetTd(hash, head.Number.Uint64()), 103 Genesis: chain.Genesis().Hash(), 104 Config: chain.Config(), 105 Head: chain.CurrentHeader().Hash(), 106 CHT: cht, 107 } 108 }