Skip to content

Commit

Permalink
les: add Skip overflow check to GetBlockHeadersMsg handler (ethereum#…
Browse files Browse the repository at this point in the history
  • Loading branch information
zsfelfoldi authored and kielbarry committed Jul 9, 2018
1 parent 5720c7c commit d2a38b3
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions les/handler.go
Expand Up @@ -19,6 +19,7 @@ package les

import (
"encoding/binary"
"encoding/json"
"errors"
"fmt"
"math/big"
Expand Down Expand Up @@ -441,7 +442,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {

// Advance to the next header of the query
switch {
case query.Origin.Hash != (common.Hash{}) && query.Reverse:
case hashMode && query.Reverse:
// Hash based traversal towards the genesis block
for i := 0; i < int(query.Skip)+1; i++ {
if header := pm.blockchain.GetHeader(query.Origin.Hash, number); header != nil {
Expand All @@ -452,16 +453,26 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
break
}
}
case query.Origin.Hash != (common.Hash{}) && !query.Reverse:
case hashMode && !query.Reverse:
// Hash based traversal towards the leaf block
if header := pm.blockchain.GetHeaderByNumber(origin.Number.Uint64() + query.Skip + 1); header != nil {
if pm.blockchain.GetBlockHashesFromHash(header.Hash(), query.Skip+1)[query.Skip] == query.Origin.Hash {
query.Origin.Hash = header.Hash()
var (
current = origin.Number.Uint64()
next = current + query.Skip + 1
)
if next <= current {
infos, _ := json.MarshalIndent(p.Peer.Info(), "", " ")
p.Log().Warn("GetBlockHeaders skip overflow attack", "current", current, "skip", query.Skip, "next", next, "attacker", infos)
unknown = true
} else {
if header := pm.blockchain.GetHeaderByNumber(next); header != nil {
if pm.blockchain.GetBlockHashesFromHash(header.Hash(), query.Skip+1)[query.Skip] == query.Origin.Hash {
query.Origin.Hash = header.Hash()
} else {
unknown = true
}
} else {
unknown = true
}
} else {
unknown = true
}
case query.Reverse:
// Number based traversal towards the genesis block
Expand Down

0 comments on commit d2a38b3

Please sign in to comment.