-
Notifications
You must be signed in to change notification settings - Fork 10
/
backend.go
480 lines (414 loc) · 15.3 KB
/
backend.go
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
// Copyright 2014 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/>.
// Package cpc implements the cpchain protocol.
package cpc
import (
"fmt"
"math/big"
"sync"
"sync/atomic"
"bitbucket.org/cpchain/chain/accounts"
"bitbucket.org/cpchain/chain/admission"
"bitbucket.org/cpchain/chain/api/grpc"
"bitbucket.org/cpchain/chain/api/rpc"
"bitbucket.org/cpchain/chain/commons/log"
"bitbucket.org/cpchain/chain/configs"
"bitbucket.org/cpchain/chain/consensus"
"bitbucket.org/cpchain/chain/consensus/dpor"
"bitbucket.org/cpchain/chain/consensus/dpor/backend"
"bitbucket.org/cpchain/chain/contracts/dpor/contracts/apibackend_holder"
"bitbucket.org/cpchain/chain/core"
"bitbucket.org/cpchain/chain/core/bloombits"
"bitbucket.org/cpchain/chain/core/rawdb"
"bitbucket.org/cpchain/chain/core/vm"
"bitbucket.org/cpchain/chain/database"
"bitbucket.org/cpchain/chain/internal/cpcapi"
"bitbucket.org/cpchain/chain/miner"
"bitbucket.org/cpchain/chain/node"
"bitbucket.org/cpchain/chain/private"
"bitbucket.org/cpchain/chain/protocols/cpc/downloader"
"bitbucket.org/cpchain/chain/protocols/cpc/filters"
"bitbucket.org/cpchain/chain/protocols/cpc/gasprice"
"bitbucket.org/cpchain/chain/types"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/p2p"
)
type LesServer interface {
Start(srvr *p2p.Server)
Stop()
Protocols() []p2p.Protocol
SetBloomBitsIndexer(bbIndexer *core.ChainIndexer)
}
// CpchainService implements the CpchainService full node service.
type CpchainService struct {
config *Config
chainConfig *configs.ChainConfig
// Channel for shutting down the service
shutdownChan chan bool // Channel for shutting down the Cpchain
// Handlers
txPool *core.TxPool
blockchain *core.BlockChain
protocolManager *ProtocolManager
lesServer LesServer
server *p2p.Server
// DB interfaces
chainDb database.Database // Block chain database
eventMux *event.TypeMux
engine consensus.Engine
accountManager *accounts.Manager
bloomRequests chan chan *bloombits.Retrieval // Channel receiving bloom data retrieval requests
bloomIndexer *core.ChainIndexer // LogsBloom indexer operating during block imports
// chain service backend
APIBackend *APIBackend
AdmissionApiBackend admission.ApiBackend
miner *miner.Miner
gasPrice *big.Int
coinbase common.Address
networkID uint64
netRPCService *cpcapi.PublicNetAPI
lock sync.RWMutex // Protects the variadic fields (e.g. gas price and coinbase)
remoteDB database.RemoteDatabase // remoteDB represents an remote distributed database.
}
func (s *CpchainService) AddLesServer(ls LesServer) {
s.lesServer = ls
ls.SetBloomBitsIndexer(s.bloomIndexer)
}
// New creates a new CpchainService object (including the
// initialisation of the common CpchainService object)
func New(ctx *node.ServiceContext, config *Config) (*CpchainService, error) {
if !config.SyncMode.IsValid() {
return nil, fmt.Errorf("invalid sync mode %d", config.SyncMode)
}
chainDb, err := CreateDB(ctx, config, "chaindata")
if err != nil {
return nil, err
}
chainConfig, genesisHash, genesisErr := core.SetupGenesisBlock(chainDb, config.Genesis)
if _, ok := genesisErr.(*configs.ConfigCompatError); genesisErr != nil && !ok {
return nil, genesisErr
}
log.Info("Initialised chain configuration", "config", chainConfig)
var remoteDB database.RemoteDatabase
switch config.PrivateTx.RemoteDBType {
case private.IPFS:
remoteDB = database.NewIpfsDB(config.PrivateTx.RemoteDBParams)
default:
remoteDB = database.NewIpfsDB(private.DefaultIpfsUrl)
}
cpc := &CpchainService{
config: config,
chainDb: chainDb,
chainConfig: chainConfig,
eventMux: ctx.EventMux,
accountManager: ctx.AccountManager,
shutdownChan: make(chan bool),
networkID: config.NetworkId,
gasPrice: config.GasPrice,
coinbase: config.Cpcbase,
bloomRequests: make(chan chan *bloombits.Retrieval),
bloomIndexer: NewBloomIndexer(chainDb, configs.BloomBitsBlocks),
remoteDB: remoteDB,
}
cpc.engine = cpc.CreateConsensusEngine(ctx, chainConfig, chainDb)
log.Info("Initialising cpchain protocol", "versions", ProtocolVersions, "network", config.NetworkId)
if !config.SkipBcVersionCheck {
bcVersion := rawdb.ReadDatabaseVersion(chainDb)
if bcVersion != core.BlockChainVersion && bcVersion != 0 {
return nil, fmt.Errorf("Blockchain DB version mismatch (%d / %d). Run cpchain upgradedb.\n", bcVersion, core.BlockChainVersion)
}
rawdb.WriteDatabaseVersion(chainDb, core.BlockChainVersion)
}
var (
vmConfig = vm.Config{EnablePreimageRecording: config.EnablePreimageRecording}
cacheConfig = &core.CacheConfig{Disabled: config.NoPruning, TrieNodeLimit: config.TrieCache, TrieTimeLimit: config.TrieTimeout}
)
cpc.blockchain, err = core.NewBlockChain(chainDb, cacheConfig, cpc.chainConfig, cpc.engine, vmConfig, remoteDB, ctx.AccountManager)
if err != nil {
return nil, err
}
// Rewind the chain in case of an incompatible config upgrade.
if compat, ok := genesisErr.(*configs.ConfigCompatError); ok {
log.Warn("Rewinding chain to upgrade configuration", "err", compat)
cpc.blockchain.SetHead(compat.RewindTo)
rawdb.WriteChainConfig(chainDb, genesisHash, chainConfig)
}
cpc.bloomIndexer.Start(cpc.blockchain)
if config.TxPool.Journal != "" {
config.TxPool.Journal = ctx.ResolvePath(config.TxPool.Journal)
}
cpc.txPool = core.NewTxPool(config.TxPool, cpc.chainConfig, cpc.blockchain)
if cpc.protocolManager, err = NewProtocolManager(cpc.chainConfig, config.SyncMode, config.NetworkId, cpc.eventMux, cpc.txPool, cpc.engine, cpc.blockchain, chainDb, cpc.coinbase); err != nil {
return nil, err
}
cpc.miner = miner.New(cpc, cpc.chainConfig, cpc.EventMux(), cpc.engine)
cpc.APIBackend = &APIBackend{cpc, nil}
// gas related
gpoParams := config.GPO
if gpoParams.Default == nil {
gpoParams.Default = config.GasPrice
}
cpc.APIBackend.gpo = gasprice.NewOracle(cpc.APIBackend, gpoParams)
// TODO: fix this, @Xumx
cpc.AdmissionApiBackend = admission.NewAdmissionApiBackend(cpc.blockchain, cpc.coinbase, cpc.config.Admission)
apibackend_holder.GetApiBackendHolderInstance().Init(cpc.APIBackend)
return cpc, nil
}
// CreateDB creates the chain database.
func CreateDB(ctx *node.ServiceContext, config *Config, name string) (database.Database, error) {
db, err := ctx.OpenDatabase(name, config.DatabaseCache, config.DatabaseHandles)
if err != nil {
return nil, err
}
if db, ok := db.(*database.LDBDatabase); ok {
db.Meter("eth/db/chaindata/")
}
return db, nil
}
// SetAsMiner sets dpor engine as miner
func (s *CpchainService) SetAsMiner(isMiner bool) {
if dpor, ok := s.engine.(*dpor.Dpor); ok {
dpor.SetAsMiner(isMiner)
}
}
// CreateConsensusEngine creates the required type of consensus engine instance for an Cpchain service
func (s *CpchainService) CreateConsensusEngine(ctx *node.ServiceContext, chainConfig *configs.ChainConfig, db database.Database) consensus.Engine {
eb, err := s.Coinbase()
if err != nil {
log.Debug("coinbase is not set, but is allowed for non-miner node", "error", err)
}
// If Dpor is requested, set it up
if chainConfig.Dpor != nil {
// TODO: fix this. @liuq
dpor := dpor.New(chainConfig.Dpor, db)
if eb != (common.Address{}) {
wallet, err := s.accountManager.Find(accounts.Account{Address: eb})
if wallet == nil || err != nil {
log.Error("Etherbase account unavailable locally", "err", err)
return nil
}
dpor.Authorize(eb, wallet.SignHash)
}
return dpor
}
return nil
}
// GAPIs return the collection of GRPC services the cpc package offers.
// NOTE, some of these services probably need to be moved to somewhere else.
func (s *CpchainService) GAPIs() []grpc.GApi {
apis := cpcapi.GetGAPIs(s.APIBackend)
return append(apis, []grpc.GApi{
// NewMinerReader(s),
NewCoinbase(s),
NewAdminManager(s),
NewMinerManager(s),
NewDebugDumper(s),
NewDebugManager(s),
}...)
}
// APIs return the collection of RPC services the cpc package offers.
// NOTE, some of these services probably need to be moved to somewhere else.
func (s *CpchainService) APIs() []rpc.API {
apis := cpcapi.GetAPIs(s.APIBackend)
// Append any APIs exposed explicitly by the consensus engine
apis = append(apis, s.engine.APIs(s.BlockChain())...)
// Append any APIs exposed explicitly by the admission control
apis = append(apis, s.AdmissionApiBackend.Apis()...)
// Append all the local APIs and return
return append(apis, []rpc.API{
{
Namespace: "eth",
Version: "1.0",
Service: NewPublicCpchainAPI(s),
Public: true,
},
// {
// Namespace: "eth",
// Version: "1.0",
// Service: NewPublicMinerAPI(s),
// Public: true,
// },
{
Namespace: "eth",
Version: "1.0",
Service: downloader.NewPublicDownloaderAPI(s.protocolManager.downloader, s.eventMux),
Public: true,
}, {
Namespace: "miner",
Version: "1.0",
Service: NewPrivateMinerAPI(s),
Public: false,
}, {
Namespace: "eth",
Version: "1.0",
Service: filters.NewPublicFilterAPI(s.APIBackend, false),
Public: true,
}, {
Namespace: "admin",
Version: "1.0",
Service: NewPrivateAdminAPI(s),
}, {
Namespace: "debug",
Version: "1.0",
Service: NewPublicDebugAPI(s),
Public: true,
}, {
Namespace: "debug",
Version: "1.0",
Service: NewPrivateDebugAPI(s.chainConfig, s),
}, {
Namespace: "net",
Version: "1.0",
Service: s.netRPCService,
Public: true,
},
}...)
}
func (s *CpchainService) ResetWithGenesisBlock(gb *types.Block) {
s.blockchain.ResetWithGenesisBlock(gb)
}
func (s *CpchainService) Coinbase() (coinbase common.Address, err error) {
s.lock.RLock()
coinbase = s.coinbase
s.lock.RUnlock()
if coinbase != (common.Address{}) {
return coinbase, nil
}
if wallets := s.AccountManager().Wallets(); len(wallets) > 0 {
if accs := wallets[0].Accounts(); len(accs) > 0 {
coinbase = accs[0].Address
s.lock.Lock()
s.coinbase = coinbase
s.lock.Unlock()
log.Info("Coinbase automatically configured", "address", coinbase)
return coinbase, nil
}
}
return common.Address{}, fmt.Errorf("coinbase must be explicitly specified")
}
// SetCoinbase sets the mining reward address.
func (s *CpchainService) SetCoinbase(coinbase common.Address) {
s.lock.Lock()
s.coinbase = coinbase
s.lock.Unlock()
s.miner.SetCoinbase(coinbase)
}
func (s *CpchainService) SetClientForDpor(client backend.ClientBackend) {
if dpor, ok := s.engine.(*dpor.Dpor); ok {
dpor.SetClient(client)
return
}
panic("must set dpor consensus engine")
}
func (s *CpchainService) StartMining(local bool, client backend.ClientBackend) error {
coinbase, err := s.Coinbase()
if err != nil {
log.Error("Cannot start mining without coinbase", "err", err)
return fmt.Errorf("coinbase missing: %v", err)
}
if dpor, ok := s.engine.(*dpor.Dpor); ok {
if dpor.Coinbase() != coinbase {
wallet, err := s.accountManager.Find(accounts.Account{Address: coinbase})
if wallet == nil || err != nil {
log.Error("Etherbase account unavailable locally", "err", err)
return nil
}
dpor.Authorize(coinbase, wallet.SignHash)
}
log.Debug("server.nodeid", "enode", s.server.NodeInfo().Enode)
dpor.SetAsMiner(true)
dpor.SetClient(client)
go dpor.StartMining(s.blockchain, s.server, s.protocolManager.BroadcastBlock)
}
if local {
// If local (CPU) mining is started, we can disable the transaction rejection
// mechanism introduced to speed sync times. CPU mining on mainnet is ludicrous
// so none will ever hit this path, whereas marking sync done on CPU mining
// will ensure that private networks work in single miner mode too.
atomic.StoreUint32(&s.protocolManager.acceptTxs, 1)
}
go s.miner.Start(coinbase)
return nil
}
func (s *CpchainService) StopMining() {
if dpor, ok := s.engine.(*dpor.Dpor); ok {
dpor.StopMining()
dpor.SetAsMiner(false)
}
s.miner.Stop()
}
func (s *CpchainService) IsMining() bool { return s.miner.IsMining() }
func (s *CpchainService) Miner() *miner.Miner { return s.miner }
func (s *CpchainService) AccountManager() *accounts.Manager { return s.accountManager }
func (s *CpchainService) BlockChain() *core.BlockChain { return s.blockchain }
func (s *CpchainService) TxPool() *core.TxPool { return s.txPool }
func (s *CpchainService) EventMux() *event.TypeMux { return s.eventMux }
func (s *CpchainService) Engine() consensus.Engine { return s.engine }
func (s *CpchainService) ChainDb() database.Database { return s.chainDb }
func (s *CpchainService) IsListening() bool { return true } // Always listening
func (s *CpchainService) CpcVersion() int { return int(s.protocolManager.SubProtocols[0].Version) } // the first protocol is the latest version.
func (s *CpchainService) NetVersion() uint64 { return s.networkID }
func (s *CpchainService) Downloader() *downloader.Downloader { return s.protocolManager.downloader }
func (s *CpchainService) RemoteDB() database.RemoteDatabase { return s.remoteDB }
// Protocols implements node.Service, returning all the currently configured
// network protocols to start.
func (s *CpchainService) Protocols() []p2p.Protocol {
if s.lesServer == nil {
return s.protocolManager.SubProtocols
}
return append(s.protocolManager.SubProtocols, s.lesServer.Protocols()...)
}
// start implements node.service, starting all internal goroutines needed by the
// cpchain protocol implementation.
func (s *CpchainService) Start(srvr *p2p.Server) error {
// Start the bloom bits servicing goroutines
s.startBloomHandlers()
// Start the RPC service
s.netRPCService = cpcapi.NewPublicNetAPI(srvr, s.NetVersion())
s.server = srvr
log.Info("CpchainService started")
// Figure out a max peers count based on the server limits
maxPeers := srvr.MaxPeers
if s.config.LightServ > 0 {
if s.config.LightPeers >= srvr.MaxPeers {
return fmt.Errorf("invalid peer config: light peer count (%d) >= total peer count (%d)", s.config.LightPeers, srvr.MaxPeers)
}
maxPeers -= s.config.LightPeers
}
// start the networking layer and the light server if requested
// by this time, the p2p has already started. we are only starting the upper layer handling.
s.protocolManager.Start(maxPeers)
if s.lesServer != nil {
s.lesServer.Start(srvr)
}
return nil
}
// Stop implements node.Service, terminating all internal goroutines used by the
// cpchain protocol.
func (s *CpchainService) Stop() error {
s.bloomIndexer.Close()
s.blockchain.Stop()
s.protocolManager.Stop()
if s.lesServer != nil {
s.lesServer.Stop()
}
s.txPool.Stop()
s.miner.Stop()
s.eventMux.Stop()
s.chainDb.Close()
close(s.shutdownChan)
return nil
}