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
28b39267
Commit
28b39267
authored
10 years ago
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core, eth: verify td of received blocks
parent
9b6e8f61
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
3 deletions
+25
-3
chain_manager.go
core/chain_manager.go
+4
-2
handler.go
eth/handler.go
+21
-1
No files found.
core/chain_manager.go
View file @
28b39267
...
...
@@ -511,6 +511,10 @@ func (self *ChainManager) InsertChain(chain types.Blocks) (int, error) {
if
block
==
nil
{
continue
}
// Setting block.Td regardless of error (known for example) prevents errors down the line
// in the protocol handler
block
.
Td
=
new
(
big
.
Int
)
.
Set
(
CalculateTD
(
block
,
self
.
GetBlock
(
block
.
ParentHash
())))
// Call in to the block processor and check for errors. It's likely that if one block fails
// all others will fail too (unless a known block is returned).
logs
,
err
:=
self
.
processor
.
Process
(
block
)
...
...
@@ -545,8 +549,6 @@ func (self *ChainManager) InsertChain(chain types.Blocks) (int, error) {
return
i
,
err
}
block
.
Td
=
new
(
big
.
Int
)
.
Set
(
CalculateTD
(
block
,
self
.
GetBlock
(
block
.
ParentHash
())))
self
.
mu
.
Lock
()
{
cblock
:=
self
.
currentBlock
...
...
This diff is collapsed.
Click to expand it.
eth/handler.go
View file @
28b39267
...
...
@@ -125,6 +125,7 @@ func NewProtocolManager(protocolVersion, networkId int, mux *event.TypeMux, txpo
func
(
pm
*
ProtocolManager
)
removePeer
(
peer
*
peer
)
{
pm
.
pmu
.
Lock
()
defer
pm
.
pmu
.
Unlock
()
pm
.
downloader
.
UnregisterPeer
(
peer
.
id
)
delete
(
pm
.
peers
,
peer
.
id
)
}
...
...
@@ -223,7 +224,6 @@ func (pm *ProtocolManager) handle(p *peer) error {
pm
.
downloader
.
RegisterPeer
(
p
.
id
,
p
.
recentHash
,
p
.
requestHashes
,
p
.
requestBlocks
)
defer
func
()
{
pm
.
downloader
.
UnregisterPeer
(
p
.
id
)
pm
.
removePeer
(
p
)
}()
...
...
@@ -392,6 +392,12 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
return
nil
}
if
err
:=
self
.
verifyTd
(
p
,
request
);
err
!=
nil
{
glog
.
V
(
logger
.
Error
)
.
Infoln
(
err
)
// XXX for now return nil so it won't disconnect (we should in the future)
return
nil
}
self
.
BroadcastBlock
(
hash
,
request
.
Block
)
}
else
{
// adding blocks is synchronous
...
...
@@ -406,6 +412,10 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
glog
.
V
(
logger
.
Detail
)
.
Infoln
(
"downloader err:"
,
err
)
return
}
if
err
:=
self
.
verifyTd
(
p
,
request
);
err
!=
nil
{
glog
.
V
(
logger
.
Error
)
.
Infoln
(
err
)
return
}
self
.
BroadcastBlock
(
hash
,
request
.
Block
)
}()
}
...
...
@@ -415,6 +425,16 @@ func (self *ProtocolManager) handleMsg(p *peer) error {
return
nil
}
func
(
pm
*
ProtocolManager
)
verifyTd
(
peer
*
peer
,
request
newBlockMsgData
)
error
{
if
request
.
Block
.
Td
.
Cmp
(
request
.
TD
)
!=
0
{
glog
.
V
(
logger
.
Detail
)
.
Infoln
(
peer
)
return
fmt
.
Errorf
(
"invalid TD on block(%v) from peer(%s): block.td=%v, request.td=%v"
,
request
.
Block
.
Number
(),
peer
.
id
,
request
.
Block
.
Td
,
request
.
TD
)
}
return
nil
}
// BroadcastBlock will propagate the block to its connected peers. It will sort
// out which peers do not contain the block in their block set and will do a
// sqrt(peers) to determine the amount of peers we broadcast to.
...
...
This diff is collapsed.
Click to expand it.
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