initial commit for eth-p2p integration
This commit is contained in:
127
eth/protocol.go
127
eth/protocol.go
@@ -20,7 +20,7 @@ type ethProtocol struct {
|
||||
peer *p2p.Peer
|
||||
id string
|
||||
rw p2p.MsgReadWriter
|
||||
}
|
||||
}
|
||||
|
||||
// backend is the interface the ethereum protocol backend should implement
|
||||
// used as an argument to EthProtocol
|
||||
@@ -68,6 +68,7 @@ type newBlockMsgData struct {
|
||||
|
||||
type getBlockHashesMsgData struct {
|
||||
Hash []byte
|
||||
<<<<<<< HEAD
|
||||
Amount uint64
|
||||
}
|
||||
|
||||
@@ -76,15 +77,29 @@ type getBlockHashesMsgData struct {
|
||||
// the Dev p2p layer then runs the protocol instance on each peer
|
||||
func EthProtocol(txPool txPool, chainManager chainManager, blockPool blockPool) p2p.Protocol {
|
||||
return p2p.Protocol{
|
||||
=======
|
||||
Amount uint32
|
||||
}
|
||||
|
||||
// main entrypoint, wrappers starting a server running the eth protocol
|
||||
// use this constructor to attach the protocol (class) to server caps
|
||||
func EthProtocol(eth backend) *p2p.Protocol {
|
||||
return &p2p.Protocol{
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
Name: "eth",
|
||||
Version: ProtocolVersion,
|
||||
Length: ProtocolLength,
|
||||
Run: func(peer *p2p.Peer, rw p2p.MsgReadWriter) error {
|
||||
<<<<<<< HEAD
|
||||
return runEthProtocol(txPool, chainManager, blockPool, peer, rw)
|
||||
=======
|
||||
return runEthProtocol(eth, peer, rw)
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
// the main loop that handles incoming messages
|
||||
// note RemovePeer in the post-disconnect hook
|
||||
func runEthProtocol(txPool txPool, chainManager chainManager, blockPool blockPool, peer *p2p.Peer, rw p2p.MsgReadWriter) (err error) {
|
||||
@@ -95,6 +110,13 @@ func runEthProtocol(txPool txPool, chainManager chainManager, blockPool blockPoo
|
||||
rw: rw,
|
||||
peer: peer,
|
||||
id: (string)(peer.Identity().Pubkey()),
|
||||
=======
|
||||
func runEthProtocol(eth backend, peer *p2p.Peer, rw p2p.MsgReadWriter) (err error) {
|
||||
self := ðProtocol{
|
||||
eth: eth,
|
||||
rw: rw,
|
||||
peer: peer,
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
}
|
||||
err = self.handleStatus()
|
||||
if err == nil {
|
||||
@@ -102,7 +124,10 @@ func runEthProtocol(txPool txPool, chainManager chainManager, blockPool blockPoo
|
||||
for {
|
||||
err = self.handle()
|
||||
if err != nil {
|
||||
<<<<<<< HEAD
|
||||
self.blockPool.RemovePeer(self.id)
|
||||
=======
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
break
|
||||
}
|
||||
}
|
||||
@@ -127,24 +152,46 @@ func (self *ethProtocol) handle() error {
|
||||
case StatusMsg:
|
||||
return ProtocolError(ErrExtraStatusMsg, "")
|
||||
|
||||
<<<<<<< HEAD
|
||||
case TxMsg:
|
||||
// TODO: rework using lazy RLP stream
|
||||
=======
|
||||
case GetTxMsg:
|
||||
txs := self.eth.GetTransactions()
|
||||
// TODO: rewrite using rlp flat
|
||||
txsInterface := make([]interface{}, len(txs))
|
||||
for i, tx := range txs {
|
||||
txsInterface[i] = tx.RlpData()
|
||||
}
|
||||
return self.rw.EncodeMsg(TxMsg, txsInterface...)
|
||||
|
||||
case TxMsg:
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
var txs []*types.Transaction
|
||||
if err := msg.Decode(&txs); err != nil {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
self.txPool.AddTransactions(txs)
|
||||
=======
|
||||
self.eth.AddTransactions(txs)
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
|
||||
case GetBlockHashesMsg:
|
||||
var request getBlockHashesMsgData
|
||||
if err := msg.Decode(&request); err != nil {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
hashes := self.chainManager.GetBlockHashesFromHash(request.Hash, request.Amount)
|
||||
=======
|
||||
hashes := self.eth.GetBlockHashes(request.Hash, request.Amount)
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
return self.rw.EncodeMsg(BlockHashesMsg, ethutil.ByteSliceToInterface(hashes)...)
|
||||
|
||||
case BlockHashesMsg:
|
||||
// TODO: redo using lazy decode , this way very inefficient on known chains
|
||||
<<<<<<< HEAD
|
||||
msgStream := rlp.NewListStream(msg.Payload, uint64(msg.Size))
|
||||
var err error
|
||||
iter := func() (hash []byte, ok bool) {
|
||||
@@ -160,17 +207,45 @@ func (self *ethProtocol) handle() error {
|
||||
}
|
||||
|
||||
case GetBlocksMsg:
|
||||
=======
|
||||
// s := rlp.NewListStream(msg.Payload, uint64(msg.Size))
|
||||
var blockHashes [][]byte
|
||||
if err := msg.Decode(&blockHashes); err != nil {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
fetchMore := true
|
||||
for _, hash := range blockHashes {
|
||||
fetchMore = self.eth.AddHash(hash, self.peer)
|
||||
if !fetchMore {
|
||||
break
|
||||
}
|
||||
}
|
||||
if fetchMore {
|
||||
return self.FetchHashes(blockHashes[len(blockHashes)-1])
|
||||
}
|
||||
|
||||
case GetBlocksMsg:
|
||||
// Limit to max 300 blocks
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
var blockHashes [][]byte
|
||||
if err := msg.Decode(&blockHashes); err != nil {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
max := int(math.Min(float64(len(blockHashes)), blockHashesBatchSize))
|
||||
=======
|
||||
max := int(math.Min(float64(len(blockHashes)), 300.0))
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
var blocks []interface{}
|
||||
for i, hash := range blockHashes {
|
||||
if i >= max {
|
||||
break
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
block := self.chainManager.GetBlock(hash)
|
||||
=======
|
||||
block := self.eth.GetBlock(hash)
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
if block != nil {
|
||||
blocks = append(blocks, block.Value().Raw())
|
||||
}
|
||||
@@ -178,6 +253,7 @@ func (self *ethProtocol) handle() error {
|
||||
return self.rw.EncodeMsg(BlocksMsg, blocks...)
|
||||
|
||||
case BlocksMsg:
|
||||
<<<<<<< HEAD
|
||||
msgStream := rlp.NewListStream(msg.Payload, uint64(msg.Size))
|
||||
for {
|
||||
var block *types.Block
|
||||
@@ -189,6 +265,22 @@ func (self *ethProtocol) handle() error {
|
||||
}
|
||||
}
|
||||
self.blockPool.AddBlock(block, self.id)
|
||||
=======
|
||||
var blocks []*types.Block
|
||||
if err := msg.Decode(&blocks); err != nil {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
for _, block := range blocks {
|
||||
fetchHashes, err := self.eth.AddBlock(nil, block, self.peer)
|
||||
if err != nil {
|
||||
return ProtocolError(ErrInvalidBlock, "%v", err)
|
||||
}
|
||||
if fetchHashes {
|
||||
if err := self.FetchHashes(block.Hash()); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
}
|
||||
|
||||
case NewBlockMsg:
|
||||
@@ -196,6 +288,7 @@ func (self *ethProtocol) handle() error {
|
||||
if err := msg.Decode(&request); err != nil {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
hash := request.Block.Hash()
|
||||
// to simplify backend interface adding a new block
|
||||
// uses AddPeer followed by AddHashes, AddBlock only if peer is the best peer
|
||||
@@ -212,6 +305,15 @@ func (self *ethProtocol) handle() error {
|
||||
}
|
||||
self.blockPool.AddBlockHashes(iter, self.id)
|
||||
self.blockPool.AddBlock(request.Block, self.id)
|
||||
=======
|
||||
var fetchHashes bool
|
||||
// this should reset td and offer blockpool as candidate new peer?
|
||||
if fetchHashes, err = self.eth.AddBlock(request.TD, request.Block, self.peer); err != nil {
|
||||
return ProtocolError(ErrInvalidBlock, "%v", err)
|
||||
}
|
||||
if fetchHashes {
|
||||
return self.FetchHashes(request.Block.Hash())
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
}
|
||||
|
||||
default:
|
||||
@@ -229,7 +331,11 @@ type statusMsgData struct {
|
||||
}
|
||||
|
||||
func (self *ethProtocol) statusMsg() p2p.Msg {
|
||||
<<<<<<< HEAD
|
||||
td, currentBlock, genesisBlock := self.chainManager.Status()
|
||||
=======
|
||||
td, currentBlock, genesisBlock := self.eth.Status()
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
|
||||
return p2p.NewMsg(StatusMsg,
|
||||
uint32(ProtocolVersion),
|
||||
@@ -265,7 +371,11 @@ func (self *ethProtocol) handleStatus() error {
|
||||
return ProtocolError(ErrDecode, "%v", err)
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
_, _, genesisBlock := self.chainManager.Status()
|
||||
=======
|
||||
_, _, genesisBlock := self.eth.Status()
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
|
||||
if bytes.Compare(status.GenesisBlock, genesisBlock) != 0 {
|
||||
return ProtocolError(ErrGenesisBlockMismatch, "%x (!= %x)", status.GenesisBlock, genesisBlock)
|
||||
@@ -279,13 +389,22 @@ func (self *ethProtocol) handleStatus() error {
|
||||
return ProtocolError(ErrProtocolVersionMismatch, "%d (!= %d)", status.ProtocolVersion, ProtocolVersion)
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
self.peer.Infof("Peer is [eth] capable (%d/%d). TD = %v ~ %x", status.ProtocolVersion, status.NetworkId, status.CurrentBlock)
|
||||
|
||||
self.blockPool.AddPeer(status.TD, status.CurrentBlock, self.id, self.requestBlockHashes, self.requestBlocks, self.protoErrorDisconnect)
|
||||
=======
|
||||
logger.Infof("Peer is [eth] capable (%d/%d). TD = %v ~ %x", status.ProtocolVersion, status.NetworkId, status.CurrentBlock)
|
||||
|
||||
if self.eth.AddPeer(status.TD, status.CurrentBlock, self.peer) {
|
||||
return self.FetchHashes(status.CurrentBlock)
|
||||
}
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
func (self *ethProtocol) requestBlockHashes(from []byte) error {
|
||||
self.peer.Debugf("fetching hashes (%d) %x...\n", blockHashesBatchSize, from[0:4])
|
||||
return self.rw.EncodeMsg(GetBlockHashesMsg, from, blockHashesBatchSize)
|
||||
@@ -316,3 +435,9 @@ func (self *ethProtocol) protoErrorDisconnect(code int, format string, params ..
|
||||
}
|
||||
|
||||
}
|
||||
=======
|
||||
func (self *ethProtocol) FetchHashes(from []byte) error {
|
||||
logger.Debugf("Fetching hashes (%d) %x...\n", blockHashesBatchSize, from[0:4])
|
||||
return self.rw.EncodeMsg(GetBlockHashesMsg, from, blockHashesBatchSize)
|
||||
}
|
||||
>>>>>>> initial commit for eth-p2p integration
|
||||
|
Reference in New Issue
Block a user