2019-05-26 16:15:05 +00:00
|
|
|
// Copyright 2019 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-01-24 11:18:26 +00:00
|
|
|
package les
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ethereum/go-ethereum/eth"
|
2019-05-26 16:15:05 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2019-01-24 11:18:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ulc struct {
|
|
|
|
trustedKeys map[string]struct{}
|
|
|
|
minTrustedFraction int
|
|
|
|
}
|
|
|
|
|
2019-05-26 16:15:05 +00:00
|
|
|
// newULC creates and returns a ultra light client instance.
|
2019-01-24 11:18:26 +00:00
|
|
|
func newULC(ulcConfig *eth.ULCConfig) *ulc {
|
|
|
|
if ulcConfig == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
m := make(map[string]struct{}, len(ulcConfig.TrustedServers))
|
|
|
|
for _, id := range ulcConfig.TrustedServers {
|
2019-06-07 13:31:00 +00:00
|
|
|
node, err := enode.Parse(enode.ValidSchemes, id)
|
2019-01-24 11:18:26 +00:00
|
|
|
if err != nil {
|
2019-05-26 16:15:05 +00:00
|
|
|
log.Debug("Failed to parse trusted server", "id", id, "err", err)
|
2019-01-24 11:18:26 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
m[node.ID().String()] = struct{}{}
|
|
|
|
}
|
|
|
|
return &ulc{m, ulcConfig.MinTrustedFraction}
|
|
|
|
}
|
|
|
|
|
2019-05-26 16:15:05 +00:00
|
|
|
// isTrusted return an indicator that whether the specified peer is trusted.
|
2019-01-24 11:18:26 +00:00
|
|
|
func (u *ulc) isTrusted(p enode.ID) bool {
|
|
|
|
if u.trustedKeys == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
_, ok := u.trustedKeys[p.String()]
|
|
|
|
return ok
|
|
|
|
}
|