forked from cerc-io/plugeth
Merge pull request #3253 from zsfelfoldi/light-topic3
Light client bugfixes and updates
This commit is contained in:
commit
d89ea3e6f9
@ -187,7 +187,7 @@ func (be *registryAPIBackend) Call(fromStr, toStr, valueStr, gasStr, gasPriceStr
|
|||||||
if gasPrice.BitLen() == 0 {
|
if gasPrice.BitLen() == 0 {
|
||||||
gasPrice = new(big.Int).Mul(big.NewInt(50), common.Shannon)
|
gasPrice = new(big.Int).Mul(big.NewInt(50), common.Shannon)
|
||||||
}
|
}
|
||||||
msg := types.NewMessage(from.Address(), to, 0, common.Big(valueStr), gas, gasPrice, common.FromHex(dataStr))
|
msg := types.NewMessage(from.Address(), to, 0, common.Big(valueStr), gas, gasPrice, common.FromHex(dataStr), false)
|
||||||
|
|
||||||
header := be.bc.CurrentBlock().Header()
|
header := be.bc.CurrentBlock().Header()
|
||||||
vmenv := core.NewEnv(statedb, be.config, be.bc, msg, header, vm.Config{})
|
vmenv := core.NewEnv(statedb, be.config, be.bc, msg, header, vm.Config{})
|
||||||
|
@ -327,6 +327,7 @@ func (tx *Transaction) AsMessage(s Signer) (Message, error) {
|
|||||||
to: tx.data.Recipient,
|
to: tx.data.Recipient,
|
||||||
amount: tx.data.Amount,
|
amount: tx.data.Amount,
|
||||||
data: tx.data.Payload,
|
data: tx.data.Payload,
|
||||||
|
checkNonce: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
@ -535,9 +536,10 @@ type Message struct {
|
|||||||
nonce uint64
|
nonce uint64
|
||||||
amount, price, gasLimit *big.Int
|
amount, price, gasLimit *big.Int
|
||||||
data []byte
|
data []byte
|
||||||
|
checkNonce bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewMessage(from common.Address, to *common.Address, nonce uint64, amount, gasLimit, price *big.Int, data []byte) Message {
|
func NewMessage(from common.Address, to *common.Address, nonce uint64, amount, gasLimit, price *big.Int, data []byte, checkNonce bool) Message {
|
||||||
return Message{
|
return Message{
|
||||||
from: from,
|
from: from,
|
||||||
to: to,
|
to: to,
|
||||||
@ -546,6 +548,7 @@ func NewMessage(from common.Address, to *common.Address, nonce uint64, amount, g
|
|||||||
price: price,
|
price: price,
|
||||||
gasLimit: gasLimit,
|
gasLimit: gasLimit,
|
||||||
data: data,
|
data: data,
|
||||||
|
checkNonce: checkNonce,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -556,4 +559,4 @@ func (m Message) Value() *big.Int { return m.amount }
|
|||||||
func (m Message) Gas() *big.Int { return m.gasLimit }
|
func (m Message) Gas() *big.Int { return m.gasLimit }
|
||||||
func (m Message) Nonce() uint64 { return m.nonce }
|
func (m Message) Nonce() uint64 { return m.nonce }
|
||||||
func (m Message) Data() []byte { return m.data }
|
func (m Message) Data() []byte { return m.data }
|
||||||
func (m Message) CheckNonce() bool { return true }
|
func (m Message) CheckNonce() bool { return m.checkNonce }
|
||||||
|
@ -545,7 +545,7 @@ func (s *PublicBlockChainAPI) doCall(ctx context.Context, args CallArgs, blockNr
|
|||||||
if gasPrice.Cmp(common.Big0) == 0 {
|
if gasPrice.Cmp(common.Big0) == 0 {
|
||||||
gasPrice = new(big.Int).Mul(big.NewInt(50), common.Shannon)
|
gasPrice = new(big.Int).Mul(big.NewInt(50), common.Shannon)
|
||||||
}
|
}
|
||||||
msg := types.NewMessage(addr, args.To, 0, args.Value.BigInt(), gas, gasPrice, common.FromHex(args.Data))
|
msg := types.NewMessage(addr, args.To, 0, args.Value.BigInt(), gas, gasPrice, common.FromHex(args.Data), false)
|
||||||
|
|
||||||
// Execute the call and return
|
// Execute the call and return
|
||||||
vmenv, vmError, err := s.b.GetVMEnv(ctx, msg, state, header)
|
vmenv, vmError, err := s.b.GetVMEnv(ctx, msg, state, header)
|
||||||
|
@ -99,7 +99,7 @@ type ServerNode struct {
|
|||||||
params *ServerParams
|
params *ServerParams
|
||||||
sumCost uint64 // sum of req costs sent to this server
|
sumCost uint64 // sum of req costs sent to this server
|
||||||
pending map[uint64]uint64 // value = sumCost after sending the given req
|
pending map[uint64]uint64 // value = sumCost after sending the given req
|
||||||
lock sync.Mutex
|
lock sync.RWMutex
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServerNode(params *ServerParams) *ServerNode {
|
func NewServerNode(params *ServerParams) *ServerNode {
|
||||||
@ -135,8 +135,8 @@ func (peer *ServerNode) canSend(maxCost uint64) uint64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (peer *ServerNode) CanSend(maxCost uint64) uint64 {
|
func (peer *ServerNode) CanSend(maxCost uint64) uint64 {
|
||||||
peer.lock.Lock()
|
peer.lock.RLock()
|
||||||
defer peer.lock.Unlock()
|
defer peer.lock.RUnlock()
|
||||||
|
|
||||||
return peer.canSend(maxCost)
|
return peer.canSend(maxCost)
|
||||||
}
|
}
|
||||||
@ -148,7 +148,10 @@ func (peer *ServerNode) SendRequest(reqID, maxCost uint64) {
|
|||||||
|
|
||||||
peer.recalcBLE(getTime())
|
peer.recalcBLE(getTime())
|
||||||
for peer.bufEstimate < maxCost {
|
for peer.bufEstimate < maxCost {
|
||||||
time.Sleep(time.Duration(peer.canSend(maxCost)))
|
wait := time.Duration(peer.canSend(maxCost))
|
||||||
|
peer.lock.Unlock()
|
||||||
|
time.Sleep(wait)
|
||||||
|
peer.lock.Lock()
|
||||||
peer.recalcBLE(getTime())
|
peer.recalcBLE(getTime())
|
||||||
}
|
}
|
||||||
peer.bufEstimate -= maxCost
|
peer.bufEstimate -= maxCost
|
||||||
|
@ -240,6 +240,7 @@ func (pm *ProtocolManager) findServers() {
|
|||||||
if pm.p2pServer == nil || pm.topicDisc == nil {
|
if pm.p2pServer == nil || pm.topicDisc == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
glog.V(logger.Debug).Infoln("Looking for topic", string(pm.lesTopic))
|
||||||
enodes := make(chan string, 100)
|
enodes := make(chan string, 100)
|
||||||
stop := make(chan struct{})
|
stop := make(chan struct{})
|
||||||
go pm.topicDisc.SearchTopic(pm.lesTopic, stop, enodes)
|
go pm.topicDisc.SearchTopic(pm.lesTopic, stop, enodes)
|
||||||
@ -280,9 +281,9 @@ func (pm *ProtocolManager) Start(srvr *p2p.Server) {
|
|||||||
} else {
|
} else {
|
||||||
if pm.topicDisc != nil {
|
if pm.topicDisc != nil {
|
||||||
go func() {
|
go func() {
|
||||||
glog.V(logger.Debug).Infoln("Starting topic register")
|
glog.V(logger.Debug).Infoln("Starting registering topic", string(pm.lesTopic))
|
||||||
pm.topicDisc.RegisterTopic(pm.lesTopic, pm.quitSync)
|
pm.topicDisc.RegisterTopic(pm.lesTopic, pm.quitSync)
|
||||||
glog.V(logger.Debug).Infoln("Stopped topic register")
|
glog.V(logger.Debug).Infoln("Stopped registering topic", string(pm.lesTopic))
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
go func() {
|
go func() {
|
||||||
|
@ -119,7 +119,7 @@ func odrContractCall(ctx context.Context, db ethdb.Database, config *params.Chai
|
|||||||
from := statedb.GetOrNewStateObject(testBankAddress)
|
from := statedb.GetOrNewStateObject(testBankAddress)
|
||||||
from.SetBalance(common.MaxBig)
|
from.SetBalance(common.MaxBig)
|
||||||
|
|
||||||
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(100000), new(big.Int), data)}
|
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(100000), new(big.Int), data, false)}
|
||||||
vmenv := core.NewEnv(statedb, config, bc, msg, header, vm.Config{})
|
vmenv := core.NewEnv(statedb, config, bc, msg, header, vm.Config{})
|
||||||
gp := new(core.GasPool).AddGas(common.MaxBig)
|
gp := new(core.GasPool).AddGas(common.MaxBig)
|
||||||
ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
|
ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
|
||||||
@ -132,7 +132,7 @@ func odrContractCall(ctx context.Context, db ethdb.Database, config *params.Chai
|
|||||||
if err == nil {
|
if err == nil {
|
||||||
from.SetBalance(common.MaxBig)
|
from.SetBalance(common.MaxBig)
|
||||||
|
|
||||||
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(100000), new(big.Int), data)}
|
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(100000), new(big.Int), data, false)}
|
||||||
|
|
||||||
vmenv := light.NewEnv(ctx, state, config, lc, msg, header, vm.Config{})
|
vmenv := light.NewEnv(ctx, state, config, lc, msg, header, vm.Config{})
|
||||||
gp := new(core.GasPool).AddGas(common.MaxBig)
|
gp := new(core.GasPool).AddGas(common.MaxBig)
|
||||||
|
@ -108,8 +108,8 @@ func NewLightChain(odr OdrBackend, config *params.ChainConfig, pow pow.PoW, mux
|
|||||||
// add trusted CHT
|
// add trusted CHT
|
||||||
if config.DAOForkSupport {
|
if config.DAOForkSupport {
|
||||||
WriteTrustedCht(bc.chainDb, TrustedCht{
|
WriteTrustedCht(bc.chainDb, TrustedCht{
|
||||||
Number: 612,
|
Number: 637,
|
||||||
Root: common.HexToHash("8c87a93e0ee531e2aca1b4460e4c201a60c19ffec4f5979262bf14ceeeff8471"),
|
Root: common.HexToHash("01e408d9b1942f05dba1a879f3eaafe34d219edaeb8223fecf1244cc023d3e23"),
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
WriteTrustedCht(bc.chainDb, TrustedCht{
|
WriteTrustedCht(bc.chainDb, TrustedCht{
|
||||||
@ -122,8 +122,8 @@ func NewLightChain(odr OdrBackend, config *params.ChainConfig, pow pow.PoW, mux
|
|||||||
if bc.genesisBlock.Hash() == (common.Hash{12, 215, 134, 162, 66, 93, 22, 241, 82, 198, 88, 49, 108, 66, 62, 108, 225, 24, 30, 21, 195, 41, 88, 38, 215, 201, 144, 76, 186, 156, 227, 3}) {
|
if bc.genesisBlock.Hash() == (common.Hash{12, 215, 134, 162, 66, 93, 22, 241, 82, 198, 88, 49, 108, 66, 62, 108, 225, 24, 30, 21, 195, 41, 88, 38, 215, 201, 144, 76, 186, 156, 227, 3}) {
|
||||||
// add trusted CHT for testnet
|
// add trusted CHT for testnet
|
||||||
WriteTrustedCht(bc.chainDb, TrustedCht{
|
WriteTrustedCht(bc.chainDb, TrustedCht{
|
||||||
Number: 436,
|
Number: 452,
|
||||||
Root: common.HexToHash("97a12df5d04d72bde4b4b840e1018e4f08aee34b7d0bf2c5dbfc052b86fe7439"),
|
Root: common.HexToHash("511da2c88e32b14cf4a4e62f7fcbb297139faebc260a4ab5eb43cce6edcba324"),
|
||||||
})
|
})
|
||||||
glog.V(logger.Info).Infoln("Added trusted CHT for testnet")
|
glog.V(logger.Info).Infoln("Added trusted CHT for testnet")
|
||||||
} else {
|
} else {
|
||||||
|
@ -167,7 +167,7 @@ func odrContractCall(ctx context.Context, db ethdb.Database, bc *core.BlockChain
|
|||||||
from := statedb.GetOrNewStateObject(testBankAddress)
|
from := statedb.GetOrNewStateObject(testBankAddress)
|
||||||
from.SetBalance(common.MaxBig)
|
from.SetBalance(common.MaxBig)
|
||||||
|
|
||||||
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(1000000), new(big.Int), data)}
|
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(1000000), new(big.Int), data, false)}
|
||||||
vmenv := core.NewEnv(statedb, testChainConfig(), bc, msg, header, vm.Config{})
|
vmenv := core.NewEnv(statedb, testChainConfig(), bc, msg, header, vm.Config{})
|
||||||
gp := new(core.GasPool).AddGas(common.MaxBig)
|
gp := new(core.GasPool).AddGas(common.MaxBig)
|
||||||
ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
|
ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
|
||||||
@ -180,7 +180,7 @@ func odrContractCall(ctx context.Context, db ethdb.Database, bc *core.BlockChain
|
|||||||
if err == nil {
|
if err == nil {
|
||||||
from.SetBalance(common.MaxBig)
|
from.SetBalance(common.MaxBig)
|
||||||
|
|
||||||
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(1000000), new(big.Int), data)}
|
msg := callmsg{types.NewMessage(from.Address(), &testContractAddr, 0, new(big.Int), big.NewInt(1000000), new(big.Int), data, false)}
|
||||||
vmenv := NewEnv(ctx, state, testChainConfig(), lc, msg, header, vm.Config{})
|
vmenv := NewEnv(ctx, state, testChainConfig(), lc, msg, header, vm.Config{})
|
||||||
gp := new(core.GasPool).AddGas(common.MaxBig)
|
gp := new(core.GasPool).AddGas(common.MaxBig)
|
||||||
ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
|
ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
|
||||||
|
@ -42,6 +42,7 @@ var (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
autoRefreshInterval = 1 * time.Hour
|
autoRefreshInterval = 1 * time.Hour
|
||||||
|
bucketRefreshInterval = 1 * time.Minute
|
||||||
seedCount = 30
|
seedCount = 30
|
||||||
seedMaxAge = 5 * 24 * time.Hour
|
seedMaxAge = 5 * 24 * time.Hour
|
||||||
)
|
)
|
||||||
@ -62,8 +63,9 @@ func debugLog(s string) {
|
|||||||
// BootNodes are the enode URLs of the P2P bootstrap nodes for the experimental RLPx v5 "Topic Discovery" network
|
// BootNodes are the enode URLs of the P2P bootstrap nodes for the experimental RLPx v5 "Topic Discovery" network
|
||||||
// warning: local bootnodes for testing!!!
|
// warning: local bootnodes for testing!!!
|
||||||
var BootNodes = []*Node{
|
var BootNodes = []*Node{
|
||||||
//MustParseNode("enode://6f974ede10d07334e7e651c1501cb540d087dd3a6dea81432620895c913f281790b49459d72cb8011bfbbfbd24fad956356189c31b7181a96cd44ccfb68bfc71@127.0.0.1:30301"),
|
|
||||||
MustParseNode("enode://0cc5f5ffb5d9098c8b8c62325f3797f56509bff942704687b6530992ac706e2cb946b90a34f1f19548cd3c7baccbcaea354531e5983c7d1bc0dee16ce4b6440b@40.118.3.223:30305"),
|
MustParseNode("enode://0cc5f5ffb5d9098c8b8c62325f3797f56509bff942704687b6530992ac706e2cb946b90a34f1f19548cd3c7baccbcaea354531e5983c7d1bc0dee16ce4b6440b@40.118.3.223:30305"),
|
||||||
|
MustParseNode("enode://1c7a64d76c0334b0418c004af2f67c50e36a3be60b5e4790bdac0439d21603469a85fad36f2473c9a80eb043ae60936df905fa28f1ff614c3e5dc34f15dcd2dc@40.118.3.223:30308"),
|
||||||
|
MustParseNode("enode://85c85d7143ae8bb96924f2b54f1b3e70d8c4d367af305325d30a61385a432f247d2c75c45c6b4a60335060d072d7f5b35dd1d4c45f76941f62a4f83b6e75daaf@40.118.3.223:30309"),
|
||||||
}
|
}
|
||||||
|
|
||||||
// Network manages the table and all protocol interaction.
|
// Network manages the table and all protocol interaction.
|
||||||
@ -82,7 +84,6 @@ type Network struct {
|
|||||||
tableOpResp chan struct{}
|
tableOpResp chan struct{}
|
||||||
topicRegisterReq chan topicRegisterReq
|
topicRegisterReq chan topicRegisterReq
|
||||||
topicSearchReq chan topicSearchReq
|
topicSearchReq chan topicSearchReq
|
||||||
bucketFillChn chan chan struct{}
|
|
||||||
|
|
||||||
// State of the main loop.
|
// State of the main loop.
|
||||||
tab *Table
|
tab *Table
|
||||||
@ -169,7 +170,6 @@ func newNetwork(conn transport, ourPubkey ecdsa.PublicKey, natm nat.Interface, d
|
|||||||
queryReq: make(chan *findnodeQuery),
|
queryReq: make(chan *findnodeQuery),
|
||||||
topicRegisterReq: make(chan topicRegisterReq),
|
topicRegisterReq: make(chan topicRegisterReq),
|
||||||
topicSearchReq: make(chan topicSearchReq),
|
topicSearchReq: make(chan topicSearchReq),
|
||||||
bucketFillChn: make(chan chan struct{}, 1),
|
|
||||||
nodes: make(map[NodeID]*Node),
|
nodes: make(map[NodeID]*Node),
|
||||||
}
|
}
|
||||||
go net.loop()
|
go net.loop()
|
||||||
@ -354,6 +354,7 @@ func (net *Network) reqTableOp(f func()) (called bool) {
|
|||||||
func (net *Network) loop() {
|
func (net *Network) loop() {
|
||||||
var (
|
var (
|
||||||
refreshTimer = time.NewTicker(autoRefreshInterval)
|
refreshTimer = time.NewTicker(autoRefreshInterval)
|
||||||
|
bucketRefreshTimer = time.NewTimer(bucketRefreshInterval)
|
||||||
refreshDone chan struct{} // closed when the 'refresh' lookup has ended
|
refreshDone chan struct{} // closed when the 'refresh' lookup has ended
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -389,6 +390,7 @@ func (net *Network) loop() {
|
|||||||
topicRegisterLookupDone chan []*Node
|
topicRegisterLookupDone chan []*Node
|
||||||
topicRegisterLookupTick = time.NewTimer(0)
|
topicRegisterLookupTick = time.NewTimer(0)
|
||||||
topicSearchLookupTarget lookupInfo
|
topicSearchLookupTarget lookupInfo
|
||||||
|
searchReqWhenRefreshDone []topicSearchReq
|
||||||
)
|
)
|
||||||
topicSearchLookupDone := make(chan []*Node, 1)
|
topicSearchLookupDone := make(chan []*Node, 1)
|
||||||
<-topicRegisterLookupTick.C
|
<-topicRegisterLookupTick.C
|
||||||
@ -406,6 +408,7 @@ loop:
|
|||||||
|
|
||||||
// Ingress packet handling.
|
// Ingress packet handling.
|
||||||
case pkt := <-net.read:
|
case pkt := <-net.read:
|
||||||
|
//fmt.Println("read", pkt.ev)
|
||||||
debugLog("<-net.read")
|
debugLog("<-net.read")
|
||||||
n := net.internNode(&pkt)
|
n := net.internNode(&pkt)
|
||||||
prestate := n.state
|
prestate := n.state
|
||||||
@ -503,6 +506,7 @@ loop:
|
|||||||
net.conn.sendTopicRegister(nextTicket.t.node, nextTicket.t.topics, nextTicket.idx, nextTicket.t.pong)
|
net.conn.sendTopicRegister(nextTicket.t.node, nextTicket.t.topics, nextTicket.idx, nextTicket.t.pong)
|
||||||
|
|
||||||
case req := <-net.topicSearchReq:
|
case req := <-net.topicSearchReq:
|
||||||
|
if refreshDone == nil {
|
||||||
debugLog("<-net.topicSearchReq")
|
debugLog("<-net.topicSearchReq")
|
||||||
if req.found == nil {
|
if req.found == nil {
|
||||||
net.ticketStore.removeSearchTopic(req.topic)
|
net.ticketStore.removeSearchTopic(req.topic)
|
||||||
@ -512,6 +516,9 @@ loop:
|
|||||||
if (topicSearchLookupTarget.target == common.Hash{}) {
|
if (topicSearchLookupTarget.target == common.Hash{}) {
|
||||||
topicSearchLookupDone <- nil
|
topicSearchLookupDone <- nil
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
searchReqWhenRefreshDone = append(searchReqWhenRefreshDone, req)
|
||||||
|
}
|
||||||
|
|
||||||
case nodes := <-topicSearchLookupDone:
|
case nodes := <-topicSearchLookupDone:
|
||||||
debugLog("<-topicSearchLookupDone")
|
debugLog("<-topicSearchLookupDone")
|
||||||
@ -519,7 +526,14 @@ loop:
|
|||||||
net.ping(n, n.addr())
|
net.ping(n, n.addr())
|
||||||
return n.pingEcho
|
return n.pingEcho
|
||||||
}, func(n *Node, topic Topic) []byte {
|
}, func(n *Node, topic Topic) []byte {
|
||||||
|
if n.state == known {
|
||||||
return net.conn.send(n, topicQueryPacket, topicQuery{Topic: topic}) // TODO: set expiration
|
return net.conn.send(n, topicQueryPacket, topicQuery{Topic: topic}) // TODO: set expiration
|
||||||
|
} else {
|
||||||
|
if n.state == unknown {
|
||||||
|
net.ping(n, n.addr())
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
})
|
})
|
||||||
topicSearchLookupTarget = net.ticketStore.nextSearchLookup()
|
topicSearchLookupTarget = net.ticketStore.nextSearchLookup()
|
||||||
target := topicSearchLookupTarget.target
|
target := topicSearchLookupTarget.target
|
||||||
@ -564,9 +578,12 @@ loop:
|
|||||||
refreshDone = make(chan struct{})
|
refreshDone = make(chan struct{})
|
||||||
net.refresh(refreshDone)
|
net.refresh(refreshDone)
|
||||||
}
|
}
|
||||||
case doneChn := <-net.bucketFillChn:
|
case <-bucketRefreshTimer.C:
|
||||||
debugLog("bucketFill")
|
target := net.tab.chooseBucketRefreshTarget()
|
||||||
net.bucketFill(doneChn)
|
go func() {
|
||||||
|
net.lookup(target, false)
|
||||||
|
bucketRefreshTimer.Reset(bucketRefreshInterval)
|
||||||
|
}()
|
||||||
case newNursery := <-net.refreshReq:
|
case newNursery := <-net.refreshReq:
|
||||||
debugLog("<-net.refreshReq")
|
debugLog("<-net.refreshReq")
|
||||||
if newNursery != nil {
|
if newNursery != nil {
|
||||||
@ -580,6 +597,13 @@ loop:
|
|||||||
case <-refreshDone:
|
case <-refreshDone:
|
||||||
debugLog("<-net.refreshDone")
|
debugLog("<-net.refreshDone")
|
||||||
refreshDone = nil
|
refreshDone = nil
|
||||||
|
list := searchReqWhenRefreshDone
|
||||||
|
searchReqWhenRefreshDone = nil
|
||||||
|
go func() {
|
||||||
|
for _, req := range list {
|
||||||
|
net.topicSearchReq <- req
|
||||||
|
}
|
||||||
|
}()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
debugLog("loop stopped")
|
debugLog("loop stopped")
|
||||||
@ -643,28 +667,13 @@ func (net *Network) refresh(done chan<- struct{}) {
|
|||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (net *Network) bucketFill(done chan<- struct{}) {
|
|
||||||
target := net.tab.chooseBucketFillTarget()
|
|
||||||
go func() {
|
|
||||||
net.lookup(target, false)
|
|
||||||
close(done)
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (net *Network) BucketFill() {
|
|
||||||
done := make(chan struct{})
|
|
||||||
select {
|
|
||||||
case net.bucketFillChn <- done:
|
|
||||||
<-done
|
|
||||||
case <-net.closed:
|
|
||||||
close(done)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Node Interning.
|
// Node Interning.
|
||||||
|
|
||||||
func (net *Network) internNode(pkt *ingressPacket) *Node {
|
func (net *Network) internNode(pkt *ingressPacket) *Node {
|
||||||
if n := net.nodes[pkt.remoteID]; n != nil {
|
if n := net.nodes[pkt.remoteID]; n != nil {
|
||||||
|
n.IP = pkt.remoteAddr.IP
|
||||||
|
n.UDP = uint16(pkt.remoteAddr.Port)
|
||||||
|
n.TCP = uint16(pkt.remoteAddr.Port)
|
||||||
return n
|
return n
|
||||||
}
|
}
|
||||||
n := NewNode(pkt.remoteID, pkt.remoteAddr.IP, uint16(pkt.remoteAddr.Port), uint16(pkt.remoteAddr.Port))
|
n := NewNode(pkt.remoteID, pkt.remoteAddr.IP, uint16(pkt.remoteAddr.Port), uint16(pkt.remoteAddr.Port))
|
||||||
@ -967,8 +976,10 @@ func init() {
|
|||||||
|
|
||||||
// handle processes packets sent by n and events related to n.
|
// handle processes packets sent by n and events related to n.
|
||||||
func (net *Network) handle(n *Node, ev nodeEvent, pkt *ingressPacket) error {
|
func (net *Network) handle(n *Node, ev nodeEvent, pkt *ingressPacket) error {
|
||||||
|
//fmt.Println("handle", n.addr().String(), n.state, ev)
|
||||||
if pkt != nil {
|
if pkt != nil {
|
||||||
if err := net.checkPacket(n, ev, pkt); err != nil {
|
if err := net.checkPacket(n, ev, pkt); err != nil {
|
||||||
|
//fmt.Println("check err:", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// Start the background expiration goroutine after the first
|
// Start the background expiration goroutine after the first
|
||||||
@ -985,6 +996,7 @@ func (net *Network) handle(n *Node, ev nodeEvent, pkt *ingressPacket) error {
|
|||||||
}
|
}
|
||||||
next, err := n.state.handle(net, n, ev, pkt)
|
next, err := n.state.handle(net, n, ev, pkt)
|
||||||
net.transition(n, next)
|
net.transition(n, next)
|
||||||
|
//fmt.Println("new state:", n.state)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1040,6 +1052,11 @@ func (net *Network) abortTimedEvent(n *Node, ev nodeEvent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (net *Network) ping(n *Node, addr *net.UDPAddr) {
|
func (net *Network) ping(n *Node, addr *net.UDPAddr) {
|
||||||
|
//fmt.Println("ping", n.addr().String(), n.ID.String(), n.sha.Hex())
|
||||||
|
if n.pingEcho != nil || n.ID == net.tab.self.ID {
|
||||||
|
//fmt.Println(" not sent")
|
||||||
|
return
|
||||||
|
}
|
||||||
debugLog(fmt.Sprintf("ping(node = %x)", n.ID[:8]))
|
debugLog(fmt.Sprintf("ping(node = %x)", n.ID[:8]))
|
||||||
n.pingTopics = net.ticketStore.regTopicSet()
|
n.pingTopics = net.ticketStore.regTopicSet()
|
||||||
n.pingEcho = net.conn.sendPing(n, addr, n.pingTopics)
|
n.pingEcho = net.conn.sendPing(n, addr, n.pingTopics)
|
||||||
|
@ -25,6 +25,7 @@ package discv5
|
|||||||
import (
|
import (
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
@ -64,42 +65,54 @@ func newTable(ourID NodeID, ourAddr *net.UDPAddr) *Table {
|
|||||||
return tab
|
return tab
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tab *Table) chooseBucketFillTarget() common.Hash {
|
const printTable = false
|
||||||
bucketCount := nBuckets
|
|
||||||
for bucketCount > 0 && len(tab.buckets[nBuckets-bucketCount].entries) == 0 {
|
// chooseBucketRefreshTarget selects random refresh targets to keep all Kademlia
|
||||||
bucketCount--
|
// buckets filled with live connections and keep the network topology healthy.
|
||||||
|
// This requires selecting addresses closer to our own with a higher probability
|
||||||
|
// in order to refresh closer buckets too.
|
||||||
|
//
|
||||||
|
// This algorithm approximates the distance distribution of existing nodes in the
|
||||||
|
// table by selecting a random node from the table and selecting a target address
|
||||||
|
// with a distance less than twice of that of the selected node.
|
||||||
|
// This algorithm will be improved later to specifically target the least recently
|
||||||
|
// used buckets.
|
||||||
|
func (tab *Table) chooseBucketRefreshTarget() common.Hash {
|
||||||
|
entries := 0
|
||||||
|
if printTable {
|
||||||
|
fmt.Println()
|
||||||
|
}
|
||||||
|
for i, b := range tab.buckets {
|
||||||
|
entries += len(b.entries)
|
||||||
|
if printTable {
|
||||||
|
for _, e := range b.entries {
|
||||||
|
fmt.Println(i, e.state, e.addr().String(), e.ID.String(), e.sha.Hex())
|
||||||
}
|
}
|
||||||
var bucket int
|
|
||||||
for {
|
|
||||||
// select a target hash that could go into a certain randomly selected bucket
|
|
||||||
// buckets are chosen with an even chance out of the existing ones that contain
|
|
||||||
// less that bucketSize entries, plus a potential new one beyond these
|
|
||||||
bucket = nBuckets - 1 - int(randUint(uint32(bucketCount+1)))
|
|
||||||
if bucket == bucketCount || len(tab.buckets[bucket].entries) < bucketSize {
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// calculate target that has the desired log distance from our own address hash
|
prefix := binary.BigEndian.Uint64(tab.self.sha[0:8])
|
||||||
target := tab.self.sha.Bytes()
|
dist := ^uint64(0)
|
||||||
prefix := binary.BigEndian.Uint64(target[0:8])
|
entry := int(randUint(uint32(entries + 1)))
|
||||||
shift := uint(nBuckets - 1 - bucket)
|
for _, b := range tab.buckets {
|
||||||
if bucket != bucketCount {
|
if entry < len(b.entries) {
|
||||||
shift++
|
n := b.entries[entry]
|
||||||
|
dist = binary.BigEndian.Uint64(n.sha[0:8]) ^ prefix
|
||||||
|
break
|
||||||
}
|
}
|
||||||
var b [8]byte
|
entry -= len(b.entries)
|
||||||
rand.Read(b[:])
|
|
||||||
rnd := binary.BigEndian.Uint64(b[:])
|
|
||||||
rndMask := (^uint64(0)) >> shift
|
|
||||||
addrMask := ^rndMask
|
|
||||||
xorMask := uint64(0)
|
|
||||||
if bucket != bucketCount {
|
|
||||||
xorMask = rndMask + 1
|
|
||||||
}
|
}
|
||||||
prefix = (prefix&addrMask ^ xorMask) | (rnd & rndMask)
|
|
||||||
binary.BigEndian.PutUint64(target[0:8], prefix)
|
ddist := ^uint64(0)
|
||||||
|
if dist+dist > dist {
|
||||||
|
ddist = dist
|
||||||
|
}
|
||||||
|
targetPrefix := prefix ^ randUint64n(ddist)
|
||||||
|
|
||||||
|
var target common.Hash
|
||||||
|
binary.BigEndian.PutUint64(target[0:8], targetPrefix)
|
||||||
rand.Read(target[8:])
|
rand.Read(target[8:])
|
||||||
return common.BytesToHash(target)
|
return target
|
||||||
}
|
}
|
||||||
|
|
||||||
// readRandomNodes fills the given slice with random nodes from the
|
// readRandomNodes fills the given slice with random nodes from the
|
||||||
@ -175,6 +188,10 @@ func (tab *Table) closest(target common.Hash, nresults int) *nodesByDistance {
|
|||||||
// bucket has space available, adding the node succeeds immediately.
|
// bucket has space available, adding the node succeeds immediately.
|
||||||
// Otherwise, the node is added to the replacement cache for the bucket.
|
// Otherwise, the node is added to the replacement cache for the bucket.
|
||||||
func (tab *Table) add(n *Node) (contested *Node) {
|
func (tab *Table) add(n *Node) (contested *Node) {
|
||||||
|
//fmt.Println("add", n.addr().String(), n.ID.String(), n.sha.Hex())
|
||||||
|
if n.ID == tab.self.ID {
|
||||||
|
return
|
||||||
|
}
|
||||||
b := tab.buckets[logdist(tab.self.sha, n.sha)]
|
b := tab.buckets[logdist(tab.self.sha, n.sha)]
|
||||||
switch {
|
switch {
|
||||||
case b.bump(n):
|
case b.bump(n):
|
||||||
@ -228,6 +245,7 @@ outer:
|
|||||||
// delete removes an entry from the node table (used to evacuate
|
// delete removes an entry from the node table (used to evacuate
|
||||||
// failed/non-bonded discovery peers).
|
// failed/non-bonded discovery peers).
|
||||||
func (tab *Table) delete(node *Node) {
|
func (tab *Table) delete(node *Node) {
|
||||||
|
//fmt.Println("delete", node.addr().String(), node.ID.String(), node.sha.Hex())
|
||||||
bucket := tab.buckets[logdist(tab.self.sha, node.sha)]
|
bucket := tab.buckets[logdist(tab.self.sha, node.sha)]
|
||||||
for i := range bucket.entries {
|
for i := range bucket.entries {
|
||||||
if bucket.entries[i].ID == node.ID {
|
if bucket.entries[i].ID == node.ID {
|
||||||
|
@ -525,8 +525,10 @@ func (s *ticketStore) searchLookupDone(lookup lookupInfo, nodes []*Node, ping fu
|
|||||||
} // else {
|
} // else {
|
||||||
if s.canQueryTopic(n, lookup.topic) {
|
if s.canQueryTopic(n, lookup.topic) {
|
||||||
hash := query(n, lookup.topic)
|
hash := query(n, lookup.topic)
|
||||||
|
if hash != nil {
|
||||||
s.addTopicQuery(common.BytesToHash(hash), n, lookup)
|
s.addTopicQuery(common.BytesToHash(hash), n, lookup)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
//}
|
//}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -336,14 +336,17 @@ func (t *udp) sendTopicNodes(remote *Node, queryHash common.Hash, nodes []*Node)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (t *udp) sendPacket(toid NodeID, toaddr *net.UDPAddr, ptype byte, req interface{}) (hash []byte, err error) {
|
func (t *udp) sendPacket(toid NodeID, toaddr *net.UDPAddr, ptype byte, req interface{}) (hash []byte, err error) {
|
||||||
|
//fmt.Println("sendPacket", nodeEvent(ptype), toaddr.String(), toid.String())
|
||||||
packet, hash, err := encodePacket(t.priv, ptype, req)
|
packet, hash, err := encodePacket(t.priv, ptype, req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
//fmt.Println(err)
|
||||||
return hash, err
|
return hash, err
|
||||||
}
|
}
|
||||||
glog.V(logger.Detail).Infof(">>> %v to %x@%v\n", nodeEvent(ptype), toid[:8], toaddr)
|
glog.V(logger.Detail).Infof(">>> %v to %x@%v\n", nodeEvent(ptype), toid[:8], toaddr)
|
||||||
if _, err = t.conn.WriteToUDP(packet, toaddr); err != nil {
|
if _, err = t.conn.WriteToUDP(packet, toaddr); err != nil {
|
||||||
glog.V(logger.Detail).Infoln("UDP send failed:", err)
|
glog.V(logger.Detail).Infoln("UDP send failed:", err)
|
||||||
}
|
}
|
||||||
|
//fmt.Println(err)
|
||||||
return hash, err
|
return hash, err
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -406,6 +409,7 @@ func (t *udp) handlePacket(from *net.UDPAddr, buf []byte) error {
|
|||||||
pkt := ingressPacket{remoteAddr: from}
|
pkt := ingressPacket{remoteAddr: from}
|
||||||
if err := decodePacket(buf, &pkt); err != nil {
|
if err := decodePacket(buf, &pkt); err != nil {
|
||||||
glog.V(logger.Debug).Infof("Bad packet from %v: %v\n", from, err)
|
glog.V(logger.Debug).Infof("Bad packet from %v: %v\n", from, err)
|
||||||
|
//fmt.Println("bad packet", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
t.net.reqReadPacket(pkt)
|
t.net.reqReadPacket(pkt)
|
||||||
|
@ -226,7 +226,7 @@ func RunState(chainConfig *params.ChainConfig, statedb *state.StateDB, env, tx m
|
|||||||
|
|
||||||
key, _ := hex.DecodeString(tx["secretKey"])
|
key, _ := hex.DecodeString(tx["secretKey"])
|
||||||
addr := crypto.PubkeyToAddress(crypto.ToECDSA(key).PublicKey)
|
addr := crypto.PubkeyToAddress(crypto.ToECDSA(key).PublicKey)
|
||||||
message := types.NewMessage(addr, to, nonce, value, gas, price, data)
|
message := types.NewMessage(addr, to, nonce, value, gas, price, data, true)
|
||||||
vmenv := NewEnvFromMap(chainConfig, statedb, env, tx)
|
vmenv := NewEnvFromMap(chainConfig, statedb, env, tx)
|
||||||
vmenv.origin = addr
|
vmenv.origin = addr
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user