2016-09-22 02:24:31 +02:00
// Copyright 2016 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"crypto/ecdsa"
2018-09-05 11:33:07 +02:00
"encoding/hex"
2016-09-22 02:24:31 +02:00
"fmt"
"io/ioutil"
2019-07-16 09:35:04 +02:00
"net"
2016-09-22 02:24:31 +02:00
"os"
2017-02-07 00:38:38 +06:30
"os/signal"
2016-09-22 02:24:31 +02:00
"runtime"
2017-08-11 13:29:05 +02:00
"sort"
2016-09-22 02:24:31 +02:00
"strconv"
2016-11-28 13:29:33 +01:00
"strings"
2017-02-07 00:38:38 +06:30
"syscall"
2016-09-22 02:24:31 +02:00
"github.com/ethereum/go-ethereum/accounts"
2017-01-24 11:49:20 +02:00
"github.com/ethereum/go-ethereum/accounts/keystore"
2016-09-22 02:24:31 +02:00
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/console"
"github.com/ethereum/go-ethereum/crypto"
2017-02-22 14:10:07 +02:00
"github.com/ethereum/go-ethereum/log"
2016-09-22 02:24:31 +02:00
"github.com/ethereum/go-ethereum/node"
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 00:59:00 +02:00
"github.com/ethereum/go-ethereum/p2p/enode"
2019-07-16 09:35:04 +02:00
"github.com/ethereum/go-ethereum/p2p/nat"
2019-02-07 15:46:58 +01:00
"github.com/ethereum/go-ethereum/rpc"
2019-06-03 12:28:18 +02:00
"github.com/ethersphere/swarm"
bzzapi "github.com/ethersphere/swarm/api"
2019-06-03 14:08:40 +02:00
"github.com/ethersphere/swarm/internal/debug"
2019-06-03 12:28:18 +02:00
swarmmetrics "github.com/ethersphere/swarm/metrics"
"github.com/ethersphere/swarm/storage/mock"
mockrpc "github.com/ethersphere/swarm/storage/mock/rpc"
"github.com/ethersphere/swarm/tracing"
sv "github.com/ethersphere/swarm/version"
2017-12-11 16:56:06 -05:00
2019-02-07 15:46:58 +01:00
cli "gopkg.in/urfave/cli.v1"
2016-09-22 02:24:31 +02:00
)
2017-04-12 16:27:23 +02:00
const clientIdentifier = "swarm"
2018-06-20 14:06:27 +02:00
const helpTemplate = ` NAME :
{ { . HelpName } } - { { . Usage } }
USAGE :
{ { if . UsageText } } { { . UsageText } } { { else } } { { . HelpName } } { { if . VisibleFlags } } [ command options ] { { end } } { { if . ArgsUsage } } { { . ArgsUsage } } { { else } } [ arguments ... ] { { end } } { { end } } { { if . Category } }
CATEGORY :
{ { . Category } } { { end } } { { if . Description } }
DESCRIPTION :
{ { . Description } } { { end } } { { if . VisibleFlags } }
OPTIONS :
{ { range . VisibleFlags } } { { . } }
{ { end } } { { end } }
`
2016-09-22 02:24:31 +02:00
2019-01-24 15:35:10 +04:00
// Git SHA1 commit hash of the release (set via linker flags)
// this variable will be assigned if corresponding parameter is passed with install, but not with test
// e.g.: go install -ldflags "-X main.gitCommit=ed1312d01b19e04ef578946226e5d8069d5dfd5a" ./cmd/swarm
var gitCommit string
2016-09-22 02:24:31 +02:00
2017-12-11 16:56:06 -05:00
//declare a few constant error messages, useful for later error check comparisons in test
var (
2019-02-24 03:39:23 -08:00
SwarmErrNoBZZAccount = "bzzaccount option is required but not set; check your config file, command line or environment variables"
SwarmErrSwapSetNoAPI = "SWAP is enabled but --swap-api is not set"
2017-12-11 16:56:06 -05:00
)
2018-07-17 07:04:43 +02:00
// this help command gets added to any subcommand that does not define it explicitly
var defaultSubcommandHelp = cli . Command {
Action : func ( ctx * cli . Context ) { cli . ShowCommandHelpAndExit ( ctx , "" , 1 ) } ,
CustomHelpTemplate : helpTemplate ,
Name : "help" ,
Usage : "shows this help" ,
Hidden : true ,
}
2017-04-12 16:27:23 +02:00
var defaultNodeConfig = node . DefaultConfig
// This init function sets defaults so cmd/swarm can run alongside geth.
2016-09-22 02:24:31 +02:00
func init ( ) {
2019-01-24 15:35:10 +04:00
sv . GitCommit = gitCommit
2017-04-12 16:27:23 +02:00
defaultNodeConfig . Name = clientIdentifier
2018-07-30 10:56:40 +02:00
defaultNodeConfig . Version = sv . VersionWithCommit ( gitCommit )
2017-04-12 16:27:23 +02:00
defaultNodeConfig . P2P . ListenAddr = ":30399"
defaultNodeConfig . IPCPath = "bzzd.ipc"
// Set flag defaults for --help display.
2016-09-22 02:24:31 +02:00
utils . ListenPortFlag . Value = 30399
2017-04-12 16:27:23 +02:00
}
2016-09-22 02:24:31 +02:00
2019-05-08 08:44:28 -05:00
var app = utils . NewApp ( "" , "" , "Ethereum Swarm" )
2017-04-12 16:27:23 +02:00
// This init function creates the cli.App.
func init ( ) {
2016-09-22 02:24:31 +02:00
app . Action = bzzd
2018-10-01 13:28:07 +02:00
app . Version = sv . ArchiveVersion ( gitCommit )
2016-12-10 18:45:52 +01:00
app . Copyright = "Copyright 2013-2016 The go-ethereum Authors"
app . Commands = [ ] cli . Command {
2017-01-06 15:52:03 +01:00
{
2018-06-20 14:06:27 +02:00
Action : version ,
CustomHelpTemplate : helpTemplate ,
Name : "version" ,
Usage : "Print version numbers" ,
Description : "The output of this command is supposed to be machine-readable" ,
2016-12-10 18:45:52 +01:00
} ,
2018-09-05 11:33:07 +02:00
{
Action : keys ,
CustomHelpTemplate : helpTemplate ,
Name : "print-keys" ,
Flags : [ ] cli . Flag { SwarmCompressedFlag } ,
Usage : "Print public key information" ,
Description : "The output of this command is supposed to be machine-readable" ,
} ,
2018-10-12 14:51:38 +02:00
// See upload.go
upCommand ,
// See access.go
accessCommand ,
// See feeds.go
feedCommand ,
// See list.go
listCommand ,
// See hash.go
hashCommand ,
// See download.go
downloadCommand ,
// See manifest.go
manifestCommand ,
// See fs.go
fsCommand ,
// See db.go
dbCommand ,
2017-12-11 16:56:06 -05:00
// See config.go
DumpConfigCommand ,
2019-02-07 07:51:24 -05:00
// hashesCommand
hashesCommand ,
2016-12-10 18:45:52 +01:00
}
2018-07-17 07:04:43 +02:00
// append a hidden help subcommand to all commands that have subcommands
// if a help command was already defined above, that one will take precedence.
addDefaultHelpSubcommands ( app . Commands )
2017-08-11 13:29:05 +02:00
sort . Sort ( cli . CommandsByName ( app . Commands ) )
2016-12-10 18:45:52 +01:00
2016-09-22 02:24:31 +02:00
app . Flags = [ ] cli . Flag {
utils . IdentityFlag ,
utils . DataDirFlag ,
utils . BootnodesFlag ,
utils . KeyStoreDirFlag ,
utils . ListenPortFlag ,
2016-11-28 13:29:33 +01:00
utils . DiscoveryV5Flag ,
2016-11-22 20:52:31 +01:00
utils . NetrestrictFlag ,
2016-09-22 02:24:31 +02:00
utils . NodeKeyFileFlag ,
utils . NodeKeyHexFlag ,
2016-11-28 13:29:33 +01:00
utils . MaxPeersFlag ,
utils . NATFlag ,
2016-09-22 02:24:31 +02:00
utils . IPCDisabledFlag ,
utils . IPCPathFlag ,
2017-04-12 03:03:42 +03:00
utils . PasswordFileFlag ,
2019-07-16 09:35:04 +02:00
SwarmNATInterfaceFlag ,
2016-09-22 02:24:31 +02:00
// bzzd-specific flags
2017-01-05 11:57:41 +01:00
CorsStringFlag ,
2017-06-18 00:25:39 +02:00
EnsAPIFlag ,
2017-12-11 16:56:06 -05:00
SwarmTomlConfigPathFlag ,
2017-01-05 11:57:41 +01:00
SwarmSwapEnabledFlag ,
2017-06-18 00:25:39 +02:00
SwarmSwapAPIFlag ,
2018-06-20 14:06:27 +02:00
SwarmSyncDisabledFlag ,
SwarmSyncUpdateDelay ,
2018-09-24 17:40:22 +02:00
SwarmMaxStreamPeerServersFlag ,
2018-08-07 15:34:11 +02:00
SwarmLightNodeEnabled ,
2018-06-20 14:06:27 +02:00
SwarmDeliverySkipCheckFlag ,
2017-05-21 23:56:40 -07:00
SwarmListenAddrFlag ,
2016-09-22 02:24:31 +02:00
SwarmPortFlag ,
SwarmAccountFlag ,
2019-07-04 13:14:10 +02:00
SwarmBzzKeyHexFlag ,
2016-11-28 13:29:33 +01:00
SwarmNetworkIdFlag ,
2016-09-22 02:24:31 +02:00
ChequebookAddrFlag ,
2016-12-10 18:45:52 +01:00
// upload flags
SwarmApiFlag ,
2018-06-20 14:06:27 +02:00
SwarmRecursiveFlag ,
2016-12-10 18:45:52 +01:00
SwarmWantManifestFlag ,
2016-12-13 12:48:30 +01:00
SwarmUploadDefaultPath ,
2017-04-06 14:21:16 +02:00
SwarmUpFromStdinFlag ,
SwarmUploadMimeType ,
2019-01-24 12:02:18 +01:00
// bootnode mode
SwarmBootnodeModeFlag ,
2018-06-20 14:06:27 +02:00
// storage flags
SwarmStorePath ,
SwarmStoreCapacity ,
SwarmStoreCacheCapacity ,
2019-02-07 15:46:58 +01:00
SwarmGlobalStoreAPIFlag ,
2018-06-20 14:06:27 +02:00
}
rpcFlags := [ ] cli . Flag {
utils . WSEnabledFlag ,
utils . WSListenAddrFlag ,
utils . WSPortFlag ,
utils . WSApiFlag ,
utils . WSAllowedOriginsFlag ,
}
app . Flags = append ( app . Flags , rpcFlags ... )
2016-09-22 02:24:31 +02:00
app . Flags = append ( app . Flags , debug . Flags ... )
2018-02-23 14:19:59 +01:00
app . Flags = append ( app . Flags , swarmmetrics . Flags ... )
2018-07-13 17:40:28 +02:00
app . Flags = append ( app . Flags , tracing . Flags ... )
2016-09-22 02:24:31 +02:00
app . Before = func ( ctx * cli . Context ) error {
runtime . GOMAXPROCS ( runtime . NumCPU ( ) )
cmd, dashboard, log: log collection and exploration (#17097)
* cmd, dashboard, internal, log, node: logging feature
* cmd, dashboard, internal, log: requested changes
* dashboard, vendor: gofmt, govendor, use vendored file watcher
* dashboard, log: gofmt -s -w, goimports
* dashboard, log: gosimple
2018-07-11 10:59:04 +03:00
if err := debug . Setup ( ctx , "" ) ; err != nil {
2018-02-23 14:19:59 +01:00
return err
}
swarmmetrics . Setup ( ctx )
2018-07-13 17:40:28 +02:00
tracing . Setup ( ctx )
2018-02-23 14:19:59 +01:00
return nil
2016-09-22 02:24:31 +02:00
}
app . After = func ( ctx * cli . Context ) error {
debug . Exit ( )
return nil
}
}
func main ( ) {
if err := app . Run ( os . Args ) ; err != nil {
fmt . Fprintln ( os . Stderr , err )
os . Exit ( 1 )
}
}
2018-09-05 11:33:07 +02:00
func keys ( ctx * cli . Context ) error {
privateKey := getPrivKey ( ctx )
2019-01-24 12:02:18 +01:00
pubkey := crypto . FromECDSAPub ( & privateKey . PublicKey )
pubkeyhex := hex . EncodeToString ( pubkey )
2018-09-05 11:33:07 +02:00
pubCompressed := hex . EncodeToString ( crypto . CompressPubkey ( & privateKey . PublicKey ) )
2019-01-24 12:02:18 +01:00
bzzkey := crypto . Keccak256Hash ( pubkey ) . Hex ( )
2018-09-05 11:33:07 +02:00
if ! ctx . Bool ( SwarmCompressedFlag . Name ) {
2019-01-24 12:02:18 +01:00
fmt . Println ( fmt . Sprintf ( "bzzkey=%s" , bzzkey [ 2 : ] ) )
fmt . Println ( fmt . Sprintf ( "publicKey=%s" , pubkeyhex ) )
2018-09-05 11:33:07 +02:00
}
fmt . Println ( fmt . Sprintf ( "publicKeyCompressed=%s" , pubCompressed ) )
2019-01-24 12:02:18 +01:00
2018-09-05 11:33:07 +02:00
return nil
}
2016-12-10 18:45:52 +01:00
func version ( ctx * cli . Context ) error {
2018-07-30 10:56:40 +02:00
fmt . Println ( strings . Title ( clientIdentifier ) )
fmt . Println ( "Version:" , sv . VersionWithMeta )
2016-12-10 18:45:52 +01:00
if gitCommit != "" {
fmt . Println ( "Git Commit:" , gitCommit )
}
fmt . Println ( "Go Version:" , runtime . Version ( ) )
fmt . Println ( "OS:" , runtime . GOOS )
return nil
}
2016-09-22 02:24:31 +02:00
func bzzd ( ctx * cli . Context ) error {
2017-12-11 16:56:06 -05:00
//build a valid bzzapi.Config from all available sources:
//default config, file config, command line and env vars
2018-08-15 17:41:52 +02:00
2017-12-11 16:56:06 -05:00
bzzconfig , err := buildConfig ( ctx )
if err != nil {
utils . Fatalf ( "unable to configure swarm: %v" , err )
2017-06-30 10:10:41 +01:00
}
2017-04-12 16:27:23 +02:00
cfg := defaultNodeConfig
2018-06-20 14:06:27 +02:00
//pss operates on ws
cfg . WSModules = append ( cfg . WSModules , "pss" )
2017-12-11 16:56:06 -05:00
//geth only supports --datadir via command line
//in order to be consistent within swarm, if we pass --datadir via environment variable
//or via config file, we get the same directory for geth and swarm
if _ , err := os . Stat ( bzzconfig . Path ) ; err == nil {
cfg . DataDir = bzzconfig . Path
}
2018-08-20 14:09:50 +02:00
//optionally set the bootnodes before configuring the node
setSwarmBootstrapNodes ( ctx , & cfg )
2017-12-11 16:56:06 -05:00
//setup the ethereum node
2017-04-12 16:27:23 +02:00
utils . SetNodeConfig ( ctx , & cfg )
2019-01-24 12:02:18 +01:00
2019-03-01 12:20:37 +01:00
//disable dynamic dialing from p2p/discovery
cfg . P2P . NoDial = true
2019-01-24 12:02:18 +01:00
2019-07-16 09:35:04 +02:00
//optionally set the NAT IP from a network interface
setSwarmNATFromInterface ( ctx , & cfg )
2017-04-12 16:27:23 +02:00
stack , err := node . New ( & cfg )
if err != nil {
utils . Fatalf ( "can't create node: %v" , err )
}
2019-02-07 11:40:36 +01:00
defer stack . Close ( )
2018-08-15 17:41:52 +02:00
2017-12-11 16:56:06 -05:00
//a few steps need to be done after the config phase is completed,
//due to overriding behavior
2019-03-22 05:55:47 +01:00
err = initSwarmNode ( bzzconfig , stack , ctx , & cfg )
if err != nil {
return err
}
2017-12-11 16:56:06 -05:00
//register BZZ as node.Service in the ethereum node
2018-06-20 14:06:27 +02:00
registerBzzService ( bzzconfig , stack )
2017-12-11 16:56:06 -05:00
//start the node
2016-09-22 02:24:31 +02:00
utils . StartNode ( stack )
2017-04-12 16:27:23 +02:00
2017-02-07 00:38:38 +06:30
go func ( ) {
sigc := make ( chan os . Signal , 1 )
signal . Notify ( sigc , syscall . SIGTERM )
defer signal . Stop ( sigc )
<- sigc
2017-03-02 15:06:16 +02:00
log . Info ( "Got sigterm, shutting swarm down..." )
2017-02-07 00:38:38 +06:30
stack . Stop ( )
} ( )
2017-04-12 16:27:23 +02:00
2019-01-24 12:02:18 +01:00
// add swarm bootnodes, because swarm doesn't use p2p package's discovery discv5
go func ( ) {
s := stack . Server ( )
for _ , n := range cfg . P2P . BootstrapNodes {
s . AddPeer ( n )
}
} ( )
2016-09-22 02:24:31 +02:00
stack . Wait ( )
return nil
}
2018-06-20 14:06:27 +02:00
func registerBzzService ( bzzconfig * bzzapi . Config , stack * node . Node ) {
2017-12-11 16:56:06 -05:00
//define the swarm service boot function
2018-06-20 14:06:27 +02:00
boot := func ( _ * node . ServiceContext ) ( node . Service , error ) {
2019-02-07 15:46:58 +01:00
var nodeStore * mock . NodeStore
if bzzconfig . GlobalStoreAPI != "" {
// connect to global store
client , err := rpc . Dial ( bzzconfig . GlobalStoreAPI )
if err != nil {
return nil , fmt . Errorf ( "global store: %v" , err )
}
globalStore := mockrpc . NewGlobalStore ( client )
// create a node store for this swarm key on global store
nodeStore = globalStore . NewNodeStore ( common . HexToAddress ( bzzconfig . BzzKey ) )
}
return swarm . NewSwarm ( bzzconfig , nodeStore )
2016-09-22 02:24:31 +02:00
}
2017-12-11 16:56:06 -05:00
//register within the ethereum node
2016-09-22 02:24:31 +02:00
if err := stack . Register ( boot ) ; err != nil {
2017-02-22 17:22:50 +02:00
utils . Fatalf ( "Failed to register the Swarm service: %v" , err )
2016-09-22 02:24:31 +02:00
}
}
2019-07-04 13:14:10 +02:00
// getOrCreateAccount returns the address and associated private key for a bzzaccount
// If no account exists, it will create an account for you.
func getOrCreateAccount ( ctx * cli . Context , stack * node . Node ) ( string , * ecdsa . PrivateKey ) {
var bzzaddr string
// Check if a key was provided
if hexkey := ctx . GlobalString ( SwarmBzzKeyHexFlag . Name ) ; hexkey != "" {
key , err := crypto . HexToECDSA ( hexkey )
if err != nil {
utils . Fatalf ( "failed using %s: %v" , SwarmBzzKeyHexFlag . Name , err )
}
bzzaddr := crypto . PubkeyToAddress ( key . PublicKey ) . Hex ( )
log . Info ( fmt . Sprintf ( "Swarm account key loaded from %s" , SwarmBzzKeyHexFlag . Name ) , "address" , bzzaddr )
return bzzaddr , key
2016-09-22 02:24:31 +02:00
}
2019-07-04 13:14:10 +02:00
2017-01-24 11:49:20 +02:00
am := stack . AccountManager ( )
2017-02-07 12:47:34 +02:00
ks := am . Backends ( keystore . KeyStoreType ) [ 0 ] . ( * keystore . KeyStore )
2017-01-24 11:49:20 +02:00
2019-07-04 13:14:10 +02:00
// Check if an address was provided
if bzzaddr = ctx . GlobalString ( SwarmAccountFlag . Name ) ; bzzaddr != "" {
// Try to load the arg as a hex key file.
if key , err := crypto . LoadECDSA ( bzzaddr ) ; err == nil {
bzzaddr := crypto . PubkeyToAddress ( key . PublicKey ) . Hex ( )
log . Info ( "Swarm account key loaded" , "address" , bzzaddr )
return bzzaddr , key
}
return bzzaddr , decryptStoreAccount ( ks , bzzaddr , utils . MakePasswordList ( ctx ) )
}
// No address or key were provided
accounts := ks . Accounts ( )
switch l := len ( accounts ) ; l {
case 0 :
// Create an account
log . Info ( "You don't have an account yet. Creating one..." )
password := getPassPhrase ( "Your new account is locked with a password. Please give a password. Do not forget this password." , true , 0 , utils . MakePasswordList ( ctx ) )
account , err := ks . NewAccount ( password )
if err != nil {
utils . Fatalf ( "failed creating an account: %v" , err )
}
bzzaddr = account . Address . Hex ( )
case 1 :
// Use existing account
bzzaddr = accounts [ 0 ] . Address . Hex ( )
default :
// Inform user about multiple accounts
log . Info ( fmt . Sprintf ( "Multiple (%d) accounts were found in your keystore." , l ) )
for _ , a := range accounts {
log . Info ( fmt . Sprintf ( "Account: %s" , a . Address . Hex ( ) ) )
}
utils . Fatalf ( fmt . Sprintf ( "Please choose one of the accounts by running swarm with the --%s flag." , SwarmAccountFlag . Name ) )
}
return bzzaddr , decryptStoreAccount ( ks , bzzaddr , utils . MakePasswordList ( ctx ) )
2016-09-22 02:24:31 +02:00
}
2018-07-21 21:49:36 +02:00
// getPrivKey returns the private key of the specified bzzaccount
2018-09-30 09:43:10 +02:00
// Used only by client commands, such as `feed`
2018-07-21 21:49:36 +02:00
func getPrivKey ( ctx * cli . Context ) * ecdsa . PrivateKey {
// booting up the swarm node just as we do in bzzd action
bzzconfig , err := buildConfig ( ctx )
if err != nil {
utils . Fatalf ( "unable to configure swarm: %v" , err )
}
cfg := defaultNodeConfig
if _ , err := os . Stat ( bzzconfig . Path ) ; err == nil {
cfg . DataDir = bzzconfig . Path
}
utils . SetNodeConfig ( ctx , & cfg )
stack , err := node . New ( & cfg )
if err != nil {
utils . Fatalf ( "can't create node: %v" , err )
}
2019-02-07 11:40:36 +01:00
defer stack . Close ( )
2019-07-04 13:14:10 +02:00
var privkey * ecdsa . PrivateKey
bzzconfig . BzzAccount , privkey = getOrCreateAccount ( ctx , stack )
return privkey
2018-07-21 21:49:36 +02:00
}
2017-04-12 03:03:42 +03:00
func decryptStoreAccount ( ks * keystore . KeyStore , account string , passwords [ ] string ) * ecdsa . PrivateKey {
2016-09-22 02:24:31 +02:00
var a accounts . Account
var err error
if common . IsHexAddress ( account ) {
2017-01-24 11:49:20 +02:00
a , err = ks . Find ( accounts . Account { Address : common . HexToAddress ( account ) } )
} else if ix , ixerr := strconv . Atoi ( account ) ; ixerr == nil && ix > 0 {
if accounts := ks . Accounts ( ) ; len ( accounts ) > ix {
a = accounts [ ix ]
} else {
err = fmt . Errorf ( "index %d higher than number of accounts %d" , ix , len ( accounts ) )
}
2016-09-22 02:24:31 +02:00
} else {
2017-02-22 17:22:50 +02:00
utils . Fatalf ( "Can't find swarm account key %s" , account )
2016-09-22 02:24:31 +02:00
}
if err != nil {
2017-12-11 16:56:06 -05:00
utils . Fatalf ( "Can't find swarm account key: %v - Is the provided bzzaccount(%s) from the right datadir/Path?" , err , account )
2016-09-22 02:24:31 +02:00
}
2017-02-08 15:53:02 +02:00
keyjson , err := ioutil . ReadFile ( a . URL . Path )
2016-09-22 02:24:31 +02:00
if err != nil {
2017-02-22 17:22:50 +02:00
utils . Fatalf ( "Can't load swarm account key: %v" , err )
2016-09-22 02:24:31 +02:00
}
2017-04-12 03:03:42 +03:00
for i := 0 ; i < 3 ; i ++ {
2019-07-04 13:14:10 +02:00
password := getPassPhrase ( fmt . Sprintf ( "Unlocking swarm account %s [%d/3]" , a . Address . Hex ( ) , i + 1 ) , false , i , passwords )
2017-04-12 03:03:42 +03:00
key , err := keystore . DecryptKey ( keyjson , password )
2016-09-22 02:24:31 +02:00
if err == nil {
return key . PrivateKey
}
}
2017-02-22 17:22:50 +02:00
utils . Fatalf ( "Can't decrypt swarm account key" )
2016-09-22 02:24:31 +02:00
return nil
}
2019-07-04 13:14:10 +02:00
// getPassPhrase retrieves the password associated with a bzzaccount, either fetched
// from a list of preloaded passphrases, or requested interactively from the user.
func getPassPhrase ( prompt string , confirmation bool , i int , passwords [ ] string ) string {
// If a list of passwords was supplied, retrieve from them
2017-04-12 03:03:42 +03:00
if len ( passwords ) > 0 {
if i < len ( passwords ) {
return passwords [ i ]
}
return passwords [ len ( passwords ) - 1 ]
}
2019-07-04 13:14:10 +02:00
// Otherwise prompt the user for the password
2016-09-22 02:24:31 +02:00
if prompt != "" {
fmt . Println ( prompt )
}
password , err := console . Stdin . PromptPassword ( "Passphrase: " )
if err != nil {
2017-02-22 17:22:50 +02:00
utils . Fatalf ( "Failed to read passphrase: %v" , err )
2016-09-22 02:24:31 +02:00
}
2019-07-04 13:14:10 +02:00
if confirmation {
confirm , err := console . Stdin . PromptPassword ( "Repeat passphrase: " )
if err != nil {
utils . Fatalf ( "Failed to read passphrase confirmation: %v" , err )
}
if password != confirm {
utils . Fatalf ( "Passphrases do not match" )
}
}
2016-09-22 02:24:31 +02:00
return password
}
2018-07-17 07:04:43 +02:00
// addDefaultHelpSubcommand scans through defined CLI commands and adds
// a basic help subcommand to each
// if a help command is already defined, it will take precedence over the default.
func addDefaultHelpSubcommands ( commands [ ] cli . Command ) {
for i := range commands {
cmd := & commands [ i ]
if cmd . Subcommands != nil {
cmd . Subcommands = append ( cmd . Subcommands , defaultSubcommandHelp )
addDefaultHelpSubcommands ( cmd . Subcommands )
}
}
}
2018-08-20 14:09:50 +02:00
func setSwarmBootstrapNodes ( ctx * cli . Context , cfg * node . Config ) {
if ctx . GlobalIsSet ( utils . BootnodesFlag . Name ) || ctx . GlobalIsSet ( utils . BootnodesV4Flag . Name ) {
return
}
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 00:59:00 +02:00
cfg . P2P . BootstrapNodes = [ ] * enode . Node { }
2018-08-20 14:09:50 +02:00
for _ , url := range SwarmBootnodes {
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 00:59:00 +02:00
node , err := enode . ParseV4 ( url )
2018-08-20 14:09:50 +02:00
if err != nil {
log . Error ( "Bootstrap URL invalid" , "enode" , url , "err" , err )
}
cfg . P2P . BootstrapNodes = append ( cfg . P2P . BootstrapNodes , node )
}
2019-02-07 09:49:19 -05:00
2018-08-20 14:09:50 +02:00
}
2019-07-16 09:35:04 +02:00
func setSwarmNATFromInterface ( ctx * cli . Context , cfg * node . Config ) {
ifacename := ctx . GlobalString ( SwarmNATInterfaceFlag . Name )
if ifacename == "" {
return
}
iface , err := net . InterfaceByName ( ifacename )
if err != nil {
utils . Fatalf ( "can't get network interface %s" , ifacename )
}
addrs , err := iface . Addrs ( )
if err != nil || len ( addrs ) == 0 {
utils . Fatalf ( "could not get address from interface %s: %v" , ifacename , err )
}
ip , _ , err := net . ParseCIDR ( addrs [ 0 ] . String ( ) )
if err != nil {
utils . Fatalf ( "could not parse IP addr from interface %s: %v" , ifacename , err )
}
cfg . P2P . NAT = nat . ExtIP ( ip )
}