2017-03-28 09:04:52 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-01-30 11:51:48 +00:00
|
|
|
"context"
|
2017-11-03 22:07:13 +00:00
|
|
|
"flag"
|
2017-03-28 09:04:52 +00:00
|
|
|
"fmt"
|
2017-11-03 22:07:13 +00:00
|
|
|
"log"
|
2018-01-30 11:51:48 +00:00
|
|
|
"net/http"
|
2017-03-28 09:04:52 +00:00
|
|
|
"os"
|
2018-01-23 05:16:13 +00:00
|
|
|
"os/signal"
|
2017-03-28 09:04:52 +00:00
|
|
|
"runtime"
|
2017-11-03 22:07:13 +00:00
|
|
|
"strings"
|
2018-01-23 05:16:13 +00:00
|
|
|
"time"
|
2017-03-28 09:04:52 +00:00
|
|
|
|
2017-12-02 18:51:55 +00:00
|
|
|
"github.com/status-im/status-go/cmd/statusd/debug"
|
2017-05-16 12:09:52 +00:00
|
|
|
"github.com/status-im/status-go/geth/api"
|
2018-01-23 05:16:13 +00:00
|
|
|
"github.com/status-im/status-go/geth/common"
|
2017-03-28 09:04:52 +00:00
|
|
|
"github.com/status-im/status-go/geth/params"
|
2018-01-30 11:51:48 +00:00
|
|
|
"github.com/status-im/status-go/metrics"
|
|
|
|
nodemetrics "github.com/status-im/status-go/metrics/node"
|
2017-03-28 09:04:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-11-03 22:07:13 +00:00
|
|
|
gitCommit = "N/A" // rely on linker: -ldflags -X main.GitCommit"
|
|
|
|
buildStamp = "N/A" // rely on linker: -ldflags -X main.buildStamp"
|
2017-03-28 09:04:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-11-03 22:07:13 +00:00
|
|
|
prodMode = flag.Bool("production", false, "Whether production settings should be loaded")
|
|
|
|
nodeKeyFile = flag.String("nodekey", "", "P2P node key file (private key)")
|
|
|
|
dataDir = flag.String("datadir", params.DataDir, "Data directory for the databases and keystore")
|
|
|
|
networkID = flag.Int("networkid", params.RopstenNetworkID, "Network identifier (integer, 1=Homestead, 3=Ropsten, 4=Rinkeby, 777=StatusChain)")
|
2018-01-23 05:16:13 +00:00
|
|
|
lesEnabled = flag.Bool("les", false, "LES protocol enabled (default is disabled)")
|
|
|
|
whisperEnabled = flag.Bool("shh", false, "Whisper protocol enabled (default is disabled)")
|
2017-11-03 22:07:13 +00:00
|
|
|
swarmEnabled = flag.Bool("swarm", false, "Swarm protocol enabled")
|
|
|
|
httpEnabled = flag.Bool("http", false, "HTTP RPC endpoint enabled (default: false)")
|
|
|
|
httpPort = flag.Int("httpport", params.HTTPPort, "HTTP RPC server's listening port")
|
|
|
|
ipcEnabled = flag.Bool("ipc", false, "IPC RPC endpoint enabled")
|
2017-12-02 18:51:55 +00:00
|
|
|
cliEnabled = flag.Bool("cli", false, "Enable debugging CLI server")
|
|
|
|
cliPort = flag.String("cliport", debug.CLIPort, "CLI server's listening port")
|
2017-11-03 22:07:13 +00:00
|
|
|
logLevel = flag.String("log", "INFO", `Log level, one of: "ERROR", "WARN", "INFO", "DEBUG", and "TRACE"`)
|
|
|
|
logFile = flag.String("logfile", "", "Path to the log file")
|
|
|
|
version = flag.Bool("version", false, "Print version")
|
2018-01-17 20:07:45 +00:00
|
|
|
|
|
|
|
listenAddr = flag.String("listenaddr", ":30303", "IP address and port of this node (e.g. 127.0.0.1:30303)")
|
|
|
|
standalone = flag.Bool("standalone", true, "Don't actively connect to peers, wait for incoming connections")
|
2018-01-23 05:16:13 +00:00
|
|
|
bootnodes = flag.String("bootnodes", "", "A list of bootnodes separated by comma")
|
2018-01-17 20:07:45 +00:00
|
|
|
|
2018-01-30 11:51:48 +00:00
|
|
|
// stats
|
|
|
|
statsEnabled = flag.Bool("stats", false, "Expose node stats via /debug/vars expvar endpoint or Prometheus (log by default)")
|
2018-02-01 16:47:26 +00:00
|
|
|
statsAddr = flag.String("stats.addr", "0.0.0.0:8080", "HTTP address with /debug/vars endpoint")
|
2018-01-30 11:51:48 +00:00
|
|
|
|
2018-01-17 20:07:45 +00:00
|
|
|
// shh stuff
|
|
|
|
identityFile = flag.String("shh.identityfile", "", "Protocol identity file (private key used for asymmetric encryption)")
|
|
|
|
passwordFile = flag.String("shh.passwordfile", "", "Password file (password is used for symmetric encryption)")
|
|
|
|
minPow = flag.Float64("shh.pow", params.WhisperMinimumPoW, "PoW for messages to be added to queue, in float format")
|
|
|
|
ttl = flag.Int("shh.ttl", params.WhisperTTL, "Time to live for messages, in seconds")
|
|
|
|
|
|
|
|
// MailServer
|
|
|
|
enableMailServer = flag.Bool("shh.mailserver", false, "Delivers expired messages on demand")
|
|
|
|
|
|
|
|
// Push Notification
|
|
|
|
enablePN = flag.Bool("shh.notify", false, "Node is capable of sending Push Notifications")
|
|
|
|
firebaseAuth = flag.String("shh.firebaseauth", "", "FCM Authorization Key used for sending Push Notifications")
|
2017-11-03 22:07:13 +00:00
|
|
|
)
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
func main() {
|
|
|
|
flag.Usage = printUsage
|
|
|
|
flag.Parse()
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
config, err := makeNodeConfig()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Making config failed: %v", err)
|
|
|
|
return
|
2017-05-16 03:24:56 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
if *version {
|
|
|
|
printVersion(config, gitCommit, buildStamp)
|
|
|
|
return
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
backend := api.NewStatusBackend()
|
|
|
|
started, err := backend.StartNode(config)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Node start failed: %v", err)
|
|
|
|
return
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2018-01-23 05:16:13 +00:00
|
|
|
// handle interrupt signals
|
2018-01-30 11:51:48 +00:00
|
|
|
interruptCh := haltOnInterruptSignal(backend.NodeManager())
|
2018-01-23 05:16:13 +00:00
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
// wait till node is started
|
|
|
|
<-started
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2017-12-02 18:51:55 +00:00
|
|
|
// Check if debugging CLI connection shall be enabled.
|
|
|
|
if *cliEnabled {
|
|
|
|
err := startDebug(backend)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Starting debugging CLI server failed: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 11:51:48 +00:00
|
|
|
// Run stats server.
|
|
|
|
if *statsEnabled {
|
|
|
|
go startCollectingStats(interruptCh, backend.NodeManager())
|
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
// wait till node has been stopped
|
|
|
|
node, err := backend.NodeManager().Node()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Getting node failed: %v", err)
|
|
|
|
return
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
node.Wait()
|
|
|
|
}
|
2017-05-03 14:24:48 +00:00
|
|
|
|
2017-12-02 18:51:55 +00:00
|
|
|
// startDebug starts the debugging API server.
|
|
|
|
func startDebug(backend *api.StatusBackend) error {
|
|
|
|
statusAPI := api.NewStatusAPIWithBackend(backend)
|
|
|
|
_, err := debug.New(statusAPI, *cliPort)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-01-30 11:51:48 +00:00
|
|
|
// startCollectingStats collects various stats about the node and other protocols like Whisper.
|
|
|
|
func startCollectingStats(interruptCh <-chan struct{}, nodeManager common.NodeManager) {
|
|
|
|
log.Printf("Starting stats on %v", *statsAddr)
|
|
|
|
|
|
|
|
node, err := nodeManager.Node()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to run metrics because could not get node: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
go func() {
|
|
|
|
if err := nodemetrics.SubscribeServerEvents(ctx, node); err != nil {
|
|
|
|
log.Printf("Failed to subscribe server events: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
server := metrics.NewMetricsServer(*statsAddr)
|
|
|
|
go func() {
|
|
|
|
err := server.ListenAndServe()
|
|
|
|
switch err {
|
|
|
|
case http.ErrServerClosed:
|
|
|
|
default:
|
|
|
|
log.Printf("Metrics server failed: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
<-interruptCh
|
|
|
|
|
|
|
|
if err := server.Shutdown(context.TODO()); err != nil {
|
|
|
|
log.Printf("Failed to shutdown metrics server: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
// makeNodeConfig parses incoming CLI options and returns node configuration object
|
|
|
|
func makeNodeConfig() (*params.NodeConfig, error) {
|
|
|
|
devMode := !*prodMode
|
|
|
|
nodeConfig, err := params.NewNodeConfig(*dataDir, uint64(*networkID), devMode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2017-09-01 18:44:50 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
// TODO(divan): move this logic into params package
|
|
|
|
if *nodeKeyFile != "" {
|
|
|
|
nodeConfig.NodeKeyFile = *nodeKeyFile
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
if *logLevel != "" {
|
|
|
|
nodeConfig.LogLevel = *logLevel
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
2017-11-03 22:07:13 +00:00
|
|
|
if *logFile != "" {
|
|
|
|
nodeConfig.LogFile = *logFile
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
nodeConfig.RPCEnabled = *httpEnabled
|
|
|
|
nodeConfig.WhisperConfig.Enabled = *whisperEnabled
|
2018-01-17 20:07:45 +00:00
|
|
|
|
|
|
|
nodeConfig.HTTPPort = *httpPort
|
|
|
|
nodeConfig.IPCEnabled = *ipcEnabled
|
|
|
|
|
2018-01-17 21:40:14 +00:00
|
|
|
nodeConfig.LightEthConfig.Enabled = *lesEnabled
|
2017-11-03 22:07:13 +00:00
|
|
|
nodeConfig.SwarmConfig.Enabled = *swarmEnabled
|
2017-03-28 09:04:52 +00:00
|
|
|
|
2018-01-23 05:16:13 +00:00
|
|
|
if *standalone {
|
|
|
|
nodeConfig.BootClusterConfig.Enabled = false
|
|
|
|
nodeConfig.BootClusterConfig.BootNodes = nil
|
|
|
|
} else {
|
|
|
|
nodeConfig.Discovery = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Even if standalone is true and discovery is disabled,
|
|
|
|
// it's possible to use bootnodes in NodeManager.PopulateStaticPeers().
|
|
|
|
// TODO(adam): research if we need NodeManager.PopulateStaticPeers() at all.
|
|
|
|
if *bootnodes != "" {
|
|
|
|
nodeConfig.BootClusterConfig.BootNodes = strings.Split(*bootnodes, ",")
|
|
|
|
}
|
|
|
|
|
2018-01-17 20:07:45 +00:00
|
|
|
if *whisperEnabled {
|
|
|
|
return whisperConfig(nodeConfig)
|
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
// RPC configuration
|
|
|
|
if !*httpEnabled {
|
|
|
|
nodeConfig.HTTPHost = "" // HTTP RPC is disabled
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
2017-11-03 22:07:13 +00:00
|
|
|
|
|
|
|
return nodeConfig, nil
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
// printVersion prints verbose output about version and config.
|
|
|
|
func printVersion(config *params.NodeConfig, gitCommit, buildStamp string) {
|
|
|
|
if gitCommit != "" && len(gitCommit) > 8 {
|
|
|
|
params.Version += "-" + gitCommit[:8]
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
fmt.Println(strings.Title(params.ClientIdentifier))
|
|
|
|
fmt.Println("Version:", params.Version)
|
|
|
|
if gitCommit != "" {
|
|
|
|
fmt.Println("Git Commit:", gitCommit)
|
2017-09-01 18:44:50 +00:00
|
|
|
}
|
2017-11-03 22:07:13 +00:00
|
|
|
if buildStamp != "" {
|
|
|
|
fmt.Println("Build Stamp:", buildStamp)
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
fmt.Println("Network Id:", config.NetworkID)
|
|
|
|
fmt.Println("Go Version:", runtime.Version())
|
|
|
|
fmt.Println("OS:", runtime.GOOS)
|
|
|
|
fmt.Printf("GOPATH=%s\n", os.Getenv("GOPATH"))
|
|
|
|
fmt.Printf("GOROOT=%s\n", runtime.GOROOT())
|
|
|
|
|
|
|
|
config.LightEthConfig.Genesis = "SKIP"
|
|
|
|
fmt.Println("Loaded Config: ", config)
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:07:13 +00:00
|
|
|
func printUsage() {
|
2018-01-17 16:46:21 +00:00
|
|
|
usage := `
|
|
|
|
Usage: statusd [options]
|
2017-11-03 22:07:13 +00:00
|
|
|
Examples:
|
|
|
|
statusd # run status node with defaults
|
|
|
|
statusd -networkid 4 # run node on Rinkeby network
|
|
|
|
statusd -datadir /dir # specify different dir for data
|
|
|
|
statusd -ipc # enable IPC for usage with "geth attach"
|
2017-12-02 18:51:55 +00:00
|
|
|
statusd -cli # enable connection by statusd-cli on default port
|
2017-11-03 22:07:13 +00:00
|
|
|
|
|
|
|
Options:
|
2018-01-17 16:46:21 +00:00
|
|
|
`
|
|
|
|
fmt.Fprintf(os.Stderr, usage) // nolint: gas
|
2017-11-03 22:07:13 +00:00
|
|
|
flag.PrintDefaults()
|
2017-03-28 09:04:52 +00:00
|
|
|
}
|
2018-01-23 05:16:13 +00:00
|
|
|
|
|
|
|
// haltOnInterruptSignal catches interrupt signal (SIGINT) and
|
|
|
|
// stops the node. It times out after 5 seconds
|
|
|
|
// if the node can not be stopped.
|
2018-01-30 11:51:48 +00:00
|
|
|
func haltOnInterruptSignal(nodeManager common.NodeManager) <-chan struct{} {
|
|
|
|
interruptCh := make(chan struct{})
|
2018-01-23 05:16:13 +00:00
|
|
|
|
2018-01-30 11:51:48 +00:00
|
|
|
go func() {
|
|
|
|
signalCh := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(signalCh, os.Interrupt)
|
|
|
|
defer signal.Stop(signalCh)
|
|
|
|
<-signalCh
|
2018-01-23 05:16:13 +00:00
|
|
|
|
2018-01-30 11:51:48 +00:00
|
|
|
close(interruptCh)
|
2018-01-23 05:16:13 +00:00
|
|
|
|
2018-01-30 11:51:48 +00:00
|
|
|
log.Println("Got interrupt, shutting down...")
|
|
|
|
|
|
|
|
nodeStopped, err := nodeManager.StopNode()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to stop node: %v", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-nodeStopped:
|
|
|
|
case <-time.After(time.Second * 5):
|
|
|
|
log.Printf("Stopping node timed out")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return interruptCh
|
2018-01-23 05:16:13 +00:00
|
|
|
}
|