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
d68865f3
Commit
d68865f3
authored
Jul 26, 2016
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eth/downloader: fewer headers and futures too un ancestor lookup
parent
a724952f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
downloader.go
eth/downloader/downloader.go
+17
-9
No files found.
eth/downloader/downloader.go
View file @
d68865f3
...
...
@@ -558,11 +558,17 @@ func (d *Downloader) findAncestor(p *peer, height uint64) (uint64, error) {
if
head
>
height
{
head
=
height
}
from
:=
int64
(
head
)
-
int64
(
MaxHeaderFetch
)
+
1
from
:=
int64
(
head
)
-
int64
(
MaxHeaderFetch
)
if
from
<
0
{
from
=
0
}
go
p
.
getAbsHeaders
(
uint64
(
from
),
MaxHeaderFetch
,
0
,
false
)
// Span out with 15 block gaps into the future to catch bad head reports
limit
:=
2
*
MaxHeaderFetch
/
16
count
:=
1
+
int
((
int64
(
ceil
)
-
from
)
/
16
)
if
count
>
limit
{
count
=
limit
}
go
p
.
getAbsHeaders
(
uint64
(
from
),
count
,
15
,
false
)
// Wait for the remote response to the head fetch
number
,
hash
:=
uint64
(
0
),
common
.
Hash
{}
...
...
@@ -587,12 +593,8 @@ func (d *Downloader) findAncestor(p *peer, height uint64) (uint64, error) {
}
// Make sure the peer's reply conforms to the request
for
i
:=
0
;
i
<
len
(
headers
);
i
++
{
if
number
:=
headers
[
i
]
.
Number
.
Int64
();
number
!=
from
+
int64
(
i
)
{
glog
.
V
(
logger
.
Warn
)
.
Infof
(
"%v: head header set (item %d) broke chain ordering: requested %d, got %d"
,
p
,
i
,
from
+
int64
(
i
),
number
)
return
0
,
errInvalidChain
}
if
i
>
0
&&
headers
[
i
-
1
]
.
Hash
()
!=
headers
[
i
]
.
ParentHash
{
glog
.
V
(
logger
.
Warn
)
.
Infof
(
"%v: head header set (item %d) broke chain ancestry: expected [%x], got [%x]"
,
p
,
i
,
headers
[
i
-
1
]
.
Hash
()
.
Bytes
()[
:
4
],
headers
[
i
]
.
ParentHash
[
:
4
])
if
number
:=
headers
[
i
]
.
Number
.
Int64
();
number
!=
from
+
int64
(
i
)
*
16
{
glog
.
V
(
logger
.
Warn
)
.
Infof
(
"%v: head header set (item %d) broke chain ordering: requested %d, got %d"
,
p
,
i
,
from
+
int64
(
i
)
*
16
,
number
)
return
0
,
errInvalidChain
}
}
...
...
@@ -600,12 +602,18 @@ func (d *Downloader) findAncestor(p *peer, height uint64) (uint64, error) {
finished
=
true
for
i
:=
len
(
headers
)
-
1
;
i
>=
0
;
i
--
{
// Skip any headers that underflow/overflow our requested set
if
headers
[
i
]
.
Number
.
Int64
()
<
from
||
headers
[
i
]
.
Number
.
Uint64
()
>
head
{
if
headers
[
i
]
.
Number
.
Int64
()
<
from
||
headers
[
i
]
.
Number
.
Uint64
()
>
ceil
{
continue
}
// Otherwise check if we already know the header or not
if
(
d
.
mode
==
FullSync
&&
d
.
hasBlockAndState
(
headers
[
i
]
.
Hash
()))
||
(
d
.
mode
!=
FullSync
&&
d
.
hasHeader
(
headers
[
i
]
.
Hash
()))
{
number
,
hash
=
headers
[
i
]
.
Number
.
Uint64
(),
headers
[
i
]
.
Hash
()
// If every header is known, even future ones, the peer straight out lied about its head
if
number
>
height
&&
i
==
limit
-
1
{
glog
.
V
(
logger
.
Warn
)
.
Infof
(
"%v: lied about chain head: reported %d, found above %d"
,
p
,
height
,
number
)
return
0
,
errStallingPeer
}
break
}
}
...
...
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