mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-14 16:55:53 +00:00
cmd/utils, eth: minor polishes on whitelist code
This commit is contained in:
parent
48b70ecff1
commit
31b3334922
@ -1077,30 +1077,25 @@ func setEthash(ctx *cli.Context, cfg *eth.Config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func setWhitelist(ctx *cli.Context, cfg *eth.Config) {
|
func setWhitelist(ctx *cli.Context, cfg *eth.Config) {
|
||||||
if ctx.GlobalIsSet(WhitelistFlag.Name) {
|
whitelist := ctx.GlobalString(WhitelistFlag.Name)
|
||||||
entries := strings.Split(ctx.String(WhitelistFlag.Name), ",")
|
if whitelist == "" {
|
||||||
whitelist := make(map[uint64]common.Hash)
|
return
|
||||||
for _, entry := range entries {
|
|
||||||
split := strings.SplitN(entry, "=", 2)
|
|
||||||
if len(split) != 2 {
|
|
||||||
Fatalf("invalid whitelist entry: %s", entry)
|
|
||||||
}
|
}
|
||||||
|
cfg.Whitelist = make(map[uint64]common.Hash)
|
||||||
bn, err := strconv.ParseUint(split[0], 0, 64)
|
for _, entry := range strings.Split(whitelist, ",") {
|
||||||
|
parts := strings.Split(entry, "=")
|
||||||
|
if len(parts) != 2 {
|
||||||
|
Fatalf("Invalid whitelist entry: %s", entry)
|
||||||
|
}
|
||||||
|
number, err := strconv.ParseUint(parts[0], 0, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Fatalf("Invalid whitelist block number %s: %v", split[0], err)
|
Fatalf("Invalid whitelist block number %s: %v", parts[0], err)
|
||||||
}
|
}
|
||||||
|
var hash common.Hash
|
||||||
hash := common.Hash{}
|
if err = hash.UnmarshalText([]byte(parts[1])); err != nil {
|
||||||
err = hash.UnmarshalText([]byte(split[1]))
|
Fatalf("Invalid whitelist hash %s: %v", parts[1], err)
|
||||||
if err != nil {
|
|
||||||
Fatalf("Invalid whitelist hash %s: %v", split[1], err)
|
|
||||||
}
|
}
|
||||||
|
cfg.Whitelist[number] = hash
|
||||||
whitelist[bn] = hash
|
|
||||||
}
|
|
||||||
|
|
||||||
cfg.Whitelist = whitelist
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
package eth
|
package eth
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -311,17 +310,13 @@ func (pm *ProtocolManager) handle(p *peer) error {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we have any explicit whitelist block hashes, request them
|
// If we have any explicit whitelist block hashes, request them
|
||||||
for bn := range pm.whitelist {
|
for number := range pm.whitelist {
|
||||||
p.Log().Debug("Requesting whitelist block", "number", bn)
|
if err := p.RequestHeadersByNumber(number, 1, 0, false); err != nil {
|
||||||
if err := p.RequestHeadersByNumber(bn, 1, 0, false); err != nil {
|
|
||||||
p.Log().Error("whitelist request failed", "err", err, "number", bn, "peer", p.id)
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Handle incoming messages until the connection is torn down
|
||||||
// main loop. handle incoming messages.
|
|
||||||
for {
|
for {
|
||||||
if err := pm.handleMsg(p); err != nil {
|
if err := pm.handleMsg(p); err != nil {
|
||||||
p.Log().Debug("Ethereum message handling failed", "err", err)
|
p.Log().Debug("Ethereum message handling failed", "err", err)
|
||||||
@ -466,16 +461,6 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
|
|||||||
// Filter out any explicitly requested headers, deliver the rest to the downloader
|
// Filter out any explicitly requested headers, deliver the rest to the downloader
|
||||||
filter := len(headers) == 1
|
filter := len(headers) == 1
|
||||||
if filter {
|
if filter {
|
||||||
// Check for any responses not matching our whitelist
|
|
||||||
if expected, ok := pm.whitelist[headers[0].Number.Uint64()]; ok {
|
|
||||||
actual := headers[0].Hash()
|
|
||||||
if !bytes.Equal(expected.Bytes(), actual.Bytes()) {
|
|
||||||
p.Log().Info("Dropping peer with non-matching whitelist block", "number", headers[0].Number.Uint64(), "hash", actual, "expected", expected)
|
|
||||||
return errors.New("whitelist block mismatch")
|
|
||||||
}
|
|
||||||
p.Log().Debug("Whitelist block verified", "number", headers[0].Number.Uint64(), "hash", expected)
|
|
||||||
}
|
|
||||||
|
|
||||||
// If it's a potential DAO fork check, validate against the rules
|
// If it's a potential DAO fork check, validate against the rules
|
||||||
if p.forkDrop != nil && pm.chainconfig.DAOForkBlock.Cmp(headers[0].Number) == 0 {
|
if p.forkDrop != nil && pm.chainconfig.DAOForkBlock.Cmp(headers[0].Number) == 0 {
|
||||||
// Disable the fork drop timer
|
// Disable the fork drop timer
|
||||||
@ -490,6 +475,14 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
|
|||||||
p.Log().Debug("Verified to be on the same side of the DAO fork")
|
p.Log().Debug("Verified to be on the same side of the DAO fork")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
// Otherwise if it's a whitelisted block, validate against the set
|
||||||
|
if want, ok := pm.whitelist[headers[0].Number.Uint64()]; ok {
|
||||||
|
if hash := headers[0].Hash(); want != hash {
|
||||||
|
p.Log().Info("Whitelist mismatch, dropping peer", "number", headers[0].Number.Uint64(), "hash", hash, "want", want)
|
||||||
|
return errors.New("whitelist block mismatch")
|
||||||
|
}
|
||||||
|
p.Log().Debug("Whitelist block verified", "number", headers[0].Number.Uint64(), "hash", want)
|
||||||
|
}
|
||||||
// Irrelevant of the fork checks, send the header to the fetcher just in case
|
// Irrelevant of the fork checks, send the header to the fetcher just in case
|
||||||
headers = pm.fetcher.FilterHeaders(p.id, headers, time.Now())
|
headers = pm.fetcher.FilterHeaders(p.id, headers, time.Now())
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user