Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
ba43364f
Commit
ba43364f
authored
Sep 24, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tmp
parent
57dc435f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
154 additions
and
45 deletions
+154
-45
block_pool.go
block_pool.go
+95
-6
ethereum.go
ethereum.go
+0
-1
peer.go
peer.go
+59
-38
No files found.
block_pool.go
View file @
ba43364f
package
eth
package
eth
import
(
import
(
"bytes"
"container/list"
"fmt"
"math"
"math"
"math/big"
"math/big"
"sync"
"sync"
"time"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethutil"
)
)
type
block
struct
{
type
block
struct
{
peer
*
Peer
peer
*
Peer
block
*
ethchain
.
Block
block
*
ethchain
.
Block
reqAt
time
.
Time
requested
int
}
}
type
BlockPool
struct
{
type
BlockPool
struct
{
...
@@ -22,7 +28,8 @@ type BlockPool struct {
...
@@ -22,7 +28,8 @@ type BlockPool struct {
hashPool
[][]
byte
hashPool
[][]
byte
pool
map
[
string
]
*
block
pool
map
[
string
]
*
block
td
*
big
.
Int
td
*
big
.
Int
quit
chan
bool
}
}
func
NewBlockPool
(
eth
*
Ethereum
)
*
BlockPool
{
func
NewBlockPool
(
eth
*
Ethereum
)
*
BlockPool
{
...
@@ -30,6 +37,7 @@ func NewBlockPool(eth *Ethereum) *BlockPool {
...
@@ -30,6 +37,7 @@ func NewBlockPool(eth *Ethereum) *BlockPool {
eth
:
eth
,
eth
:
eth
,
pool
:
make
(
map
[
string
]
*
block
),
pool
:
make
(
map
[
string
]
*
block
),
td
:
ethutil
.
Big0
,
td
:
ethutil
.
Big0
,
quit
:
make
(
chan
bool
),
}
}
}
}
...
@@ -47,7 +55,7 @@ func (self *BlockPool) HasCommonHash(hash []byte) bool {
...
@@ -47,7 +55,7 @@ func (self *BlockPool) HasCommonHash(hash []byte) bool {
func
(
self
*
BlockPool
)
AddHash
(
hash
[]
byte
)
{
func
(
self
*
BlockPool
)
AddHash
(
hash
[]
byte
)
{
if
self
.
pool
[
string
(
hash
)]
==
nil
{
if
self
.
pool
[
string
(
hash
)]
==
nil
{
self
.
pool
[
string
(
hash
)]
=
&
block
{
nil
,
nil
}
self
.
pool
[
string
(
hash
)]
=
&
block
{
nil
,
nil
,
time
.
Now
(),
0
}
self
.
hashPool
=
append
([][]
byte
{
hash
},
self
.
hashPool
...
)
self
.
hashPool
=
append
([][]
byte
{
hash
},
self
.
hashPool
...
)
}
}
...
@@ -58,12 +66,34 @@ func (self *BlockPool) SetBlock(b *ethchain.Block, peer *Peer) {
...
@@ -58,12 +66,34 @@ func (self *BlockPool) SetBlock(b *ethchain.Block, peer *Peer) {
if
self
.
pool
[
hash
]
==
nil
&&
!
self
.
eth
.
BlockChain
()
.
HasBlock
(
b
.
Hash
())
{
if
self
.
pool
[
hash
]
==
nil
&&
!
self
.
eth
.
BlockChain
()
.
HasBlock
(
b
.
Hash
())
{
self
.
hashPool
=
append
(
self
.
hashPool
,
b
.
Hash
())
self
.
hashPool
=
append
(
self
.
hashPool
,
b
.
Hash
())
self
.
pool
[
hash
]
=
&
block
{
peer
,
b
}
self
.
pool
[
hash
]
=
&
block
{
peer
,
b
,
time
.
Now
(),
0
}
}
else
if
self
.
pool
[
hash
]
!=
nil
{
}
else
if
self
.
pool
[
hash
]
!=
nil
{
self
.
pool
[
hash
]
.
block
=
b
self
.
pool
[
hash
]
.
block
=
b
}
}
}
}
func
(
self
*
BlockPool
)
getParent
(
block
*
ethchain
.
Block
)
*
ethchain
.
Block
{
for
_
,
item
:=
range
self
.
pool
{
if
item
.
block
!=
nil
{
if
bytes
.
Compare
(
item
.
block
.
Hash
(),
block
.
PrevHash
)
==
0
{
return
item
.
block
}
}
}
return
nil
}
func
(
self
*
BlockPool
)
GetChainFromBlock
(
block
*
ethchain
.
Block
)
ethchain
.
Blocks
{
var
blocks
ethchain
.
Blocks
for
b
:=
block
;
b
!=
nil
;
b
=
self
.
getParent
(
b
)
{
blocks
=
append
(
ethchain
.
Blocks
{
b
},
blocks
...
)
}
return
blocks
}
func
(
self
*
BlockPool
)
CheckLinkAndProcess
(
f
func
(
block
*
ethchain
.
Block
))
{
func
(
self
*
BlockPool
)
CheckLinkAndProcess
(
f
func
(
block
*
ethchain
.
Block
))
{
var
blocks
ethchain
.
Blocks
var
blocks
ethchain
.
Blocks
...
@@ -94,8 +124,14 @@ func (self *BlockPool) Take(amount int, peer *Peer) (hashes [][]byte) {
...
@@ -94,8 +124,14 @@ func (self *BlockPool) Take(amount int, peer *Peer) (hashes [][]byte) {
j
:=
0
j
:=
0
for
i
:=
0
;
i
<
len
(
self
.
hashPool
)
&&
j
<
num
;
i
++
{
for
i
:=
0
;
i
<
len
(
self
.
hashPool
)
&&
j
<
num
;
i
++
{
hash
:=
string
(
self
.
hashPool
[
i
])
hash
:=
string
(
self
.
hashPool
[
i
])
if
self
.
pool
[
hash
]
!=
nil
&&
(
self
.
pool
[
hash
]
.
peer
==
nil
||
self
.
pool
[
hash
]
.
peer
==
peer
)
&&
self
.
pool
[
hash
]
.
block
==
nil
{
item
:=
self
.
pool
[
hash
]
if
item
!=
nil
&&
item
.
block
==
nil
&&
(
item
.
peer
==
nil
||
((
time
.
Since
(
item
.
reqAt
)
>
5
*
time
.
Second
&&
item
.
peer
!=
peer
)
&&
self
.
eth
.
peers
.
Len
()
>
1
)
||
// multiple peers
(
time
.
Since
(
item
.
reqAt
)
>
5
*
time
.
Second
&&
self
.
eth
.
peers
.
Len
()
==
1
)
/* single peer*/
)
{
self
.
pool
[
hash
]
.
peer
=
peer
self
.
pool
[
hash
]
.
peer
=
peer
self
.
pool
[
hash
]
.
reqAt
=
time
.
Now
()
self
.
pool
[
hash
]
.
requested
++
hashes
=
append
(
hashes
,
self
.
hashPool
[
i
])
hashes
=
append
(
hashes
,
self
.
hashPool
[
i
])
j
++
j
++
...
@@ -104,3 +140,56 @@ func (self *BlockPool) Take(amount int, peer *Peer) (hashes [][]byte) {
...
@@ -104,3 +140,56 @@ func (self *BlockPool) Take(amount int, peer *Peer) (hashes [][]byte) {
return
return
}
}
func
(
self
*
BlockPool
)
Start
()
{
go
self
.
update
()
}
func
(
self
*
BlockPool
)
Stop
()
{
close
(
self
.
quit
)
}
func
(
self
*
BlockPool
)
update
()
{
serviceTimer
:=
time
.
NewTicker
(
100
*
time
.
Millisecond
)
procTimer
:=
time
.
NewTicker
(
500
*
time
.
Millisecond
)
out
:
for
{
select
{
case
<-
self
.
quit
:
break
out
case
<-
serviceTimer
.
C
:
// Clean up hashes that can't be fetched
done
:=
true
eachPeer
(
self
.
eth
.
peers
,
func
(
p
*
Peer
,
v
*
list
.
Element
)
{
if
p
.
statusKnown
&&
p
.
FetchingHashes
()
{
done
=
false
}
})
if
done
{
eachPeer
(
self
.
eth
.
peers
,
func
(
p
*
Peer
,
v
*
list
.
Element
)
{
if
p
.
statusKnown
{
hashes
:=
self
.
Take
(
100
,
p
)
if
len
(
hashes
)
>
0
{
p
.
FetchBlocks
(
hashes
)
if
len
(
hashes
)
==
1
{
fmt
.
Printf
(
"last hash = %x
\n
"
,
hashes
[
0
])
}
else
{
fmt
.
Println
(
"Requesting"
,
len
(
hashes
),
"of"
,
p
)
}
}
}
})
}
case
<-
procTimer
.
C
:
var
err
error
self
.
CheckLinkAndProcess
(
func
(
block
*
ethchain
.
Block
)
{
err
=
self
.
eth
.
StateManager
()
.
Process
(
block
,
false
)
})
if
err
!=
nil
{
peerlogger
.
Infoln
(
err
)
}
}
}
}
ethereum.go
View file @
ba43364f
...
@@ -383,7 +383,6 @@ func (s *Ethereum) ReapDeadPeerHandler() {
...
@@ -383,7 +383,6 @@ func (s *Ethereum) ReapDeadPeerHandler() {
// Start the ethereum
// Start the ethereum
func
(
s
*
Ethereum
)
Start
(
seed
bool
)
{
func
(
s
*
Ethereum
)
Start
(
seed
bool
)
{
s
.
reactor
.
Start
()
s
.
reactor
.
Start
()
s
.
blockPool
.
Start
()
// Bind to addr and port
// Bind to addr and port
ln
,
err
:=
net
.
Listen
(
"tcp"
,
":"
+
s
.
Port
)
ln
,
err
:=
net
.
Listen
(
"tcp"
,
":"
+
s
.
Port
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
peer.go
View file @
ba43364f
...
@@ -131,6 +131,7 @@ type Peer struct {
...
@@ -131,6 +131,7 @@ type Peer struct {
// Last received pong message
// Last received pong message
lastPong
int64
lastPong
int64
lastBlockReceived
time
.
Time
lastBlockReceived
time
.
Time
LastHashReceived
time
.
Time
host
[]
byte
host
[]
byte
port
uint16
port
uint16
...
@@ -176,6 +177,7 @@ func NewPeer(conn net.Conn, ethereum *Ethereum, inbound bool) *Peer {
...
@@ -176,6 +177,7 @@ func NewPeer(conn net.Conn, ethereum *Ethereum, inbound bool) *Peer {
caps
:
ethereum
.
ServerCaps
(),
caps
:
ethereum
.
ServerCaps
(),
version
:
ethereum
.
ClientIdentity
()
.
String
(),
version
:
ethereum
.
ClientIdentity
()
.
String
(),
protocolCaps
:
ethutil
.
NewValue
(
nil
),
protocolCaps
:
ethutil
.
NewValue
(
nil
),
td
:
big
.
NewInt
(
0
),
}
}
}
}
...
@@ -191,6 +193,7 @@ func NewOutboundPeer(addr string, ethereum *Ethereum, caps Caps) *Peer {
...
@@ -191,6 +193,7 @@ func NewOutboundPeer(addr string, ethereum *Ethereum, caps Caps) *Peer {
caps
:
caps
,
caps
:
caps
,
version
:
ethereum
.
ClientIdentity
()
.
String
(),
version
:
ethereum
.
ClientIdentity
()
.
String
(),
protocolCaps
:
ethutil
.
NewValue
(
nil
),
protocolCaps
:
ethutil
.
NewValue
(
nil
),
td
:
big
.
NewInt
(
0
),
}
}
// Set up the connection in another goroutine so we don't block the main thread
// Set up the connection in another goroutine so we don't block the main thread
...
@@ -505,6 +508,9 @@ func (p *Peer) HandleInbound() {
...
@@ -505,6 +508,9 @@ func (p *Peer) HandleInbound() {
for
it
.
Next
()
{
for
it
.
Next
()
{
hash
:=
it
.
Value
()
.
Bytes
()
hash
:=
it
.
Value
()
.
Bytes
()
p
.
lastReceivedHash
=
hash
p
.
LastHashReceived
=
time
.
Now
()
if
blockPool
.
HasCommonHash
(
hash
)
{
if
blockPool
.
HasCommonHash
(
hash
)
{
foundCommonHash
=
true
foundCommonHash
=
true
...
@@ -512,15 +518,16 @@ func (p *Peer) HandleInbound() {
...
@@ -512,15 +518,16 @@ func (p *Peer) HandleInbound() {
}
}
blockPool
.
AddHash
(
hash
)
blockPool
.
AddHash
(
hash
)
p
.
lastReceivedHash
=
hash
p
.
lastBlockReceived
=
time
.
Now
()
}
}
if
foundCommonHash
||
msg
.
Data
.
Len
()
==
0
{
/*
p
.
FetchBlocks
()
if foundCommonHash || msg.Data.Len() == 0 {
}
else
{
p.FetchBlocks()
} else {
p.FetchHashes()
}
*/
if
!
foundCommonHash
&&
msg
.
Data
.
Len
()
!=
0
{
p
.
FetchHashes
()
p
.
FetchHashes
()
}
}
...
@@ -539,19 +546,21 @@ func (p *Peer) HandleInbound() {
...
@@ -539,19 +546,21 @@ func (p *Peer) HandleInbound() {
p
.
lastBlockReceived
=
time
.
Now
()
p
.
lastBlockReceived
=
time
.
Now
()
}
}
var
err
error
/*
blockPool
.
CheckLinkAndProcess
(
func
(
block
*
ethchain
.
Block
)
{
var err error
err
=
p
.
ethereum
.
StateManager
()
.
Process
(
block
,
false
)
blockPool.CheckLinkAndProcess(func(block *ethchain.Block) {
})
err = p.ethereum.StateManager().Process(block, false)
})
if
err
!=
nil
{
peerlogger
.
Infoln
(
err
)
if err != nil {
}
else
{
peerlogger.Infoln(err)
// Don't trigger if there's just one block.
} else {
if
blockPool
.
Len
()
!=
0
&&
msg
.
Data
.
Len
()
>
1
{
// Don't trigger if there's just one block.
p
.
FetchBlocks
()
if blockPool.Len() != 0 && msg.Data.Len() > 1 {
p.FetchBlocks()
}
}
}
}
*/
}
}
}
}
}
}
...
@@ -560,10 +569,7 @@ func (p *Peer) HandleInbound() {
...
@@ -560,10 +569,7 @@ func (p *Peer) HandleInbound() {
p
.
Stop
()
p
.
Stop
()
}
}
func
(
self
*
Peer
)
FetchBlocks
()
{
func
(
self
*
Peer
)
FetchBlocks
(
hashes
[][]
byte
)
{
blockPool
:=
self
.
ethereum
.
blockPool
hashes
:=
blockPool
.
Take
(
100
,
self
)
if
len
(
hashes
)
>
0
{
if
len
(
hashes
)
>
0
{
self
.
QueueMessage
(
ethwire
.
NewMessage
(
ethwire
.
MsgGetBlocksTy
,
ethutil
.
ByteSliceToInterface
(
hashes
)))
self
.
QueueMessage
(
ethwire
.
NewMessage
(
ethwire
.
MsgGetBlocksTy
,
ethutil
.
ByteSliceToInterface
(
hashes
)))
}
}
...
@@ -572,7 +578,7 @@ func (self *Peer) FetchBlocks() {
...
@@ -572,7 +578,7 @@ func (self *Peer) FetchBlocks() {
func
(
self
*
Peer
)
FetchHashes
()
{
func
(
self
*
Peer
)
FetchHashes
()
{
blockPool
:=
self
.
ethereum
.
blockPool
blockPool
:=
self
.
ethereum
.
blockPool
if
self
.
td
.
Cmp
(
blockPool
.
td
)
>=
0
{
if
self
.
td
.
Cmp
(
self
.
ethereum
.
HighestTDPeer
()
)
>=
0
{
blockPool
.
td
=
self
.
td
blockPool
.
td
=
self
.
td
if
!
blockPool
.
HasLatestHash
()
{
if
!
blockPool
.
HasLatestHash
()
{
...
@@ -581,6 +587,10 @@ func (self *Peer) FetchHashes() {
...
@@ -581,6 +587,10 @@ func (self *Peer) FetchHashes() {
}
}
}
}
func
(
self
*
Peer
)
FetchingHashes
()
bool
{
return
time
.
Since
(
self
.
LastHashReceived
)
<
5
*
time
.
Second
}
// General update method
// General update method
func
(
self
*
Peer
)
update
()
{
func
(
self
*
Peer
)
update
()
{
serviceTimer
:=
time
.
NewTicker
(
5
*
time
.
Second
)
serviceTimer
:=
time
.
NewTicker
(
5
*
time
.
Second
)
...
@@ -589,11 +599,22 @@ out:
...
@@ -589,11 +599,22 @@ out:
for
{
for
{
select
{
select
{
case
<-
serviceTimer
.
C
:
case
<-
serviceTimer
.
C
:
since
:=
time
.
Since
(
self
.
lastBlockReceived
)
if
self
.
IsCap
(
"eth"
)
{
if
since
>
10
*
time
.
Second
&&
self
.
ethereum
.
blockPool
.
Len
()
!=
0
&&
self
.
IsCap
(
"eth"
)
{
var
(
self
.
FetchHashes
()
sinceBlock
=
time
.
Since
(
self
.
lastBlockReceived
)
}
else
if
since
>
5
*
time
.
Second
{
sinceHash
=
time
.
Since
(
self
.
LastHashReceived
)
self
.
catchingUp
=
false
)
if
sinceBlock
>
5
*
time
.
Second
&&
sinceHash
>
5
*
time
.
Second
{
self
.
catchingUp
=
false
}
if
sinceHash
>
10
*
time
.
Second
&&
self
.
ethereum
.
blockPool
.
Len
()
!=
0
{
// XXX While this is completely and utterly incorrect, in order to do anything on the test net is to do it this way
// Assume that when fetching hashes timeouts, we are done.
//self.FetchHashes()
//self.FetchBlocks()
}
}
}
case
<-
self
.
quit
:
case
<-
self
.
quit
:
break
out
break
out
...
@@ -761,6 +782,14 @@ func (p *Peer) handleHandshake(msg *ethwire.Msg) {
...
@@ -761,6 +782,14 @@ func (p *Peer) handleHandshake(msg *ethwire.Msg) {
return
return
}
}
// Self connect detection
pubkey
:=
p
.
ethereum
.
KeyManager
()
.
PublicKey
()
if
bytes
.
Compare
(
pubkey
[
1
:
],
pub
)
==
0
{
p
.
Stop
()
return
}
usedPub
:=
0
usedPub
:=
0
// This peer is already added to the peerlist so we expect to find a double pubkey at least once
// This peer is already added to the peerlist so we expect to find a double pubkey at least once
eachPeer
(
p
.
ethereum
.
Peers
(),
func
(
peer
*
Peer
,
e
*
list
.
Element
)
{
eachPeer
(
p
.
ethereum
.
Peers
(),
func
(
peer
*
Peer
,
e
*
list
.
Element
)
{
...
@@ -779,16 +808,8 @@ func (p *Peer) handleHandshake(msg *ethwire.Msg) {
...
@@ -779,16 +808,8 @@ func (p *Peer) handleHandshake(msg *ethwire.Msg) {
// If this is an inbound connection send an ack back
// If this is an inbound connection send an ack back
if
p
.
inbound
{
if
p
.
inbound
{
p
.
port
=
uint16
(
port
)
p
.
port
=
uint16
(
port
)
// Self connect detection
pubkey
:=
p
.
ethereum
.
KeyManager
()
.
PublicKey
()
if
bytes
.
Compare
(
pubkey
,
p
.
pubkey
)
==
0
{
p
.
Stop
()
return
}
}
}
p
.
SetVersion
(
clientId
)
p
.
SetVersion
(
clientId
)
p
.
versionKnown
=
true
p
.
versionKnown
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment