mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 14:16:44 +00:00
synced up to go-ethereum 1.5.0-unstable develop branch major features: * api overhaul due to rpc v2 and node service stack interface changes * blockchain/ethereum contract interaction rewritten using abi/abigen (chequebook, ens) * swarm - cluster control CLI - migration and revamp of prehistoric eth-utils repo * poor man's end to end testing: scripted scenarios in swarm/test using swarm CLI * http proxy now handles 3 url schemes for 1) ens-enabled [bzz], 2) immutable [bzzi] and 3) raw manifest [bzzr] resolution * fixes issues with remote address setting, forwarding and syncing * new control flags to switch swap and sync on and off * placeholder basic implementation Ethereum Name Service * improved logging - now debug level is coherent regression: * uri based versioning support is dropped temporarily since state tree pruning does not guarantee historical record * registrar related functionality temporarily restricted - current ENS provides basic free and unrestricted Register/Resolve accounts/abi: * bind: repeated attempt deployment of contracts, validation against known code, transactor creation from private keys * accountmanager: getUnlocked snatch private key when unlocked cmd: * unlockAccount moved to utils/cmd and exported * getPassPhrase moved to utils/input and exported * accountcmds: reflect the change * js: GlobalRegistrar is dropped (ens) flags: * chequebook, bzzaccount, bzzport, bzzconfig, bzznoswap, bzznosync chequebook: * move from common/ to swarm/services * abigen-ised * specifies its own API (removed chequebook api from swarm/api) kademlia: * move from common to swarm/network/kademlia * address abstracted out to separate file + tests dns/ens/registrar: * moved from swarm/api to swarm/services/ens * implementation is basic placeholder before ENS is implemented * temporary rpc api via ens namespace * the old common/registrar is removed (also from eth/backend apis) swap: * the abstract swap module moved from common to swarm/services * now embedded in the swarm and chequebook specific setup (this will change) * safer chequebook deployment using abigen helpers * backend not field of swap params eth: * public accessor for GPO, needed to construct a PublicBlockChainAPI * extends ContractBackend in eth/bind.go with BalanceAt, GetTxReceipt and CodeAt API calls internal/web3ext * add js bindings for bzz, chequebook rpc apis swarm/api: * refactored api into smaller modules filesystem/storage/testapi * ethereum backend (needed for dns, swap, etc) moved to abi/bind * TODO: further refactor due to #2040 * swarm/api/http: now supports the 3 uri schemes * examples/album updated swarm/cmd: * migrate old eth-utils and modify into a cluster control CLI * bzzup now allows non-local gateway, endpoint specified as second argument swarm/network: * forwarder improved log messages, fixup condition on whether syncer is nil * hive extended with controls for testing support block read/write, swap/sync enabled/disabled * hive keepAlive launches with alarm in case no discover and no kaddb * fix IP address formatting issue [::1] -> became ::1 which refused to dial, now use discover.NewNode#String * integrate functionality for enabling/disabling sync and swap * allow nil sync state - improve syncer interface in protocol * fix SData slice out of bounds bug * fix disconnects by not replacing a node when bucket is full swarm/test * poor man's testing framework. scripts invoking swarm/cmd/swarm * added tests for basic scenarios connections, swap, sync swarm: * rewrite api using rpc v2 * blockchain comms via abi/abigen + eth.ContractBackend * integrate new flags
440 lines
12 KiB
Go
440 lines
12 KiB
Go
package kademlia
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
|
)
|
|
|
|
const (
|
|
bucketSize = 3
|
|
proxBinSize = 4
|
|
maxProx = 8
|
|
connRetryExp = 2
|
|
)
|
|
|
|
var (
|
|
purgeInterval = 42 * time.Hour
|
|
initialRetryInterval = 42 * 100 * time.Millisecond
|
|
maxIdleInterval = 42 * 10 * time.Second
|
|
)
|
|
|
|
type KadParams struct {
|
|
// adjustable parameters
|
|
MaxProx int
|
|
ProxBinSize int
|
|
BucketSize int
|
|
PurgeInterval time.Duration
|
|
InitialRetryInterval time.Duration
|
|
ConnRetryExp int
|
|
}
|
|
|
|
func NewKadParams() *KadParams {
|
|
return &KadParams{
|
|
MaxProx: maxProx,
|
|
ProxBinSize: proxBinSize,
|
|
BucketSize: bucketSize,
|
|
PurgeInterval: purgeInterval,
|
|
InitialRetryInterval: initialRetryInterval,
|
|
ConnRetryExp: connRetryExp,
|
|
}
|
|
}
|
|
|
|
// Kademlia is a table of active nodes
|
|
type Kademlia struct {
|
|
addr Address // immutable baseaddress of the table
|
|
*KadParams // Kademlia configuration parameters
|
|
proxLimit int // state, the PO of the first row of the most proximate bin
|
|
proxSize int // state, the number of peers in the most proximate bin
|
|
count int // number of active peers (w live connection)
|
|
buckets []*bucket // the actual bins
|
|
db *KadDb // kaddb, node record database
|
|
lock sync.RWMutex // mutex to access buckets
|
|
}
|
|
|
|
type Node interface {
|
|
Addr() Address
|
|
Url() string
|
|
LastActive() time.Time
|
|
Drop()
|
|
}
|
|
|
|
// public constructor
|
|
// add is the base address of the table
|
|
// params is KadParams configuration
|
|
func New(addr Address, params *KadParams) *Kademlia {
|
|
buckets := make([]*bucket, params.MaxProx+1)
|
|
for i, _ := range buckets {
|
|
buckets[i] = &bucket{size: params.BucketSize} // will initialise bucket{int(0),[]Node(nil),sync.Mutex}
|
|
}
|
|
glog.V(logger.Info).Infof("[KΛÐ] base address %v", addr)
|
|
|
|
// ! temporary hack fixme:
|
|
params.ProxBinSize = 4
|
|
return &Kademlia{
|
|
addr: addr,
|
|
KadParams: params,
|
|
buckets: buckets,
|
|
db: newKadDb(addr, params),
|
|
}
|
|
}
|
|
|
|
// accessor for KAD base address
|
|
func (self *Kademlia) Addr() Address {
|
|
return self.addr
|
|
}
|
|
|
|
// accessor for KAD active node count
|
|
func (self *Kademlia) Count() int {
|
|
defer self.lock.Unlock()
|
|
self.lock.Lock()
|
|
return self.count
|
|
}
|
|
|
|
// accessor for KAD active node count
|
|
func (self *Kademlia) DBCount() int {
|
|
return self.db.count()
|
|
}
|
|
|
|
// On is the entry point called when a new nodes is added
|
|
// unsafe in that node is not checked to be already active node (to be called once)
|
|
func (self *Kademlia) On(node Node, cb func(*NodeRecord, Node) error) (err error) {
|
|
defer self.lock.Unlock()
|
|
self.lock.Lock()
|
|
|
|
index := self.proximityBin(node.Addr())
|
|
record := self.db.findOrCreate(index, node.Addr(), node.Url())
|
|
// callback on add node
|
|
// setting the node on the record, set it checked (for connectivity)
|
|
record.node = node
|
|
|
|
if cb != nil {
|
|
err = cb(record, node)
|
|
glog.V(logger.Detail).Infof("[KΛÐ]: cb(%v, %v) ->%v", record, node, err)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to add node %v, callback error: %v", node.Addr(), err)
|
|
}
|
|
glog.V(logger.Info).Infof("[KΛÐ]: add node record %v with node %v", record, node)
|
|
}
|
|
record.connected = true
|
|
|
|
// insert in kademlia table of active nodes
|
|
bucket := self.buckets[index]
|
|
// if bucket is full insertion replaces the worst node
|
|
// TODO: give priority to peers with active traffic
|
|
replaced, err := bucket.insert(node)
|
|
if err != nil {
|
|
glog.V(logger.Debug).Infof("[KΛÐ]: node %v not needed: %v", node, err)
|
|
return err
|
|
// no prox adjustment needed
|
|
// do not change count
|
|
}
|
|
if replaced != nil {
|
|
glog.V(logger.Debug).Infof("[KΛÐ]: node %v replaced by %v ", replaced, node)
|
|
return
|
|
}
|
|
// new node added
|
|
glog.V(logger.Info).Infof("[KΛÐ]: add node %v to table", node)
|
|
self.count++
|
|
self.setProxLimit(index, false)
|
|
return
|
|
}
|
|
|
|
// is the entrypoint called when a node is taken offline
|
|
func (self *Kademlia) Off(node Node, cb func(*NodeRecord, Node)) (err error) {
|
|
self.lock.Lock()
|
|
defer self.lock.Unlock()
|
|
|
|
var found bool
|
|
index := self.proximityBin(node.Addr())
|
|
bucket := self.buckets[index]
|
|
for i := 0; i < len(bucket.nodes); i++ {
|
|
if node.Addr() == bucket.nodes[i].Addr() {
|
|
found = true
|
|
bucket.nodes = append(bucket.nodes[:i], bucket.nodes[(i+1):]...)
|
|
}
|
|
}
|
|
|
|
if !found {
|
|
return
|
|
}
|
|
glog.V(logger.Info).Infof("[KΛÐ]: remove node %v from table", node)
|
|
|
|
self.count--
|
|
if len(bucket.nodes) < bucket.size {
|
|
err = fmt.Errorf("insufficient nodes (%v) in bucket %v", len(bucket.nodes), index)
|
|
}
|
|
|
|
self.setProxLimit(index, true)
|
|
|
|
r := self.db.index[node.Addr()]
|
|
// callback on remove
|
|
if cb != nil {
|
|
cb(r, r.node)
|
|
}
|
|
r.node = nil
|
|
r.connected = false
|
|
|
|
return
|
|
}
|
|
|
|
// proxLimit is dynamically adjusted so that
|
|
// 1) there is no empty buckets in bin < proxLimit and
|
|
// 2) the sum of all items sare the maximpossible but lower than ProxBinSize
|
|
// adjust Prox (proxLimit and proxSize after an insertion/removal of nodes)
|
|
// caller holds the lock
|
|
func (self *Kademlia) setProxLimit(r int, off bool) {
|
|
// glog.V(logger.Info).Infof("[KΛÐ]: adjust proxbin for (bin: %v, off: %v)", r, off)
|
|
if r < self.proxLimit && len(self.buckets[r].nodes) > 0 {
|
|
return
|
|
}
|
|
glog.V(logger.Detail).Infof("[KΛÐ]: set proxbin (size: %v, limit: %v, bin: %v, off: %v)", self.proxSize, self.proxLimit, r, off)
|
|
if off {
|
|
self.proxSize--
|
|
for (self.proxSize < self.ProxBinSize || r < self.proxLimit) &&
|
|
self.proxLimit > 0 {
|
|
//
|
|
self.proxLimit--
|
|
self.proxSize += len(self.buckets[self.proxLimit].nodes)
|
|
glog.V(logger.Detail).Infof("[KΛÐ]: proxbin expansion (size: %v, limit: %v, bin: %v, off: %v)", self.proxSize, self.proxLimit, r, off)
|
|
}
|
|
glog.V(logger.Detail).Infof("%v", self)
|
|
return
|
|
}
|
|
self.proxSize++
|
|
for self.proxLimit < self.MaxProx &&
|
|
len(self.buckets[self.proxLimit].nodes) > 0 &&
|
|
self.proxSize-len(self.buckets[self.proxLimit].nodes) >= self.ProxBinSize {
|
|
//
|
|
self.proxSize -= len(self.buckets[self.proxLimit].nodes)
|
|
self.proxLimit++
|
|
glog.V(logger.Detail).Infof("[KΛÐ]: proxbin contraction (size: %v, limit: %v, bin: %v, off: %v)", self.proxSize, self.proxLimit, r, off)
|
|
}
|
|
glog.V(logger.Detail).Infof("%v", self)
|
|
|
|
}
|
|
|
|
/*
|
|
returns the list of nodes belonging to the same proximity bin
|
|
as the target. The most proximate bin will be the union of the bins between
|
|
proxLimit and MaxProx.
|
|
*/
|
|
func (self *Kademlia) FindClosest(target Address, max int) []Node {
|
|
defer self.lock.RUnlock()
|
|
self.lock.RLock()
|
|
r := nodesByDistance{
|
|
target: target,
|
|
}
|
|
index := self.proximityBin(target)
|
|
|
|
start := index
|
|
var down bool
|
|
if index >= self.proxLimit {
|
|
index = self.proxLimit
|
|
start = self.MaxProx
|
|
down = true
|
|
}
|
|
var n int
|
|
limit := max
|
|
if max == 0 {
|
|
limit = 1000
|
|
}
|
|
for {
|
|
|
|
bucket := self.buckets[start].nodes
|
|
for i := 0; i < len(bucket); i++ {
|
|
r.push(bucket[i], limit)
|
|
n++
|
|
}
|
|
if max == 0 && start <= index && (n > 0 || start == 0) || max > 0 && down && start <= index && (n >= limit || n == self.count || start == 0) {
|
|
break
|
|
}
|
|
if down {
|
|
start--
|
|
} else {
|
|
if start == self.MaxProx {
|
|
if index == 0 {
|
|
break
|
|
}
|
|
start = index - 1
|
|
down = true
|
|
} else {
|
|
start++
|
|
}
|
|
}
|
|
}
|
|
glog.V(logger.Detail).Infof("[KΛÐ]: serve %d (=<%d) nodes for target lookup %v (PO%d)", n, self.MaxProx, target, index)
|
|
return r.nodes
|
|
}
|
|
|
|
func (self *Kademlia) binsize(p int) int {
|
|
b := self.buckets[p]
|
|
defer b.lock.RUnlock()
|
|
b.lock.RLock()
|
|
return len(b.nodes)
|
|
}
|
|
|
|
func (self *Kademlia) FindBest() (node *NodeRecord, proxLimit int) {
|
|
return self.db.findBest(self.BucketSize, self.binsize)
|
|
}
|
|
|
|
// adds node records to kaddb (persisted node record db)
|
|
func (self *Kademlia) Add(nrs []*NodeRecord) {
|
|
self.db.add(nrs, self.proximityBin)
|
|
}
|
|
|
|
// in situ mutable bucket
|
|
type bucket struct {
|
|
size int
|
|
nodes []Node
|
|
lock sync.RWMutex
|
|
}
|
|
|
|
// nodesByDistance is a list of nodes, ordered by distance to target.
|
|
type nodesByDistance struct {
|
|
nodes []Node
|
|
target Address
|
|
}
|
|
|
|
func sortedByDistanceTo(target Address, slice []Node) bool {
|
|
var last Address
|
|
for i, node := range slice {
|
|
if i > 0 {
|
|
if target.ProxCmp(node.Addr(), last) < 0 {
|
|
return false
|
|
}
|
|
}
|
|
last = node.Addr()
|
|
}
|
|
return true
|
|
}
|
|
|
|
// push(node, max) adds the given node to the list, keeping the total size
|
|
// below max elements.
|
|
func (h *nodesByDistance) push(node Node, max int) {
|
|
// returns the firt index ix such that func(i) returns true
|
|
ix := sort.Search(len(h.nodes), func(i int) bool {
|
|
return h.target.ProxCmp(h.nodes[i].Addr(), node.Addr()) >= 0
|
|
})
|
|
|
|
if len(h.nodes) < max {
|
|
h.nodes = append(h.nodes, node)
|
|
}
|
|
if ix < len(h.nodes) {
|
|
copy(h.nodes[ix+1:], h.nodes[ix:])
|
|
h.nodes[ix] = node
|
|
}
|
|
}
|
|
|
|
// insert adds a peer to a bucket either by appending to existing items if
|
|
// bucket length does not exceed bucketSize, or by replacing the worst
|
|
// Node in the bucket
|
|
func (self *bucket) insert(node Node) (replaced Node, err error) {
|
|
self.lock.Lock()
|
|
defer self.lock.Unlock()
|
|
if len(self.nodes) >= self.size { // >= allows us to add peers beyond the bucketsize limitation
|
|
// dev p2p kicks out nodes idle for > 30 s, so here we never replace nodes if
|
|
// bucket is full
|
|
return nil, fmt.Errorf("bucket full")
|
|
}
|
|
self.nodes = append(self.nodes, node)
|
|
return
|
|
}
|
|
|
|
func (self *bucket) length(node Node) int {
|
|
self.lock.Lock()
|
|
defer self.lock.Unlock()
|
|
return len(self.nodes)
|
|
}
|
|
|
|
/*
|
|
Taking the proximity order relative to a fix point x classifies the points in
|
|
the space (n byte long byte sequences) into bins. Items in each are at
|
|
most half as distant from x as items in the previous bin. Given a sample of
|
|
uniformly distributed items (a hash function over arbitrary sequence) the
|
|
proximity scale maps onto series of subsets with cardinalities on a negative
|
|
exponential scale.
|
|
|
|
It also has the property that any two item belonging to the same bin are at
|
|
most half as distant from each other as they are from x.
|
|
|
|
If we think of random sample of items in the bins as connections in a network of interconnected nodes than relative proximity can serve as the basis for local
|
|
decisions for graph traversal where the task is to find a route between two
|
|
points. Since in every hop, the finite distance halves, there is
|
|
a guaranteed constant maximum limit on the number of hops needed to reach one
|
|
node from the other.
|
|
*/
|
|
|
|
func (self *Kademlia) proximityBin(other Address) (ret int) {
|
|
ret = proximity(self.addr, other)
|
|
if ret > self.MaxProx {
|
|
ret = self.MaxProx
|
|
}
|
|
return
|
|
}
|
|
|
|
// provides keyrange for chunk db iteration
|
|
func (self *Kademlia) KeyRange(other Address) (start, stop Address) {
|
|
defer self.lock.RUnlock()
|
|
self.lock.RLock()
|
|
return KeyRange(self.addr, other, self.proxLimit)
|
|
}
|
|
|
|
// save persists kaddb on disk (written to file on path in json format.
|
|
func (self *Kademlia) Save(path string, cb func(*NodeRecord, Node)) error {
|
|
return self.db.save(path, cb)
|
|
}
|
|
|
|
// Load(path) loads the node record database (kaddb) from file on path.
|
|
func (self *Kademlia) Load(path string, cb func(*NodeRecord, Node) error) (err error) {
|
|
return self.db.load(path, cb)
|
|
}
|
|
|
|
// kademlia table + kaddb table displayed with ascii
|
|
// callerholds the lock
|
|
func (self *Kademlia) String() string {
|
|
|
|
var rows []string
|
|
rows = append(rows, "=========================================================================")
|
|
rows = append(rows, fmt.Sprintf("KΛÐΞMLIΛ hive: queen's address: %v, population: %d (%d)", self.addr, self.Count(), self.DBCount()))
|
|
rows = append(rows, fmt.Sprintf("%v : MaxProx: %d, ProxBinSize: %d, BucketSize: %d, proxLimit: %d, proxSize: %d", time.Now(), self.MaxProx, self.ProxBinSize, self.BucketSize, self.proxLimit, self.proxSize))
|
|
|
|
for i, b := range self.buckets {
|
|
|
|
if i == self.proxLimit {
|
|
rows = append(rows, fmt.Sprintf("===================== PROX LIMIT: %d =================================", i))
|
|
}
|
|
row := []string{fmt.Sprintf("%03d", i), fmt.Sprintf("%2d", len(b.nodes))}
|
|
var k int
|
|
c := self.db.cursors[i]
|
|
for ; k < len(b.nodes); k++ {
|
|
p := b.nodes[(c+k)%len(b.nodes)]
|
|
row = append(row, fmt.Sprintf("%s", p.Addr().String()[:8]))
|
|
if k == 3 {
|
|
break
|
|
}
|
|
}
|
|
for ; k < 3; k++ {
|
|
row = append(row, " ")
|
|
}
|
|
row = append(row, fmt.Sprintf("| %2d %2d", len(self.db.Nodes[i]), self.db.cursors[i]))
|
|
|
|
for j, p := range self.db.Nodes[i] {
|
|
row = append(row, fmt.Sprintf("%08x", p.Addr[:4]))
|
|
if j == 2 {
|
|
break
|
|
}
|
|
}
|
|
rows = append(rows, strings.Join(row, " "))
|
|
if i == self.MaxProx {
|
|
break
|
|
}
|
|
}
|
|
rows = append(rows, "=========================================================================")
|
|
return strings.Join(rows, "\n")
|
|
}
|