quorum/ethereum.go

344 lines
7.2 KiB
Go
Raw Normal View History

2014-01-23 11:14:01 -08:00
package eth
import (
"container/list"
2014-02-14 14:56:09 -08:00
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
2014-02-10 11:59:31 -08:00
"io/ioutil"
2014-01-23 11:14:01 -08:00
"log"
"net"
2014-02-10 11:59:31 -08:00
"net/http"
2014-02-02 10:22:39 -08:00
"strconv"
2014-02-02 07:15:39 -08:00
"sync"
2014-01-23 11:14:01 -08:00
"sync/atomic"
"time"
)
func eachPeer(peers *list.List, callback func(*Peer, *list.Element)) {
// Loop thru the peers and close them (if we had them)
for e := peers.Front(); e != nil; e = e.Next() {
if peer, ok := e.Value.(*Peer); ok {
callback(peer, e)
}
}
}
const (
processReapingTimeout = 60 // TODO increase
)
type Ethereum struct {
// Channel for shutting down the ethereum
shutdownChan chan bool
2014-02-02 10:22:39 -08:00
quit chan bool
2014-01-23 11:14:01 -08:00
// DB interface
//db *ethdb.LDBDatabase
db ethutil.Database
2014-01-23 11:14:01 -08:00
// Block manager for processing new blocks and managing the block chain
BlockManager *ethchain.BlockManager
// The transaction pool. Transaction can be pushed on this pool
// for later including in the blocks
TxPool *ethchain.TxPool
// Peers (NYI)
peers *list.List
// Nonce
Nonce uint64
2014-02-01 12:30:54 -08:00
Addr net.Addr
Port string
2014-02-01 12:30:54 -08:00
2014-02-02 07:15:39 -08:00
peerMut sync.Mutex
// Capabilities for outgoing peers
serverCaps Caps
2014-02-02 10:22:39 -08:00
nat NAT
// Specifies the desired amount of maximum peers
MaxPeers int
2014-01-23 11:14:01 -08:00
}
2014-02-02 10:44:47 -08:00
func New(caps Caps, usePnp bool) (*Ethereum, error) {
2014-02-25 02:21:03 -08:00
db, err := ethdb.NewLDBDatabase("database")
2014-02-14 16:34:18 -08:00
//db, err := ethdb.NewMemDatabase()
2014-01-23 11:14:01 -08:00
if err != nil {
return nil, err
}
2014-02-02 10:44:47 -08:00
var nat NAT
if usePnp {
nat, err = Discover()
if err != nil {
ethutil.Config.Log.Debugln("UPnP failed", err)
2014-02-02 10:44:47 -08:00
}
2014-02-02 10:22:39 -08:00
}
2014-01-23 11:14:01 -08:00
ethutil.Config.Db = db
nonce, _ := ethutil.RandomUint64()
ethereum := &Ethereum{
shutdownChan: make(chan bool),
2014-02-02 10:22:39 -08:00
quit: make(chan bool),
2014-01-23 11:14:01 -08:00
db: db,
peers: list.New(),
Nonce: nonce,
2014-02-02 07:15:39 -08:00
serverCaps: caps,
2014-02-02 10:22:39 -08:00
nat: nat,
2014-01-23 11:14:01 -08:00
}
ethereum.TxPool = ethchain.NewTxPool()
ethereum.TxPool.Speaker = ethereum
2014-01-24 08:48:21 -08:00
ethereum.BlockManager = ethchain.NewBlockManager(ethereum)
2014-01-23 11:14:01 -08:00
ethereum.TxPool.BlockManager = ethereum.BlockManager
ethereum.BlockManager.TransactionPool = ethereum.TxPool
// Start the tx pool
ethereum.TxPool.Start()
2014-01-23 11:14:01 -08:00
return ethereum, nil
}
func (s *Ethereum) AddPeer(conn net.Conn) {
peer := NewPeer(conn, s, true)
if peer != nil && s.peers.Len() < s.MaxPeers {
2014-02-02 07:15:39 -08:00
s.peers.PushBack(peer)
peer.Start()
2014-01-23 11:14:01 -08:00
}
}
func (s *Ethereum) ProcessPeerList(addrs []string) {
for _, addr := range addrs {
// TODO Probably requires some sanity checks
s.ConnectToPeer(addr)
}
}
func (s *Ethereum) ConnectToPeer(addr string) error {
2014-02-17 16:34:06 -08:00
if s.peers.Len() < s.MaxPeers {
var alreadyConnected bool
eachPeer(s.peers, func(p *Peer, v *list.Element) {
if p.conn == nil {
return
}
phost, _, _ := net.SplitHostPort(p.conn.RemoteAddr().String())
ahost, _, _ := net.SplitHostPort(addr)
if phost == ahost {
alreadyConnected = true
return
}
})
if alreadyConnected {
return nil
}
2014-02-17 16:34:06 -08:00
peer := NewOutboundPeer(addr, s, s.serverCaps)
2014-02-17 16:34:06 -08:00
s.peers.PushBack(peer)
2014-01-23 11:14:01 -08:00
2014-02-17 16:34:06 -08:00
log.Printf("[SERV] Adding peer %d / %d\n", s.peers.Len(), s.MaxPeers)
}
2014-01-23 11:14:01 -08:00
return nil
}
func (s *Ethereum) OutboundPeers() []*Peer {
// Create a new peer slice with at least the length of the total peers
outboundPeers := make([]*Peer, s.peers.Len())
length := 0
eachPeer(s.peers, func(p *Peer, e *list.Element) {
2014-01-31 02:18:10 -08:00
if !p.inbound && p.conn != nil {
2014-01-23 11:14:01 -08:00
outboundPeers[length] = p
length++
}
})
return outboundPeers[:length]
}
func (s *Ethereum) InboundPeers() []*Peer {
// Create a new peer slice with at least the length of the total peers
inboundPeers := make([]*Peer, s.peers.Len())
length := 0
eachPeer(s.peers, func(p *Peer, e *list.Element) {
if p.inbound {
inboundPeers[length] = p
length++
}
})
return inboundPeers[:length]
}
func (s *Ethereum) InOutPeers() []*Peer {
2014-02-02 07:15:39 -08:00
// Reap the dead peers first
s.reapPeers()
// Create a new peer slice with at least the length of the total peers
inboundPeers := make([]*Peer, s.peers.Len())
length := 0
eachPeer(s.peers, func(p *Peer, e *list.Element) {
2014-02-02 07:15:39 -08:00
// Only return peers with an actual ip
if len(p.host) > 0 {
inboundPeers[length] = p
length++
}
})
return inboundPeers[:length]
}
2014-02-01 16:39:06 -08:00
func (s *Ethereum) Broadcast(msgType ethwire.MsgType, data []interface{}) {
msg := ethwire.NewMessage(msgType, data)
2014-02-02 07:15:39 -08:00
s.BroadcastMsg(msg)
}
func (s *Ethereum) BroadcastMsg(msg *ethwire.Msg) {
2014-01-23 11:14:01 -08:00
eachPeer(s.peers, func(p *Peer, e *list.Element) {
p.QueueMessage(msg)
2014-01-23 11:14:01 -08:00
})
}
func (s *Ethereum) Peers() *list.List {
return s.peers
}
2014-02-02 07:15:39 -08:00
func (s *Ethereum) reapPeers() {
s.peerMut.Lock()
defer s.peerMut.Unlock()
eachPeer(s.peers, func(p *Peer, e *list.Element) {
if atomic.LoadInt32(&p.disconnect) == 1 || (p.inbound && (time.Now().Unix()-p.lastPong) > int64(5*time.Minute)) {
s.peers.Remove(e)
}
})
}
2014-01-23 11:14:01 -08:00
2014-02-02 07:15:39 -08:00
func (s *Ethereum) ReapDeadPeerHandler() {
reapTimer := time.NewTicker(processReapingTimeout * time.Second)
for {
select {
case <-reapTimer.C:
s.reapPeers()
}
2014-01-23 11:14:01 -08:00
}
}
// Start the ethereum
func (s *Ethereum) Start() {
2014-01-27 13:13:46 -08:00
// Bind to addr and port
ln, err := net.Listen("tcp", ":"+s.Port)
2014-01-23 11:14:01 -08:00
if err != nil {
2014-02-01 16:39:06 -08:00
log.Println("Connection listening disabled. Acting as client")
2014-01-23 11:14:01 -08:00
} else {
// Starting accepting connections
ethutil.Config.Log.Infoln("Ready and accepting connections")
2014-02-02 07:15:39 -08:00
// Start the peer handler
go s.peerHandler(ln)
2014-01-23 11:14:01 -08:00
}
2014-02-02 10:44:47 -08:00
if s.nat != nil {
go s.upnpUpdateThread()
}
2014-02-02 10:22:39 -08:00
2014-01-23 11:14:01 -08:00
// Start the reaping processes
2014-02-02 07:15:39 -08:00
go s.ReapDeadPeerHandler()
2014-01-23 11:14:01 -08:00
2014-02-11 09:46:28 -08:00
if ethutil.Config.Seed {
ethutil.Config.Log.Debugln("Seeding")
2014-02-11 09:46:28 -08:00
// Testnet seed bootstrapping
2014-02-19 02:35:17 -08:00
resp, err := http.Get("http://www.ethereum.org/servers.poc3.txt")
2014-02-11 09:46:28 -08:00
if err != nil {
log.Println("Fetching seed failed:", err)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Println("Reading seed failed:", err)
return
}
2014-02-10 11:59:31 -08:00
2014-02-11 09:46:28 -08:00
s.ConnectToPeer(string(body))
}
2014-01-23 11:14:01 -08:00
}
2014-02-02 07:15:39 -08:00
func (s *Ethereum) peerHandler(listener net.Listener) {
for {
conn, err := listener.Accept()
if err != nil {
ethutil.Config.Log.Debugln(err)
2014-02-02 07:15:39 -08:00
continue
}
go s.AddPeer(conn)
}
}
2014-01-23 11:14:01 -08:00
func (s *Ethereum) Stop() {
// Close the database
defer s.db.Close()
eachPeer(s.peers, func(p *Peer, e *list.Element) {
p.Stop()
})
2014-02-02 10:22:39 -08:00
close(s.quit)
2014-01-23 11:14:01 -08:00
s.TxPool.Stop()
s.BlockManager.Stop()
s.shutdownChan <- true
2014-01-23 11:14:01 -08:00
}
// This function will wait for a shutdown and resumes main thread execution
func (s *Ethereum) WaitForShutdown() {
<-s.shutdownChan
}
2014-02-02 10:22:39 -08:00
func (s *Ethereum) upnpUpdateThread() {
// Go off immediately to prevent code duplication, thereafter we renew
// lease every 15 minutes.
timer := time.NewTimer(0 * time.Second)
lport, _ := strconv.ParseInt(s.Port, 10, 16)
2014-02-02 10:22:39 -08:00
first := true
out:
for {
select {
case <-timer.C:
2014-02-02 10:44:47 -08:00
var err error
_, err = s.nat.AddPortMapping("TCP", int(lport), int(lport), "eth listen port", 20*60)
2014-02-02 10:22:39 -08:00
if err != nil {
ethutil.Config.Log.Debugln("can't add UPnP port mapping:", err)
2014-02-02 10:22:39 -08:00
break out
}
if first && err == nil {
2014-02-02 10:44:47 -08:00
_, err = s.nat.GetExternalAddress()
2014-02-02 10:22:39 -08:00
if err != nil {
ethutil.Config.Log.Debugln("UPnP can't get external address:", err)
2014-02-02 10:22:39 -08:00
continue out
}
first = false
}
timer.Reset(time.Minute * 15)
case <-s.quit:
break out
}
}
timer.Stop()
if err := s.nat.DeletePortMapping("TCP", int(lport), int(lport)); err != nil {
ethutil.Config.Log.Debugln("unable to remove UPnP port mapping:", err)
2014-02-02 10:22:39 -08:00
} else {
ethutil.Config.Log.Debugln("succesfully disestablished UPnP port mapping")
2014-02-02 10:22:39 -08:00
}
}