main.go 27 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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"
21
	"encoding/hex"
22 23 24
	"fmt"
	"io/ioutil"
	"os"
25
	"os/signal"
26
	"runtime"
27
	"sort"
28
	"strconv"
29
	"strings"
30
	"syscall"
31 32

	"github.com/ethereum/go-ethereum/accounts"
33
	"github.com/ethereum/go-ethereum/accounts/keystore"
34 35 36 37 38
	"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"
	"github.com/ethereum/go-ethereum/internal/debug"
39
	"github.com/ethereum/go-ethereum/log"
40
	"github.com/ethereum/go-ethereum/node"
41
	"github.com/ethereum/go-ethereum/p2p/enode"
42 43
	"github.com/ethereum/go-ethereum/swarm"
	bzzapi "github.com/ethereum/go-ethereum/swarm/api"
44
	swarmmetrics "github.com/ethereum/go-ethereum/swarm/metrics"
45
	"github.com/ethereum/go-ethereum/swarm/tracing"
46
	sv "github.com/ethereum/go-ethereum/swarm/version"
47

48 49 50
	"gopkg.in/urfave/cli.v1"
)

51
const clientIdentifier = "swarm"
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
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}}
`
68 69

var (
70
	gitCommit string // Git SHA1 commit hash of the release (set via linker flags)
71 72 73 74
)

var (
	ChequebookAddrFlag = cli.StringFlag{
75 76 77
		Name:   "chequebook",
		Usage:  "chequebook contract address",
		EnvVar: SWARM_ENV_CHEQUEBOOK_ADDR,
78 79
	}
	SwarmAccountFlag = cli.StringFlag{
80 81 82
		Name:   "bzzaccount",
		Usage:  "Swarm account key file",
		EnvVar: SWARM_ENV_ACCOUNT,
83
	}
84
	SwarmListenAddrFlag = cli.StringFlag{
85 86 87
		Name:   "httpaddr",
		Usage:  "Swarm HTTP API listening interface",
		EnvVar: SWARM_ENV_LISTEN_ADDR,
88
	}
89
	SwarmPortFlag = cli.StringFlag{
90 91 92
		Name:   "bzzport",
		Usage:  "Swarm local http api port",
		EnvVar: SWARM_ENV_PORT,
93
	}
94
	SwarmNetworkIdFlag = cli.IntFlag{
95 96 97
		Name:   "bzznetworkid",
		Usage:  "Network identifier (integer, default 3=swarm testnet)",
		EnvVar: SWARM_ENV_NETWORK_ID,
98
	}
99
	SwarmSwapEnabledFlag = cli.BoolFlag{
100 101 102
		Name:   "swap",
		Usage:  "Swarm SWAP enabled (default false)",
		EnvVar: SWARM_ENV_SWAP_ENABLE,
103
	}
104
	SwarmSwapAPIFlag = cli.StringFlag{
105 106 107
		Name:   "swap-api",
		Usage:  "URL of the Ethereum API provider to use to settle SWAP payments",
		EnvVar: SWARM_ENV_SWAP_API,
108
	}
109 110 111 112 113 114 115 116 117 118
	SwarmSyncDisabledFlag = cli.BoolTFlag{
		Name:   "nosync",
		Usage:  "Disable swarm syncing",
		EnvVar: SWARM_ENV_SYNC_DISABLE,
	}
	SwarmSyncUpdateDelay = cli.DurationFlag{
		Name:   "sync-update-delay",
		Usage:  "Duration for sync subscriptions update after no new peers are added (default 15s)",
		EnvVar: SWARM_ENV_SYNC_UPDATE_DELAY,
	}
119 120 121 122 123 124
	SwarmMaxStreamPeerServersFlag = cli.IntFlag{
		Name:   "max-stream-peer-servers",
		Usage:  "Limit of Stream peer servers, 0 denotes unlimited",
		EnvVar: SWARM_ENV_MAX_STREAM_PEER_SERVERS,
		Value:  10000, // A very large default value is possible as stream servers have very small memory footprint
	}
125 126 127 128 129
	SwarmLightNodeEnabled = cli.BoolFlag{
		Name:   "lightnode",
		Usage:  "Enable Swarm LightNode (default false)",
		EnvVar: SWARM_ENV_LIGHT_NODE_ENABLE,
	}
130 131 132 133
	SwarmDeliverySkipCheckFlag = cli.BoolFlag{
		Name:   "delivery-skip-check",
		Usage:  "Skip chunk delivery check (default false)",
		EnvVar: SWARM_ENV_DELIVERY_SKIP_CHECK,
134
	}
135
	EnsAPIFlag = cli.StringSliceFlag{
136
		Name:   "ens-api",
137
		Usage:  "ENS API endpoint for a TLD and with contract address, can be repeated, format [tld:][contract-addr@]url",
138
		EnvVar: SWARM_ENV_ENS_API,
139
	}
140 141 142 143 144
	SwarmApiFlag = cli.StringFlag{
		Name:  "bzzapi",
		Usage: "Swarm HTTP endpoint",
		Value: "http://127.0.0.1:8500",
	}
145
	SwarmRecursiveFlag = cli.BoolFlag{
146 147 148 149 150
		Name:  "recursive",
		Usage: "Upload directories recursively",
	}
	SwarmWantManifestFlag = cli.BoolTFlag{
		Name:  "manifest",
151
		Usage: "Automatic manifest upload (default true)",
152
	}
153 154 155 156
	SwarmUploadDefaultPath = cli.StringFlag{
		Name:  "defaultpath",
		Usage: "path to file served for empty url path (none)",
	}
157 158 159 160 161 162 163 164
	SwarmAccessGrantKeyFlag = cli.StringFlag{
		Name:  "grant-key",
		Usage: "grants a given public key access to an ACT",
	}
	SwarmAccessGrantKeysFlag = cli.StringFlag{
		Name:  "grant-keys",
		Usage: "grants a given list of public keys in the following file (separated by line breaks) access to an ACT",
	}
165 166 167 168 169 170
	SwarmUpFromStdinFlag = cli.BoolFlag{
		Name:  "stdin",
		Usage: "reads data to be uploaded from stdin",
	}
	SwarmUploadMimeType = cli.StringFlag{
		Name:  "mime",
171
		Usage: "Manually specify MIME type",
172
	}
173 174 175 176
	SwarmEncryptedFlag = cli.BoolFlag{
		Name:  "encrypt",
		Usage: "use encrypted upload",
	}
177 178 179 180 181 182 183 184 185
	SwarmAccessPasswordFlag = cli.StringFlag{
		Name:   "password",
		Usage:  "Password",
		EnvVar: SWARM_ACCESS_PASSWORD,
	}
	SwarmDryRunFlag = cli.BoolFlag{
		Name:  "dry-run",
		Usage: "dry-run",
	}
186
	CorsStringFlag = cli.StringFlag{
187 188 189
		Name:   "corsdomain",
		Usage:  "Domain on which to send Access-Control-Allow-Origin header (multiple domains can be supplied separated by a ',')",
		EnvVar: SWARM_ENV_CORS,
190
	}
191 192 193 194
	SwarmStorePath = cli.StringFlag{
		Name:   "store.path",
		Usage:  "Path to leveldb chunk DB (default <$GETH_ENV_DIR>/swarm/bzz-<$BZZ_KEY>/chunks)",
		EnvVar: SWARM_ENV_STORE_PATH,
195
	}
196 197 198 199 200 201 202 203 204
	SwarmStoreCapacity = cli.Uint64Flag{
		Name:   "store.size",
		Usage:  "Number of chunks (5M is roughly 20-25GB) (default 5000000)",
		EnvVar: SWARM_ENV_STORE_CAPACITY,
	}
	SwarmStoreCacheCapacity = cli.UintFlag{
		Name:   "store.cache.size",
		Usage:  "Number of recent chunks cached in memory (default 5000)",
		EnvVar: SWARM_ENV_STORE_CACHE_CAPACITY,
205
	}
206 207 208 209 210 211 212 213 214 215 216 217
	SwarmResourceMultihashFlag = cli.BoolFlag{
		Name:  "multihash",
		Usage: "Determines how to interpret data for a resource update. If not present, data will be interpreted as raw, literal data that will be included in the resource",
	}
	SwarmResourceNameFlag = cli.StringFlag{
		Name:  "name",
		Usage: "User-defined name for the new resource",
	}
	SwarmResourceDataOnCreateFlag = cli.StringFlag{
		Name:  "data",
		Usage: "Initializes the resource with the given hex-encoded data. Data must be prefixed by 0x",
	}
218 219 220 221
	SwarmCompressedFlag = cli.BoolFlag{
		Name:  "compressed",
		Usage: "Prints encryption keys in compressed form",
	}
222 223
)

224 225 226 227 228 229
//declare a few constant error messages, useful for later error check comparisons in test
var (
	SWARM_ERR_NO_BZZACCOUNT   = "bzzaccount option is required but not set; check your config file, command line or environment variables"
	SWARM_ERR_SWAP_SET_NO_API = "SWAP is enabled but --swap-api is not set"
)

230 231 232 233 234 235 236 237 238
// 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,
}

239 240 241
var defaultNodeConfig = node.DefaultConfig

// This init function sets defaults so cmd/swarm can run alongside geth.
242
func init() {
243
	defaultNodeConfig.Name = clientIdentifier
244
	defaultNodeConfig.Version = sv.VersionWithCommit(gitCommit)
245 246 247
	defaultNodeConfig.P2P.ListenAddr = ":30399"
	defaultNodeConfig.IPCPath = "bzzd.ipc"
	// Set flag defaults for --help display.
248
	utils.ListenPortFlag.Value = 30399
249
}
250

251 252 253 254
var app = utils.NewApp(gitCommit, "Ethereum Swarm")

// This init function creates the cli.App.
func init() {
255
	app.Action = bzzd
256 257 258
	app.HideVersion = true // we have a command to print the version
	app.Copyright = "Copyright 2013-2016 The go-ethereum Authors"
	app.Commands = []cli.Command{
Felix Lange's avatar
Felix Lange committed
259
		{
260 261 262 263 264
			Action:             version,
			CustomHelpTemplate: helpTemplate,
			Name:               "version",
			Usage:              "Print version numbers",
			Description:        "The output of this command is supposed to be machine-readable",
265
		},
266 267 268 269 270 271 272 273
		{
			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",
		},
Felix Lange's avatar
Felix Lange committed
274
		{
275 276 277 278 279 280 281
			Action:             upload,
			CustomHelpTemplate: helpTemplate,
			Name:               "up",
			Usage:              "uploads a file or directory to swarm using the HTTP API",
			ArgsUsage:          "<file>",
			Flags:              []cli.Flag{SwarmEncryptedFlag},
			Description:        "uploads a file or directory to swarm using the HTTP API and prints the root hash",
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
		{
			CustomHelpTemplate: helpTemplate,
			Name:               "access",
			Usage:              "encrypts a reference and embeds it into a root manifest",
			ArgsUsage:          "<ref>",
			Description:        "encrypts a reference and embeds it into a root manifest",
			Subcommands: []cli.Command{
				{
					CustomHelpTemplate: helpTemplate,
					Name:               "new",
					Usage:              "encrypts a reference and embeds it into a root manifest",
					ArgsUsage:          "<ref>",
					Description:        "encrypts a reference and embeds it into a root access manifest and prints the resulting manifest",
					Subcommands: []cli.Command{
						{
							Action:             accessNewPass,
							CustomHelpTemplate: helpTemplate,
							Flags: []cli.Flag{
								utils.PasswordFileFlag,
								SwarmDryRunFlag,
							},
							Name:        "pass",
							Usage:       "encrypts a reference with a password and embeds it into a root manifest",
							ArgsUsage:   "<ref>",
							Description: "encrypts a reference and embeds it into a root access manifest and prints the resulting manifest",
						},
						{
							Action:             accessNewPK,
							CustomHelpTemplate: helpTemplate,
							Flags: []cli.Flag{
								utils.PasswordFileFlag,
								SwarmDryRunFlag,
								SwarmAccessGrantKeyFlag,
							},
							Name:        "pk",
							Usage:       "encrypts a reference with the node's private key and a given grantee's public key and embeds it into a root manifest",
							ArgsUsage:   "<ref>",
							Description: "encrypts a reference and embeds it into a root access manifest and prints the resulting manifest",
						},
						{
							Action:             accessNewACT,
							CustomHelpTemplate: helpTemplate,
							Flags: []cli.Flag{
								SwarmAccessGrantKeysFlag,
								SwarmDryRunFlag,
328
								utils.PasswordFileFlag,
329 330 331 332 333 334 335 336 337 338
							},
							Name:        "act",
							Usage:       "encrypts a reference with the node's private key and a given grantee's public key and embeds it into a root manifest",
							ArgsUsage:   "<ref>",
							Description: "encrypts a reference and embeds it into a root access manifest and prints the resulting manifest",
						},
					},
				},
			},
		},
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
		{
			CustomHelpTemplate: helpTemplate,
			Name:               "resource",
			Usage:              "(Advanced) Create and update Mutable Resources",
			ArgsUsage:          "<create|update|info>",
			Description:        "Works with Mutable Resource Updates",
			Subcommands: []cli.Command{
				{
					Action:             resourceCreate,
					CustomHelpTemplate: helpTemplate,
					Name:               "create",
					Usage:              "creates a new Mutable Resource",
					ArgsUsage:          "<frequency>",
					Description:        "creates a new Mutable Resource",
					Flags:              []cli.Flag{SwarmResourceNameFlag, SwarmResourceDataOnCreateFlag, SwarmResourceMultihashFlag},
				},
				{
					Action:             resourceUpdate,
					CustomHelpTemplate: helpTemplate,
					Name:               "update",
					Usage:              "updates the content of an existing Mutable Resource",
					ArgsUsage:          "<Manifest Address or ENS domain> <0x Hex data>",
					Description:        "updates the content of an existing Mutable Resource",
					Flags:              []cli.Flag{SwarmResourceMultihashFlag},
				},
				{
					Action:             resourceInfo,
					CustomHelpTemplate: helpTemplate,
					Name:               "info",
					Usage:              "obtains information about an existing Mutable Resource",
					ArgsUsage:          "<Manifest Address or ENS domain>",
					Description:        "obtains information about an existing Mutable Resource",
				},
			},
		},
374
		{
375 376 377 378 379 380
			Action:             list,
			CustomHelpTemplate: helpTemplate,
			Name:               "ls",
			Usage:              "list files and directories contained in a manifest",
			ArgsUsage:          "<manifest> [<prefix>]",
			Description:        "Lists files and directories contained in a manifest",
381
		},
Felix Lange's avatar
Felix Lange committed
382
		{
383 384 385 386 387 388
			Action:             hash,
			CustomHelpTemplate: helpTemplate,
			Name:               "hash",
			Usage:              "print the swarm hash of a file or directory",
			ArgsUsage:          "<file>",
			Description:        "Prints the swarm hash of file or directory",
389
		},
390
		{
391 392 393 394 395 396
			Action:      download,
			Name:        "down",
			Flags:       []cli.Flag{SwarmRecursiveFlag, SwarmAccessPasswordFlag},
			Usage:       "downloads a swarm manifest or a file inside a manifest",
			ArgsUsage:   " <uri> [<dir>]",
			Description: `Downloads a swarm bzz uri to the given dir. When no dir is provided, working directory is assumed. --recursive flag is expected when downloading a manifest with multiple entries.`,
397 398 399 400 401 402 403
		},
		{
			Name:               "manifest",
			CustomHelpTemplate: helpTemplate,
			Usage:              "perform operations on swarm manifests",
			ArgsUsage:          "COMMAND",
			Description:        "Updates a MANIFEST by adding/removing/updating the hash of a path.\nCOMMAND could be: add, update, remove",
404 405
			Subcommands: []cli.Command{
				{
406
					Action:             manifestAdd,
407 408 409
					CustomHelpTemplate: helpTemplate,
					Name:               "add",
					Usage:              "add a new path to the manifest",
410
					ArgsUsage:          "<MANIFEST> <path> <hash>",
411
					Description:        "Adds a new path to the manifest",
412 413
				},
				{
414
					Action:             manifestUpdate,
415 416 417
					CustomHelpTemplate: helpTemplate,
					Name:               "update",
					Usage:              "update the hash for an already existing path in the manifest",
418
					ArgsUsage:          "<MANIFEST> <path> <newhash>",
419
					Description:        "Update the hash for an already existing path in the manifest",
420 421
				},
				{
422
					Action:             manifestRemove,
423 424 425 426 427
					CustomHelpTemplate: helpTemplate,
					Name:               "remove",
					Usage:              "removes a path from the manifest",
					ArgsUsage:          "<MANIFEST> <path>",
					Description:        "Removes a path from the manifest",
428 429 430
				},
			},
		},
431
		{
432 433 434 435 436
			Name:               "fs",
			CustomHelpTemplate: helpTemplate,
			Usage:              "perform FUSE operations",
			ArgsUsage:          "fs COMMAND",
			Description:        "Performs FUSE operations by mounting/unmounting/listing mount points. This assumes you already have a Swarm node running locally. For all operation you must reference the correct path to bzzd.ipc in order to communicate with the node",
437 438
			Subcommands: []cli.Command{
				{
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
					Action:             mount,
					CustomHelpTemplate: helpTemplate,
					Name:               "mount",
					Flags:              []cli.Flag{utils.IPCPathFlag},
					Usage:              "mount a swarm hash to a mount point",
					ArgsUsage:          "swarm fs mount --ipcpath <path to bzzd.ipc> <manifest hash> <mount point>",
					Description:        "Mounts a Swarm manifest hash to a given mount point. This assumes you already have a Swarm node running locally. You must reference the correct path to your bzzd.ipc file",
				},
				{
					Action:             unmount,
					CustomHelpTemplate: helpTemplate,
					Name:               "unmount",
					Flags:              []cli.Flag{utils.IPCPathFlag},
					Usage:              "unmount a swarmfs mount",
					ArgsUsage:          "swarm fs unmount --ipcpath <path to bzzd.ipc> <mount point>",
					Description:        "Unmounts a swarmfs mount residing at <mount point>. This assumes you already have a Swarm node running locally. You must reference the correct path to your bzzd.ipc file",
				},
				{
					Action:             listMounts,
					CustomHelpTemplate: helpTemplate,
					Name:               "list",
					Flags:              []cli.Flag{utils.IPCPathFlag},
					Usage:              "list swarmfs mounts",
					ArgsUsage:          "swarm fs list --ipcpath <path to bzzd.ipc>",
					Description:        "Lists all mounted swarmfs volumes. This assumes you already have a Swarm node running locally. You must reference the correct path to your bzzd.ipc file",
				},
			},
		},
		{
			Name:               "db",
			CustomHelpTemplate: helpTemplate,
			Usage:              "manage the local chunk database",
			ArgsUsage:          "db COMMAND",
			Description:        "Manage the local chunk database",
			Subcommands: []cli.Command{
				{
					Action:             dbExport,
					CustomHelpTemplate: helpTemplate,
					Name:               "export",
					Usage:              "export a local chunk database as a tar archive (use - to send to stdout)",
					ArgsUsage:          "<chunkdb> <file>",
480 481 482 483 484 485 486 487 488 489 490 491
					Description: `
Export a local chunk database as a tar archive (use - to send to stdout).

    swarm db export ~/.ethereum/swarm/bzz-KEY/chunks chunks.tar

The export may be quite large, consider piping the output through the Unix
pv(1) tool to get a progress bar:

    swarm db export ~/.ethereum/swarm/bzz-KEY/chunks - | pv > chunks.tar
`,
				},
				{
492 493 494 495 496
					Action:             dbImport,
					CustomHelpTemplate: helpTemplate,
					Name:               "import",
					Usage:              "import chunks from a tar archive into a local chunk database (use - to read from stdin)",
					ArgsUsage:          "<chunkdb> <file>",
497
					Description: `Import chunks from a tar archive into a local chunk database (use - to read from stdin).
498 499 500 501 502 503

    swarm db import ~/.ethereum/swarm/bzz-KEY/chunks chunks.tar

The import may be quite large, consider piping the input through the Unix
pv(1) tool to get a progress bar:

504
    pv chunks.tar | swarm db import ~/.ethereum/swarm/bzz-KEY/chunks -`,
505 506
				},
				{
507 508 509 510 511 512
					Action:             dbClean,
					CustomHelpTemplate: helpTemplate,
					Name:               "clean",
					Usage:              "remove corrupt entries from a local chunk database",
					ArgsUsage:          "<chunkdb>",
					Description:        "Remove corrupt entries from a local chunk database",
513 514 515
				},
			},
		},
516

517 518
		// See config.go
		DumpConfigCommand,
519
	}
520 521 522 523 524

	// 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)

525
	sort.Sort(cli.CommandsByName(app.Commands))
526

527 528 529 530 531 532
	app.Flags = []cli.Flag{
		utils.IdentityFlag,
		utils.DataDirFlag,
		utils.BootnodesFlag,
		utils.KeyStoreDirFlag,
		utils.ListenPortFlag,
533 534
		utils.NoDiscoverFlag,
		utils.DiscoveryV5Flag,
535
		utils.NetrestrictFlag,
536 537
		utils.NodeKeyFileFlag,
		utils.NodeKeyHexFlag,
538 539
		utils.MaxPeersFlag,
		utils.NATFlag,
540 541
		utils.IPCDisabledFlag,
		utils.IPCPathFlag,
542
		utils.PasswordFileFlag,
543
		// bzzd-specific flags
544
		CorsStringFlag,
545
		EnsAPIFlag,
546
		SwarmTomlConfigPathFlag,
547
		SwarmSwapEnabledFlag,
548
		SwarmSwapAPIFlag,
549 550
		SwarmSyncDisabledFlag,
		SwarmSyncUpdateDelay,
551
		SwarmMaxStreamPeerServersFlag,
552
		SwarmLightNodeEnabled,
553
		SwarmDeliverySkipCheckFlag,
554
		SwarmListenAddrFlag,
555 556
		SwarmPortFlag,
		SwarmAccountFlag,
557
		SwarmNetworkIdFlag,
558
		ChequebookAddrFlag,
559 560
		// upload flags
		SwarmApiFlag,
561
		SwarmRecursiveFlag,
562
		SwarmWantManifestFlag,
563
		SwarmUploadDefaultPath,
564 565
		SwarmUpFromStdinFlag,
		SwarmUploadMimeType,
566 567 568 569 570 571 572 573 574 575 576 577 578
		// storage flags
		SwarmStorePath,
		SwarmStoreCapacity,
		SwarmStoreCacheCapacity,
	}
	rpcFlags := []cli.Flag{
		utils.WSEnabledFlag,
		utils.WSListenAddrFlag,
		utils.WSPortFlag,
		utils.WSApiFlag,
		utils.WSAllowedOriginsFlag,
	}
	app.Flags = append(app.Flags, rpcFlags...)
579
	app.Flags = append(app.Flags, debug.Flags...)
580
	app.Flags = append(app.Flags, swarmmetrics.Flags...)
581
	app.Flags = append(app.Flags, tracing.Flags...)
582 583
	app.Before = func(ctx *cli.Context) error {
		runtime.GOMAXPROCS(runtime.NumCPU())
584
		if err := debug.Setup(ctx, ""); err != nil {
585 586 587
			return err
		}
		swarmmetrics.Setup(ctx)
588
		tracing.Setup(ctx)
589
		return nil
590 591 592 593 594 595 596 597 598 599 600 601 602 603
	}
	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)
	}
}

604 605 606 607 608 609 610 611 612 613 614
func keys(ctx *cli.Context) error {
	privateKey := getPrivKey(ctx)
	pub := hex.EncodeToString(crypto.FromECDSAPub(&privateKey.PublicKey))
	pubCompressed := hex.EncodeToString(crypto.CompressPubkey(&privateKey.PublicKey))
	if !ctx.Bool(SwarmCompressedFlag.Name) {
		fmt.Println(fmt.Sprintf("publicKey=%s", pub))
	}
	fmt.Println(fmt.Sprintf("publicKeyCompressed=%s", pubCompressed))
	return nil
}

615
func version(ctx *cli.Context) error {
616 617
	fmt.Println(strings.Title(clientIdentifier))
	fmt.Println("Version:", sv.VersionWithMeta)
618 619 620 621 622 623 624 625
	if gitCommit != "" {
		fmt.Println("Git Commit:", gitCommit)
	}
	fmt.Println("Go Version:", runtime.Version())
	fmt.Println("OS:", runtime.GOOS)
	return nil
}

626
func bzzd(ctx *cli.Context) error {
627 628
	//build a valid bzzapi.Config from all available sources:
	//default config, file config, command line and env vars
629

630 631 632
	bzzconfig, err := buildConfig(ctx)
	if err != nil {
		utils.Fatalf("unable to configure swarm: %v", err)
633 634
	}

635
	cfg := defaultNodeConfig
636 637 638 639

	//pss operates on ws
	cfg.WSModules = append(cfg.WSModules, "pss")

640 641 642 643 644 645
	//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
	}
646 647 648

	//optionally set the bootnodes before configuring the node
	setSwarmBootstrapNodes(ctx, &cfg)
649
	//setup the ethereum node
650 651 652 653 654
	utils.SetNodeConfig(ctx, &cfg)
	stack, err := node.New(&cfg)
	if err != nil {
		utils.Fatalf("can't create node: %v", err)
	}
655

656 657 658 659
	//a few steps need to be done after the config phase is completed,
	//due to overriding behavior
	initSwarmNode(bzzconfig, stack, ctx)
	//register BZZ as node.Service in the ethereum node
660
	registerBzzService(bzzconfig, stack)
661
	//start the node
662
	utils.StartNode(stack)
663

664 665 666 667 668
	go func() {
		sigc := make(chan os.Signal, 1)
		signal.Notify(sigc, syscall.SIGTERM)
		defer signal.Stop(sigc)
		<-sigc
669
		log.Info("Got sigterm, shutting swarm down...")
670 671
		stack.Stop()
	}()
672

673 674 675 676
	stack.Wait()
	return nil
}

677
func registerBzzService(bzzconfig *bzzapi.Config, stack *node.Node) {
678
	//define the swarm service boot function
679 680 681
	boot := func(_ *node.ServiceContext) (node.Service, error) {
		// In production, mockStore must be always nil.
		return swarm.NewSwarm(bzzconfig, nil)
682
	}
683
	//register within the ethereum node
684
	if err := stack.Register(boot); err != nil {
685
		utils.Fatalf("Failed to register the Swarm service: %v", err)
686 687 688
	}
}

689 690 691 692
func getAccount(bzzaccount string, ctx *cli.Context, stack *node.Node) *ecdsa.PrivateKey {
	//an account is mandatory
	if bzzaccount == "" {
		utils.Fatalf(SWARM_ERR_NO_BZZACCOUNT)
693 694
	}
	// Try to load the arg as a hex key file.
695
	if key, err := crypto.LoadECDSA(bzzaccount); err == nil {
696
		log.Info("Swarm account key loaded", "address", crypto.PubkeyToAddress(key.PublicKey))
697 698 699
		return key
	}
	// Otherwise try getting it from the keystore.
700
	am := stack.AccountManager()
701
	ks := am.Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore)
702

703
	return decryptStoreAccount(ks, bzzaccount, utils.MakePasswordList(ctx))
704 705
}

706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
// getPrivKey returns the private key of the specified bzzaccount
// Used only by client commands, such as `resource`
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)
	}
	return getAccount(bzzconfig.BzzAccount, ctx, stack)
}

726
func decryptStoreAccount(ks *keystore.KeyStore, account string, passwords []string) *ecdsa.PrivateKey {
727 728 729
	var a accounts.Account
	var err error
	if common.IsHexAddress(account) {
730 731 732 733 734 735 736
		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))
		}
737
	} else {
738
		utils.Fatalf("Can't find swarm account key %s", account)
739 740
	}
	if err != nil {
741
		utils.Fatalf("Can't find swarm account key: %v - Is the provided bzzaccount(%s) from the right datadir/Path?", err, account)
742
	}
743
	keyjson, err := ioutil.ReadFile(a.URL.Path)
744
	if err != nil {
745
		utils.Fatalf("Can't load swarm account key: %v", err)
746
	}
747 748 749
	for i := 0; i < 3; i++ {
		password := getPassPhrase(fmt.Sprintf("Unlocking swarm account %s [%d/3]", a.Address.Hex(), i+1), i, passwords)
		key, err := keystore.DecryptKey(keyjson, password)
750 751 752 753
		if err == nil {
			return key.PrivateKey
		}
	}
754
	utils.Fatalf("Can't decrypt swarm account key")
755 756 757
	return nil
}

758 759 760 761 762 763 764 765 766 767 768 769
// getPassPhrase retrieves the password associated with bzz account, either by fetching
// from a list of pre-loaded passwords, or by requesting it interactively from user.
func getPassPhrase(prompt string, i int, passwords []string) string {
	// non-interactive
	if len(passwords) > 0 {
		if i < len(passwords) {
			return passwords[i]
		}
		return passwords[len(passwords)-1]
	}

	// fallback to interactive mode
770 771 772 773 774
	if prompt != "" {
		fmt.Println(prompt)
	}
	password, err := console.Stdin.PromptPassword("Passphrase: ")
	if err != nil {
775
		utils.Fatalf("Failed to read passphrase: %v", err)
776 777 778 779
	}
	return password
}

780 781 782 783 784 785 786 787 788 789 790 791
// 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)
		}
	}
}
792 793 794 795 796 797

func setSwarmBootstrapNodes(ctx *cli.Context, cfg *node.Config) {
	if ctx.GlobalIsSet(utils.BootnodesFlag.Name) || ctx.GlobalIsSet(utils.BootnodesV4Flag.Name) {
		return
	}

798
	cfg.P2P.BootstrapNodes = []*enode.Node{}
799 800

	for _, url := range SwarmBootnodes {
801
		node, err := enode.ParseV4(url)
802 803 804 805 806 807 808
		if err != nil {
			log.Error("Bootstrap URL invalid", "enode", url, "err", err)
		}
		cfg.P2P.BootstrapNodes = append(cfg.P2P.BootstrapNodes, node)
	}
	log.Debug("added default swarm bootnodes", "length", len(cfg.P2P.BootstrapNodes))
}