node.go 18.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright 2015 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 node

import (
	"errors"
21
	"fmt"
22
	"net"
23 24
	"os"
	"path/filepath"
25
	"reflect"
26
	"strings"
27 28
	"sync"

29
	"github.com/ethereum/go-ethereum/accounts"
30
	"github.com/ethereum/go-ethereum/core/rawdb"
31
	"github.com/ethereum/go-ethereum/ethdb"
32
	"github.com/ethereum/go-ethereum/event"
33
	"github.com/ethereum/go-ethereum/internal/debug"
34
	"github.com/ethereum/go-ethereum/log"
35
	"github.com/ethereum/go-ethereum/p2p"
36
	"github.com/ethereum/go-ethereum/rpc"
37
	"github.com/prometheus/tsdb/fileutil"
38 39
)

40
// Node is a container on which services can be registered.
41
type Node struct {
42
	eventmux *event.TypeMux // Event multiplexer used between the services of a stack
43 44
	config   *Config
	accman   *accounts.Manager
45

46 47
	ephemeralKeystore string            // if non-empty, the key directory that will be removed by Stop
	instanceDirLock   fileutil.Releaser // prevents concurrent use of instance directory
48

49
	serverConfig p2p.Config
50
	server       *p2p.Server // Currently running P2P networking layer
51

52 53
	serviceFuncs []ServiceConstructor     // Service constructors (in dependency order)
	services     map[reflect.Type]Service // Currently running services
54

55 56 57
	rpcAPIs       []rpc.API   // List of APIs currently provided by the node
	inprocHandler *rpc.Server // In-process RPC request handler to process the API requests

58 59 60 61
	ipcEndpoint string       // IPC endpoint to listen at (empty = IPC disabled)
	ipcListener net.Listener // IPC RPC listener socket to serve API requests
	ipcHandler  *rpc.Server  // IPC RPC request handler to process the API requests

62 63 64 65 66
	httpEndpoint  string       // HTTP endpoint (interface + port) to listen at (empty = HTTP disabled)
	httpWhitelist []string     // HTTP RPC modules to allow through this endpoint
	httpListener  net.Listener // HTTP RPC listener socket to server API requests
	httpHandler   *rpc.Server  // HTTP RPC request handler to process the API requests

67 68 69
	wsEndpoint string       // Websocket endpoint (interface + port) to listen at (empty = websocket disabled)
	wsListener net.Listener // Websocket RPC listener socket to server API requests
	wsHandler  *rpc.Server  // Websocket RPC request handler to process the API requests
70

71
	stop chan struct{} // Channel to wait for termination notifications
72
	lock sync.RWMutex
73 74

	log log.Logger
75 76 77 78
}

// New creates a new P2P node, ready for protocol registration.
func New(conf *Config) (*Node, error) {
79 80 81 82
	// Copy config and resolve the datadir so future changes to the current
	// working directory don't affect the node.
	confCopy := *conf
	conf = &confCopy
83
	if conf.DataDir != "" {
84 85
		absdatadir, err := filepath.Abs(conf.DataDir)
		if err != nil {
86 87
			return nil, err
		}
88 89 90 91 92 93 94 95 96
		conf.DataDir = absdatadir
	}
	// Ensure that the instance name doesn't cause weird conflicts with
	// other files in the data directory.
	if strings.ContainsAny(conf.Name, `/\`) {
		return nil, errors.New(`Config.Name must not contain '/' or '\'`)
	}
	if conf.Name == datadirDefaultKeyStore {
		return nil, errors.New(`Config.Name cannot be "` + datadirDefaultKeyStore + `"`)
97
	}
98 99 100 101 102
	if strings.HasSuffix(conf.Name, ".ipc") {
		return nil, errors.New(`Config.Name cannot end in ".ipc"`)
	}
	// Ensure that the AccountManager method works before the node has started.
	// We rely on this in cmd/geth.
103 104 105 106
	am, ephemeralKeystore, err := makeAccountManager(conf)
	if err != nil {
		return nil, err
	}
107 108 109
	if conf.Logger == nil {
		conf.Logger = log.New()
	}
110 111
	// Note: any interaction with Config that would create/touch files
	// in the data directory or instance directory is delayed until Start.
112
	return &Node{
113 114
		accman:            am,
		ephemeralKeystore: ephemeralKeystore,
115 116 117 118 119 120
		config:            conf,
		serviceFuncs:      []ServiceConstructor{},
		ipcEndpoint:       conf.IPCEndpoint(),
		httpEndpoint:      conf.HTTPEndpoint(),
		wsEndpoint:        conf.WSEndpoint(),
		eventmux:          new(event.TypeMux),
121
		log:               conf.Logger,
122 123 124
	}, nil
}

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
// Close stops the Node and releases resources acquired in
// Node constructor New.
func (n *Node) Close() error {
	var errs []error

	// Terminate all subsystems and collect any errors
	if err := n.Stop(); err != nil && err != ErrNodeStopped {
		errs = append(errs, err)
	}
	if err := n.accman.Close(); err != nil {
		errs = append(errs, err)
	}
	// Report any errors that might have occurred
	switch len(errs) {
	case 0:
		return nil
	case 1:
		return errs[0]
	default:
		return fmt.Errorf("%v", errs)
	}
}

148 149 150
// Register injects a new service into the node's stack. The service created by
// the passed constructor must be unique in its type with regard to sibling ones.
func (n *Node) Register(constructor ServiceConstructor) error {
151 152 153
	n.lock.Lock()
	defer n.lock.Unlock()

154
	if n.server != nil {
155 156
		return ErrNodeRunning
	}
157
	n.serviceFuncs = append(n.serviceFuncs, constructor)
158 159 160 161 162 163 164 165 166
	return nil
}

// Start create a live P2P node and starts running it.
func (n *Node) Start() error {
	n.lock.Lock()
	defer n.lock.Unlock()

	// Short circuit if the node's already running
167
	if n.server != nil {
168 169
		return ErrNodeRunning
	}
170 171 172 173 174 175
	if err := n.openDataDir(); err != nil {
		return err
	}

	// Initialize the p2p server. This creates the node key and
	// discovery databases.
176 177 178
	n.serverConfig = n.config.P2P
	n.serverConfig.PrivateKey = n.config.NodeKey()
	n.serverConfig.Name = n.config.NodeName()
179
	n.serverConfig.Logger = n.log
180 181 182 183
	if n.serverConfig.StaticNodes == nil {
		n.serverConfig.StaticNodes = n.config.StaticNodes()
	}
	if n.serverConfig.TrustedNodes == nil {
184
		n.serverConfig.TrustedNodes = n.config.TrustedNodes()
185 186 187
	}
	if n.serverConfig.NodeDatabase == "" {
		n.serverConfig.NodeDatabase = n.config.NodeDB()
188
	}
189
	running := &p2p.Server{Config: n.serverConfig}
190
	n.log.Info("Starting peer-to-peer node", "instance", n.serverConfig.Name)
191 192

	// Otherwise copy and specialize the P2P configuration
193 194
	services := make(map[reflect.Type]Service)
	for _, constructor := range n.serviceFuncs {
195 196
		// Create a new context for the particular service
		ctx := &ServiceContext{
197
			config:         n.config,
198 199 200
			services:       make(map[reflect.Type]Service),
			EventMux:       n.eventmux,
			AccountManager: n.accman,
201
		}
202 203
		for kind, s := range services { // copy needed for threaded access
			ctx.services[kind] = s
204 205
		}
		// Construct and save the service
206 207 208 209
		service, err := constructor(ctx)
		if err != nil {
			return err
		}
210 211 212 213 214
		kind := reflect.TypeOf(service)
		if _, exists := services[kind]; exists {
			return &DuplicateServiceError{Kind: kind}
		}
		services[kind] = service
215 216 217 218 219 220
	}
	// Gather the protocols and start the freshly assembled P2P server
	for _, service := range services {
		running.Protocols = append(running.Protocols, service.Protocols()...)
	}
	if err := running.Start(); err != nil {
221
		return convertFileLockError(err)
222 223
	}
	// Start each of the services
224
	var started []reflect.Type
225
	for kind, service := range services {
226
		// Start the next service, stopping all previous upon failure
227
		if err := service.Start(running); err != nil {
228 229
			for _, kind := range started {
				services[kind].Stop()
230
			}
231 232
			running.Stop()

233 234 235
			return err
		}
		// Mark the service started for potential cleanup
236
		started = append(started, kind)
237
	}
238 239 240 241 242 243 244 245
	// Lastly start the configured RPC interfaces
	if err := n.startRPC(services); err != nil {
		for _, service := range services {
			service.Stop()
		}
		running.Stop()
		return err
	}
246 247
	// Finish initializing the startup
	n.services = services
248 249
	n.server = running
	n.stop = make(chan struct{})
250 251 252 253

	return nil
}

254 255 256 257 258
// Config returns the configuration of node.
func (n *Node) Config() *Config {
	return n.config
}

259 260 261 262 263 264 265 266 267
func (n *Node) openDataDir() error {
	if n.config.DataDir == "" {
		return nil // ephemeral
	}

	instdir := filepath.Join(n.config.DataDir, n.config.name())
	if err := os.MkdirAll(instdir, 0700); err != nil {
		return err
	}
268 269
	// Lock the instance directory to prevent concurrent use by another instance as well as
	// accidental use of the instance directory as a database.
270
	release, _, err := fileutil.Flock(filepath.Join(instdir, "LOCK"))
271
	if err != nil {
272
		return convertFileLockError(err)
273
	}
274
	n.instanceDirLock = release
275 276 277
	return nil
}

278 279 280
// startRPC is a helper method to start all the various RPC endpoint during node
// startup. It's not meant to be called at any time afterwards as it makes certain
// assumptions about the state of the node.
281
func (n *Node) startRPC(services map[reflect.Type]Service) error {
282
	// Gather all the possible APIs to surface
283 284 285 286
	apis := n.apis()
	for _, service := range services {
		apis = append(apis, service.APIs()...)
	}
287
	// Start the various API endpoints, terminating all in case of errors
288 289 290
	if err := n.startInProc(apis); err != nil {
		return err
	}
291
	if err := n.startIPC(apis); err != nil {
292
		n.stopInProc()
293 294
		return err
	}
295
	if err := n.startHTTP(n.httpEndpoint, apis, n.config.HTTPModules, n.config.HTTPCors, n.config.HTTPVirtualHosts, n.config.HTTPTimeouts); err != nil {
296
		n.stopIPC()
297
		n.stopInProc()
298 299
		return err
	}
300
	if err := n.startWS(n.wsEndpoint, apis, n.config.WSModules, n.config.WSOrigins, n.config.WSExposeAll); err != nil {
301 302
		n.stopHTTP()
		n.stopIPC()
303
		n.stopInProc()
304 305
		return err
	}
306 307 308 309 310
	// All API endpoints started successfully
	n.rpcAPIs = apis
	return nil
}

311 312 313 314 315 316 317 318
// startInProc initializes an in-process RPC endpoint.
func (n *Node) startInProc(apis []rpc.API) error {
	// Register all the APIs exposed by the services
	handler := rpc.NewServer()
	for _, api := range apis {
		if err := handler.RegisterName(api.Namespace, api.Service); err != nil {
			return err
		}
319
		n.log.Debug("InProc registered", "namespace", api.Namespace)
320 321 322 323 324 325 326 327 328 329 330 331 332
	}
	n.inprocHandler = handler
	return nil
}

// stopInProc terminates the in-process RPC endpoint.
func (n *Node) stopInProc() {
	if n.inprocHandler != nil {
		n.inprocHandler.Stop()
		n.inprocHandler = nil
	}
}

333 334 335
// startIPC initializes and starts the IPC RPC endpoint.
func (n *Node) startIPC(apis []rpc.API) error {
	if n.ipcEndpoint == "" {
336
		return nil // IPC disabled.
337
	}
338
	listener, handler, err := rpc.StartIPCEndpoint(n.ipcEndpoint, apis)
339
	if err != nil {
340 341 342 343
		return err
	}
	n.ipcListener = listener
	n.ipcHandler = handler
344
	n.log.Info("IPC endpoint opened", "url", n.ipcEndpoint)
345 346 347 348 349 350 351 352 353
	return nil
}

// stopIPC terminates the IPC RPC endpoint.
func (n *Node) stopIPC() {
	if n.ipcListener != nil {
		n.ipcListener.Close()
		n.ipcListener = nil

Franklin's avatar
.  
Franklin committed
354
		n.log.Info("IPC endpoint closed", "url", n.ipcEndpoint)
355 356 357 358
	}
	if n.ipcHandler != nil {
		n.ipcHandler.Stop()
		n.ipcHandler = nil
359
	}
360 361 362
}

// startHTTP initializes and starts the HTTP RPC endpoint.
363
func (n *Node) startHTTP(endpoint string, apis []rpc.API, modules []string, cors []string, vhosts []string, timeouts rpc.HTTPTimeouts) error {
364
	// Short circuit if the HTTP endpoint isn't being exposed
365 366 367
	if endpoint == "" {
		return nil
	}
368
	listener, handler, err := rpc.StartHTTPEndpoint(endpoint, apis, modules, cors, vhosts, timeouts)
369
	if err != nil {
370 371
		return err
	}
372
	n.log.Info("HTTP endpoint opened", "url", fmt.Sprintf("http://%s", endpoint), "cors", strings.Join(cors, ","), "vhosts", strings.Join(vhosts, ","))
373
	// All listeners booted successfully
374 375 376
	n.httpEndpoint = endpoint
	n.httpListener = listener
	n.httpHandler = handler
377 378 379 380

	return nil
}

381 382 383 384 385 386
// stopHTTP terminates the HTTP RPC endpoint.
func (n *Node) stopHTTP() {
	if n.httpListener != nil {
		n.httpListener.Close()
		n.httpListener = nil

387
		n.log.Info("HTTP endpoint closed", "url", fmt.Sprintf("http://%s", n.httpEndpoint))
388 389 390 391 392 393 394
	}
	if n.httpHandler != nil {
		n.httpHandler.Stop()
		n.httpHandler = nil
	}
}

395
// startWS initializes and starts the websocket RPC endpoint.
396
func (n *Node) startWS(endpoint string, apis []rpc.API, modules []string, wsOrigins []string, exposeAll bool) error {
397 398 399 400
	// Short circuit if the WS endpoint isn't being exposed
	if endpoint == "" {
		return nil
	}
401 402
	listener, handler, err := rpc.StartWSEndpoint(endpoint, apis, modules, wsOrigins, exposeAll)
	if err != nil {
403 404
		return err
	}
405
	n.log.Info("WebSocket endpoint opened", "url", fmt.Sprintf("ws://%s", listener.Addr()))
406 407 408 409 410 411 412 413 414 415 416 417 418 419
	// All listeners booted successfully
	n.wsEndpoint = endpoint
	n.wsListener = listener
	n.wsHandler = handler

	return nil
}

// stopWS terminates the websocket RPC endpoint.
func (n *Node) stopWS() {
	if n.wsListener != nil {
		n.wsListener.Close()
		n.wsListener = nil

420
		n.log.Info("WebSocket endpoint closed", "url", fmt.Sprintf("ws://%s", n.wsEndpoint))
421 422 423 424 425 426 427
	}
	if n.wsHandler != nil {
		n.wsHandler.Stop()
		n.wsHandler = nil
	}
}

428 429 430 431 432 433 434
// Stop terminates a running node along with all it's services. In the node was
// not started, an error is returned.
func (n *Node) Stop() error {
	n.lock.Lock()
	defer n.lock.Unlock()

	// Short circuit if the node's not running
435
	if n.server == nil {
436 437
		return ErrNodeStopped
	}
438 439

	// Terminate the API, services and the p2p server.
440
	n.stopWS()
441
	n.stopHTTP()
442
	n.stopIPC()
443
	n.rpcAPIs = nil
444
	failure := &StopError{
445
		Services: make(map[reflect.Type]error),
446
	}
447
	for kind, service := range n.services {
448
		if err := service.Stop(); err != nil {
449
			failure.Services[kind] = err
450 451
		}
	}
452
	n.server.Stop()
453
	n.services = nil
454
	n.server = nil
455 456 457

	// Release instance directory lock.
	if n.instanceDirLock != nil {
458
		if err := n.instanceDirLock.Release(); err != nil {
459
			n.log.Error("Can't release datadir lock", "err", err)
460
		}
461 462 463 464
		n.instanceDirLock = nil
	}

	// unblock n.Wait
465
	close(n.stop)
466

467 468 469 470 471 472
	// Remove the keystore if it was created ephemerally.
	var keystoreErr error
	if n.ephemeralKeystore != "" {
		keystoreErr = os.RemoveAll(n.ephemeralKeystore)
	}

473 474 475
	if len(failure.Services) > 0 {
		return failure
	}
476 477 478
	if keystoreErr != nil {
		return keystoreErr
	}
479 480 481
	return nil
}

482 483 484 485 486
// Wait blocks the thread until the node is stopped. If the node is not running
// at the time of invocation, the method immediately returns.
func (n *Node) Wait() {
	n.lock.RLock()
	if n.server == nil {
487
		n.lock.RUnlock()
488 489 490 491 492 493 494 495
		return
	}
	stop := n.stop
	n.lock.RUnlock()

	<-stop
}

496 497 498 499 500 501 502 503 504 505 506 507
// Restart terminates a running node and boots up a new one in its place. If the
// node isn't running, an error is returned.
func (n *Node) Restart() error {
	if err := n.Stop(); err != nil {
		return err
	}
	if err := n.Start(); err != nil {
		return err
	}
	return nil
}

508
// Attach creates an RPC client attached to an in-process API handler.
509
func (n *Node) Attach() (*rpc.Client, error) {
510 511 512 513 514 515
	n.lock.RLock()
	defer n.lock.RUnlock()

	if n.server == nil {
		return nil, ErrNodeStopped
	}
516
	return rpc.DialInProc(n.inprocHandler), nil
517 518
}

519 520 521 522 523 524 525 526 527 528 529
// RPCHandler returns the in-process RPC request handler.
func (n *Node) RPCHandler() (*rpc.Server, error) {
	n.lock.RLock()
	defer n.lock.RUnlock()

	if n.inprocHandler == nil {
		return nil, ErrNodeStopped
	}
	return n.inprocHandler, nil
}

530 531 532 533 534 535 536
// Server retrieves the currently running P2P network layer. This method is meant
// only to inspect fields of the currently running server, life cycle management
// should be left to this Node entity.
func (n *Node) Server() *p2p.Server {
	n.lock.RLock()
	defer n.lock.RUnlock()

537
	return n.server
538 539
}

540 541
// Service retrieves a currently running service registered of a specific type.
func (n *Node) Service(service interface{}) error {
542 543 544 545 546
	n.lock.RLock()
	defer n.lock.RUnlock()

	// Short circuit if the node's not running
	if n.server == nil {
547
		return ErrNodeStopped
548 549
	}
	// Otherwise try to find the service to return
550 551 552 553
	element := reflect.ValueOf(service).Elem()
	if running, ok := n.services[element.Type()]; ok {
		element.Set(reflect.ValueOf(running))
		return nil
554
	}
555
	return ErrServiceUnknown
556 557
}

558
// DataDir retrieves the current datadir used by the protocol stack.
559
// Deprecated: No files should be stored in this directory, use InstanceDir instead.
560
func (n *Node) DataDir() string {
561
	return n.config.DataDir
562 563
}

564 565 566 567 568
// InstanceDir retrieves the instance directory used by the protocol stack.
func (n *Node) InstanceDir() string {
	return n.config.instanceDir()
}

569 570 571 572 573
// AccountManager retrieves the account manager used by the protocol stack.
func (n *Node) AccountManager() *accounts.Manager {
	return n.accman
}

574 575
// IPCEndpoint retrieves the current IPC endpoint used by the protocol stack.
func (n *Node) IPCEndpoint() string {
576 577 578
	return n.ipcEndpoint
}

579 580
// HTTPEndpoint retrieves the current HTTP endpoint used by the protocol stack.
func (n *Node) HTTPEndpoint() string {
581 582 583 584 585 586
	n.lock.Lock()
	defer n.lock.Unlock()

	if n.httpListener != nil {
		return n.httpListener.Addr().String()
	}
587 588 589 590 591
	return n.httpEndpoint
}

// WSEndpoint retrieves the current WS endpoint used by the protocol stack.
func (n *Node) WSEndpoint() string {
592 593 594 595 596 597
	n.lock.Lock()
	defer n.lock.Unlock()

	if n.wsListener != nil {
		return n.wsListener.Addr().String()
	}
598 599 600
	return n.wsEndpoint
}

601 602 603
// EventMux retrieves the event multiplexer used by all the network services in
// the current protocol stack.
func (n *Node) EventMux() *event.TypeMux {
604
	return n.eventmux
605
}
606

607 608 609
// OpenDatabase opens an existing database with the given name (or creates one if no
// previous can be found) from within the node's instance directory. If the node is
// ephemeral, a memory database is returned.
610
func (n *Node) OpenDatabase(name string, cache, handles int, namespace string) (ethdb.Database, error) {
611
	if n.config.DataDir == "" {
612
		return rawdb.NewMemoryDatabase(), nil
613
	}
614
	return rawdb.NewLevelDBDatabase(n.config.ResolvePath(name), cache, handles, namespace)
615 616 617 618
}

// ResolvePath returns the absolute path of a resource in the instance directory.
func (n *Node) ResolvePath(x string) string {
619
	return n.config.ResolvePath(x)
620 621
}

622 623 624
// apis returns the collection of RPC descriptors this node offers.
func (n *Node) apis() []rpc.API {
	return []rpc.API{
625 626 627 628 629 630 631 632 633 634 635 636
		{
			Namespace: "admin",
			Version:   "1.0",
			Service:   NewPrivateAdminAPI(n),
		}, {
			Namespace: "admin",
			Version:   "1.0",
			Service:   NewPublicAdminAPI(n),
			Public:    true,
		}, {
			Namespace: "debug",
			Version:   "1.0",
637
			Service:   debug.Handler,
638 639 640 641 642
		}, {
			Namespace: "web3",
			Version:   "1.0",
			Service:   NewPublicWeb3API(n),
			Public:    true,
643 644
		},
	}
645
}