aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
blob: a6cb78b1fcad48af1ae9c6182d0328563a930c13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
package eth

import (
    "container/list"
    "fmt"
    "github.com/ethereum/eth-go/ethchain"
    "github.com/ethereum/eth-go/ethdb"
    "github.com/ethereum/eth-go/ethrpc"
    "github.com/ethereum/eth-go/ethutil"
    "github.com/ethereum/eth-go/ethwire"
    "io/ioutil"
    "log"
    "math/rand"
    "net"
    "net/http"
    "strconv"
    "strings"
    "sync"
    "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
    quit         chan bool
    // DB interface
    //db *ethdb.LDBDatabase
    db ethutil.Database
    // State manager for processing new blocks and managing the over all states
    stateManager *ethchain.StateManager
    // The transaction pool. Transaction can be pushed on this pool
    // for later including in the blocks
    txPool *ethchain.TxPool
    // The canonical chain
    blockChain *ethchain.BlockChain
    // Peers (NYI)
    peers *list.List
    // Nonce
    Nonce uint64

    Addr net.Addr
    Port string

    peerMut sync.Mutex

    // Capabilities for outgoing peers
    serverCaps Caps

    nat NAT

    // Specifies the desired amount of maximum peers
    MaxPeers int

    Mining bool

    listening bool

    reactor *ethutil.ReactorEngine

    RpcServer *ethrpc.JsonRpcServer
}

func New(caps Caps, usePnp bool) (*Ethereum, error) {
    db, err := ethdb.NewLDBDatabase("database")
    //db, err := ethdb.NewMemDatabase()
    if err != nil {
        return nil, err
    }

    var nat NAT
    if usePnp {
        nat, err = Discover()
        if err != nil {
            ethutil.Config.Log.Debugln("UPnP failed", err)
        }
    }

    ethutil.Config.Db = db

    nonce, _ := ethutil.RandomUint64()
    ethereum := &Ethereum{
        shutdownChan: make(chan bool),
        quit:         make(chan bool),
        db:           db,
        peers:        list.New(),
        Nonce:        nonce,
        serverCaps:   caps,
        nat:          nat,
    }
    ethereum.reactor = ethutil.NewReactorEngine()

    ethereum.txPool = ethchain.NewTxPool(ethereum)
    ethereum.blockChain = ethchain.NewBlockChain(ethereum)
    ethereum.stateManager = ethchain.NewStateManager(ethereum)

    // Start the tx pool
    ethereum.txPool.Start()

    return ethereum, nil
}

func (s *Ethereum) Reactor() *ethutil.ReactorEngine {
    return s.reactor
}

func (s *Ethereum) BlockChain() *ethchain.BlockChain {
    return s.blockChain
}

func (s *Ethereum) StateManager() *ethchain.StateManager {
    return s.stateManager
}

func (s *Ethereum) TxPool() *ethchain.TxPool {
    return s.txPool
}

func (s *Ethereum) ServerCaps() Caps {
    return s.serverCaps
}
func (s *Ethereum) IsMining() bool {
    return s.Mining
}
func (s *Ethereum) PeerCount() int {
    return s.peers.Len()
}
func (s *Ethereum) IsUpToDate() bool {
    upToDate := true
    eachPeer(s.peers, func(peer *Peer, e *list.Element) {
        if atomic.LoadInt32(&peer.connected) == 1 {
            if peer.catchingUp == true {
                upToDate = false
            }
        }
    })
    return upToDate
}
func (s *Ethereum) PushPeer(peer *Peer) {
    s.peers.PushBack(peer)
}
func (s *Ethereum) IsListening() bool {
    return s.listening
}

func (s *Ethereum) AddPeer(conn net.Conn) {
    peer := NewPeer(conn, s, true)

    if peer != nil {
        if s.peers.Len() < s.MaxPeers {
            peer.Start()
        } else {
            ethutil.Config.Log.Debugf("[SERV] Max connected peers reached. Not adding incoming peer.")
        }
    }
}

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 {
    if s.peers.Len() < s.MaxPeers {
        var alreadyConnected bool

        ahost, _, _ := net.SplitHostPort(addr)
        var chost string

        ips, err := net.LookupIP(ahost)

        if err != nil {
            return err
        } else {
            // If more then one ip is available try stripping away the ipv6 ones
            if len(ips) > 1 {
                var ipsv4 []net.IP
                // For now remove the ipv6 addresses
                for _, ip := range ips {
                    if strings.Contains(ip.String(), "::") {
                        continue
                    } else {
                        ipsv4 = append(ipsv4, ip)
                    }
                }
                if len(ipsv4) == 0 {
                    return fmt.Errorf("[SERV] No IPV4 addresses available for hostname")
                }

                // Pick a random ipv4 address, simulating round-robin DNS.
                rand.Seed(time.Now().UTC().UnixNano())
                i := rand.Intn(len(ipsv4))
                chost = ipsv4[i].String()
            } else {
                if len(ips) == 0 {
                    return fmt.Errorf("[SERV] No IPs resolved for the given hostname")
                    return nil
                }
                chost = ips[0].String()
            }
        }

        eachPeer(s.peers, func(p *Peer, v *list.Element) {
            if p.conn == nil {
                return
            }
            phost, _, _ := net.SplitHostPort(p.conn.RemoteAddr().String())

            if phost == chost {
                alreadyConnected = true
                //ethutil.Config.Log.Debugf("[SERV] Peer %s already added.\n", chost)
                return
            }
        })

        if alreadyConnected {
            return nil
        }

        NewOutboundPeer(addr, s, s.serverCaps)
    }

    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) {
        if !p.inbound && p.conn != nil {
            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 {
    // 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) {
        // Only return peers with an actual ip
        if len(p.host) > 0 {
            inboundPeers[length] = p
            length++
        }
    })

    return inboundPeers[:length]
}

func (s *Ethereum) Broadcast(msgType ethwire.MsgType, data []interface{}) {
    msg := ethwire.NewMessage(msgType, data)
    s.BroadcastMsg(msg)
}

func (s *Ethereum) BroadcastMsg(msg *ethwire.Msg) {
    eachPeer(s.peers, func(p *Peer, e *list.Element) {
        p.QueueMessage(msg)
    })
}

func (s *Ethereum) Peers() *list.List {
    return s.peers
}

func (s *Ethereum) reapPeers() {
    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.removePeerElement(e)
        }
    })
}

func (s *Ethereum) removePeerElement(e *list.Element) {
    s.peerMut.Lock()
    defer s.peerMut.Unlock()

    s.peers.Remove(e)

    s.reactor.Post("peerList", s.peers)
}

func (s *Ethereum) RemovePeer(p *Peer) {
    eachPeer(s.peers, func(peer *Peer, e *list.Element) {
        if peer == p {
            s.removePeerElement(e)
        }
    })
}

func (s *Ethereum) ReapDeadPeerHandler() {
    reapTimer := time.NewTicker(processReapingTimeout * time.Second)

    for {
        select {
        case <-reapTimer.C:
            s.reapPeers()
        }
    }
}

// Start the ethereum
func (s *Ethereum) Start(seed bool) {
    // Bind to addr and port
    ln, err := net.Listen("tcp", ":"+s.Port)
    if err != nil {
        log.Println("Connection listening disabled. Acting as client")
        s.listening = false
    } else {
        s.listening = true
        // Starting accepting connections
        ethutil.Config.Log.Infoln("Ready and accepting connections")
        // Start the peer handler
        go s.peerHandler(ln)
    }

    if s.nat != nil {
        go s.upnpUpdateThread()
    }

    // Start the reaping processes
    go s.ReapDeadPeerHandler()

    if seed {
        s.Seed()
    }
}

func (s *Ethereum) Seed() {
    ethutil.Config.Log.Debugln("[SERV] Retrieving seed nodes")

    // Eth-Go Bootstrapping
    ips, er := net.LookupIP("seed.bysh.me")
    if er == nil {
        peers := []string{}
        for _, ip := range ips {
            node := fmt.Sprintf("%s:%d", ip.String(), 30303)
            ethutil.Config.Log.Debugln("[SERV] Found DNS Go Peer:", node)
            peers = append(peers, node)
        }
        s.ProcessPeerList(peers)
    }

    // Official DNS Bootstrapping
    _, nodes, err := net.LookupSRV("eth", "tcp", "ethereum.org")
    if err == nil {
        peers := []string{}
        // Iterate SRV nodes
        for _, n := range nodes {
            target := n.Target
            port := strconv.Itoa(int(n.Port))
            // Resolve target to ip (Go returns list, so may resolve to multiple ips?)
            addr, err := net.LookupHost(target)
            if err == nil {
                for _, a := range addr {
                    // Build string out of SRV port and Resolved IP
                    peer := net.JoinHostPort(a, port)
                    ethutil.Config.Log.Debugln("[SERV] Found DNS Bootstrap Peer:", peer)
                    peers = append(peers, peer)
                }
            } else {
                ethutil.Config.Log.Debugln("[SERV} Couldn't resolve :", target)
            }
        }
        // Connect to Peer list
        s.ProcessPeerList(peers)
    } else {
        // Fallback to servers.poc3.txt
        resp, err := http.Get("http://www.ethereum.org/servers.poc3.txt")
        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
        }

        s.ConnectToPeer(string(body))
    }
}

func (s *Ethereum) peerHandler(listener net.Listener) {
    for {
        conn, err := listener.Accept()
        if err != nil {
            ethutil.Config.Log.Debugln(err)

            continue
        }

        go s.AddPeer(conn)
    }
}

func (s *Ethereum) Stop() {
    // Close the database
    defer s.db.Close()

    eachPeer(s.peers, func(p *Peer, e *list.Element) {
        p.Stop()
    })

    close(s.quit)

    if s.RpcServer != nil {
        s.RpcServer.Stop()
    }
    s.txPool.Stop()
    s.stateManager.Stop()

    close(s.shutdownChan)
}

// This function will wait for a shutdown and resumes main thread execution
func (s *Ethereum) WaitForShutdown() {
    <-s.shutdownChan
}

func (s *Ethereum) upnpUpdateThread() {
    // Go off immediately to prevent code duplication, thereafter we renew
    // lease every 15 minutes.
    timer := time.NewTimer(5 * time.Minute)
    lport, _ := strconv.ParseInt(s.Port, 10, 16)
    first := true
out:
    for {
        select {
        case <-timer.C:
            var err error
            _, err = s.nat.AddPortMapping("TCP", int(lport), int(lport), "eth listen port", 20*60)
            if err != nil {
                ethutil.Config.Log.Debugln("can't add UPnP port mapping:", err)
                break out
            }
            if first && err == nil {
                _, err = s.nat.GetExternalAddress()
                if err != nil {
                    ethutil.Config.Log.Debugln("UPnP can't get external address:", err)
                    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)
    } else {
        ethutil.Config.Log.Debugln("succesfully disestablished UPnP port mapping")
    }
}