|
|
@ -21,6 +21,7 @@ |
|
|
|
package main |
|
|
|
package main |
|
|
|
|
|
|
|
|
|
|
|
import ( |
|
|
|
import ( |
|
|
|
|
|
|
|
"crypto/ecdsa" |
|
|
|
"flag" |
|
|
|
"flag" |
|
|
|
"fmt" |
|
|
|
"fmt" |
|
|
|
"log" |
|
|
|
"log" |
|
|
@ -31,6 +32,7 @@ import ( |
|
|
|
"runtime" |
|
|
|
"runtime" |
|
|
|
|
|
|
|
|
|
|
|
"bitbucket.org/kardianos/osext" |
|
|
|
"bitbucket.org/kardianos/osext" |
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/crypto" |
|
|
|
"github.com/ethereum/go-ethereum/logger" |
|
|
|
"github.com/ethereum/go-ethereum/logger" |
|
|
|
"github.com/ethereum/go-ethereum/vm" |
|
|
|
"github.com/ethereum/go-ethereum/vm" |
|
|
|
) |
|
|
|
) |
|
|
@ -44,7 +46,6 @@ var ( |
|
|
|
StartWebSockets bool |
|
|
|
StartWebSockets bool |
|
|
|
RpcPort int |
|
|
|
RpcPort int |
|
|
|
WsPort int |
|
|
|
WsPort int |
|
|
|
UseUPnP bool |
|
|
|
|
|
|
|
NatType string |
|
|
|
NatType string |
|
|
|
OutboundPort string |
|
|
|
OutboundPort string |
|
|
|
ShowGenesis bool |
|
|
|
ShowGenesis bool |
|
|
@ -52,6 +53,7 @@ var ( |
|
|
|
MaxPeer int |
|
|
|
MaxPeer int |
|
|
|
GenAddr bool |
|
|
|
GenAddr bool |
|
|
|
BootNodes string |
|
|
|
BootNodes string |
|
|
|
|
|
|
|
NodeKey *ecdsa.PrivateKey |
|
|
|
SecretFile string |
|
|
|
SecretFile string |
|
|
|
ExportDir string |
|
|
|
ExportDir string |
|
|
|
NonInteractive bool |
|
|
|
NonInteractive bool |
|
|
@ -99,6 +101,7 @@ func defaultDataDir() string { |
|
|
|
var defaultConfigFile = path.Join(defaultDataDir(), "conf.ini") |
|
|
|
var defaultConfigFile = path.Join(defaultDataDir(), "conf.ini") |
|
|
|
|
|
|
|
|
|
|
|
func Init() { |
|
|
|
func Init() { |
|
|
|
|
|
|
|
// TODO: move common flag processing to cmd/utils
|
|
|
|
flag.Usage = func() { |
|
|
|
flag.Usage = func() { |
|
|
|
fmt.Fprintf(os.Stderr, "%s [options] [filename]:\noptions precedence: default < config file < environment variables < command line\n", os.Args[0]) |
|
|
|
fmt.Fprintf(os.Stderr, "%s [options] [filename]:\noptions precedence: default < config file < environment variables < command line\n", os.Args[0]) |
|
|
|
flag.PrintDefaults() |
|
|
|
flag.PrintDefaults() |
|
|
@ -108,30 +111,49 @@ func Init() { |
|
|
|
flag.StringVar(&Identifier, "id", "", "Custom client identifier") |
|
|
|
flag.StringVar(&Identifier, "id", "", "Custom client identifier") |
|
|
|
flag.StringVar(&KeyRing, "keyring", "", "identifier for keyring to use") |
|
|
|
flag.StringVar(&KeyRing, "keyring", "", "identifier for keyring to use") |
|
|
|
flag.StringVar(&KeyStore, "keystore", "db", "system to store keyrings: db|file (db)") |
|
|
|
flag.StringVar(&KeyStore, "keystore", "db", "system to store keyrings: db|file (db)") |
|
|
|
flag.StringVar(&OutboundPort, "port", "30303", "listening port") |
|
|
|
|
|
|
|
flag.BoolVar(&UseUPnP, "upnp", true, "enable UPnP support") |
|
|
|
|
|
|
|
flag.IntVar(&MaxPeer, "maxpeer", 30, "maximum desired peers") |
|
|
|
|
|
|
|
flag.IntVar(&RpcPort, "rpcport", 8545, "port to start json-rpc server on") |
|
|
|
flag.IntVar(&RpcPort, "rpcport", 8545, "port to start json-rpc server on") |
|
|
|
flag.IntVar(&WsPort, "wsport", 40404, "port to start websocket rpc server on") |
|
|
|
flag.IntVar(&WsPort, "wsport", 40404, "port to start websocket rpc server on") |
|
|
|
flag.BoolVar(&StartRpc, "rpc", true, "start rpc server") |
|
|
|
flag.BoolVar(&StartRpc, "rpc", true, "start rpc server") |
|
|
|
flag.BoolVar(&StartWebSockets, "ws", false, "start websocket server") |
|
|
|
flag.BoolVar(&StartWebSockets, "ws", false, "start websocket server") |
|
|
|
flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)") |
|
|
|
flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)") |
|
|
|
flag.StringVar(&BootNodes, "bootnodes", "", "space-separated node URLs for discovery bootstrap") |
|
|
|
|
|
|
|
flag.BoolVar(&GenAddr, "genaddr", false, "create a new priv/pub key") |
|
|
|
flag.BoolVar(&GenAddr, "genaddr", false, "create a new priv/pub key") |
|
|
|
flag.StringVar(&NatType, "nat", "", "NAT support (UPNP|PMP) (none)") |
|
|
|
flag.StringVar(&NatType, "nat", "", "NAT support (UPNP|PMP) (none)") |
|
|
|
flag.StringVar(&SecretFile, "import", "", "imports the file given (hex or mnemonic formats)") |
|
|
|
flag.StringVar(&SecretFile, "import", "", "imports the file given (hex or mnemonic formats)") |
|
|
|
flag.StringVar(&ExportDir, "export", "", "exports the session keyring to files in the directory given") |
|
|
|
flag.StringVar(&ExportDir, "export", "", "exports the session keyring to files in the directory given") |
|
|
|
flag.StringVar(&LogFile, "logfile", "", "log file (defaults to standard output)") |
|
|
|
flag.StringVar(&LogFile, "logfile", "", "log file (defaults to standard output)") |
|
|
|
flag.StringVar(&Datadir, "datadir", defaultDataDir(), "specifies the datadir to use") |
|
|
|
flag.StringVar(&Datadir, "datadir", defaultDataDir(), "specifies the datadir to use") |
|
|
|
flag.StringVar(&PMPGateway, "pmp", "", "Gateway IP for PMP") |
|
|
|
|
|
|
|
flag.StringVar(&ConfigFile, "conf", defaultConfigFile, "config file") |
|
|
|
flag.StringVar(&ConfigFile, "conf", defaultConfigFile, "config file") |
|
|
|
flag.StringVar(&DebugFile, "debug", "", "debug file (no debugging if not set)") |
|
|
|
flag.StringVar(&DebugFile, "debug", "", "debug file (no debugging if not set)") |
|
|
|
flag.IntVar(&LogLevel, "loglevel", int(logger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") |
|
|
|
flag.IntVar(&LogLevel, "loglevel", int(logger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") |
|
|
|
|
|
|
|
|
|
|
|
flag.StringVar(&AssetPath, "asset_path", defaultAssetPath(), "absolute path to GUI assets directory") |
|
|
|
flag.StringVar(&AssetPath, "asset_path", defaultAssetPath(), "absolute path to GUI assets directory") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Network stuff
|
|
|
|
|
|
|
|
var ( |
|
|
|
|
|
|
|
nodeKeyFile = flag.String("nodekey", "", "network private key file") |
|
|
|
|
|
|
|
nodeKeyHex = flag.String("nodekeyhex", "", "network private key (for testing)") |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
flag.StringVar(&OutboundPort, "port", "30303", "listening port") |
|
|
|
|
|
|
|
flag.StringVar(&PMPGateway, "pmp", "", "Gateway IP for NAT-PMP") |
|
|
|
|
|
|
|
flag.StringVar(&BootNodes, "bootnodes", "", "space-separated node URLs for discovery bootstrap") |
|
|
|
|
|
|
|
flag.IntVar(&MaxPeer, "maxpeer", 30, "maximum desired peers") |
|
|
|
|
|
|
|
|
|
|
|
flag.Parse() |
|
|
|
flag.Parse() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var err error |
|
|
|
|
|
|
|
switch { |
|
|
|
|
|
|
|
case *nodeKeyFile != "" && *nodeKeyHex != "": |
|
|
|
|
|
|
|
log.Fatal("Options -nodekey and -nodekeyhex are mutually exclusive") |
|
|
|
|
|
|
|
case *nodeKeyFile != "": |
|
|
|
|
|
|
|
if NodeKey, err = crypto.LoadECDSA(*nodeKeyFile); err != nil { |
|
|
|
|
|
|
|
log.Fatalf("-nodekey: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
case *nodeKeyHex != "": |
|
|
|
|
|
|
|
if NodeKey, err = crypto.HexToECDSA(*nodeKeyHex); err != nil { |
|
|
|
|
|
|
|
log.Fatalf("-nodekeyhex: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if VmType >= int(vm.MaxVmTy) { |
|
|
|
if VmType >= int(vm.MaxVmTy) { |
|
|
|
log.Fatal("Invalid VM type ", VmType) |
|
|
|
log.Fatal("Invalid VM type ", VmType) |
|
|
|
} |
|
|
|
} |
|
|
|