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

	"github.com/ethereum/go-ethereum/accounts"
31
	"github.com/ethereum/go-ethereum/accounts/keystore"
F
Felix Lange 已提交
32 33 34 35 36 37
	"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/ethclient"
	"github.com/ethereum/go-ethereum/internal/debug"
38
	"github.com/ethereum/go-ethereum/log"
F
Felix Lange 已提交
39 40 41 42 43 44 45 46
	"github.com/ethereum/go-ethereum/node"
	"github.com/ethereum/go-ethereum/p2p"
	"github.com/ethereum/go-ethereum/p2p/discover"
	"github.com/ethereum/go-ethereum/swarm"
	bzzapi "github.com/ethereum/go-ethereum/swarm/api"
	"gopkg.in/urfave/cli.v1"
)

47 48 49 50
const (
	clientIdentifier = "swarm"
	versionString    = "0.2"
)
F
Felix Lange 已提交
51 52

var (
53 54 55
	gitCommit        string // Git SHA1 commit hash of the release (set via linker flags)
	app              = utils.NewApp(gitCommit, "Ethereum Swarm")
	testbetBootNodes = []string{
56 57 58 59 60
		"enode://ec8ae764f7cb0417bdfb009b9d0f18ab3818a3a4e8e7c67dd5f18971a93510a2e6f43cd0b69a27e439a9629457ea804104f37c85e41eed057d3faabbf7744cdf@13.74.157.139:30429",
		"enode://c2e1fceb3bf3be19dff71eec6cccf19f2dbf7567ee017d130240c670be8594bc9163353ca55dd8df7a4f161dd94b36d0615c17418b5a3cdcbb4e9d99dfa4de37@13.74.157.139:30430",
		"enode://fe29b82319b734ce1ec68b84657d57145fee237387e63273989d354486731e59f78858e452ef800a020559da22dcca759536e6aa5517c53930d29ce0b1029286@13.74.157.139:30431",
		"enode://1d7187e7bde45cf0bee489ce9852dd6d1a0d9aa67a33a6b8e6db8a4fbc6fcfa6f0f1a5419343671521b863b187d1c73bad3603bae66421d157ffef357669ddb8@13.74.157.139:30432",
		"enode://0e4cba800f7b1ee73673afa6a4acead4018f0149d2e3216be3f133318fd165b324cd71b81fbe1e80deac8dbf56e57a49db7be67f8b9bc81bd2b7ee496434fb5d@13.74.157.139:30433",
61
	}
F
Felix Lange 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
)

var (
	ChequebookAddrFlag = cli.StringFlag{
		Name:  "chequebook",
		Usage: "chequebook contract address",
	}
	SwarmAccountFlag = cli.StringFlag{
		Name:  "bzzaccount",
		Usage: "Swarm account key file",
	}
	SwarmPortFlag = cli.StringFlag{
		Name:  "bzzport",
		Usage: "Swarm local http api port",
	}
77 78
	SwarmNetworkIdFlag = cli.IntFlag{
		Name:  "bzznetworkid",
79
		Usage: "Network identifier (integer, default 3=swarm testnet)",
80
	}
F
Felix Lange 已提交
81 82 83 84
	SwarmConfigPathFlag = cli.StringFlag{
		Name:  "bzzconfig",
		Usage: "Swarm config file path (datadir/bzz)",
	}
85
	SwarmSwapEnabledFlag = cli.BoolFlag{
86 87
		Name:  "swap",
		Usage: "Swarm SWAP enabled (default false)",
F
Felix Lange 已提交
88
	}
89
	SwarmSyncEnabledFlag = cli.BoolTFlag{
90 91
		Name:  "sync",
		Usage: "Swarm Syncing enabled (default true)",
F
Felix Lange 已提交
92
	}
93
	EthAPIFlag = cli.StringFlag{
F
Felix Lange 已提交
94 95 96 97
		Name:  "ethapi",
		Usage: "URL of the Ethereum API provider",
		Value: node.DefaultIPCEndpoint("geth"),
	}
98 99 100 101 102 103 104 105 106 107 108 109 110
	SwarmApiFlag = cli.StringFlag{
		Name:  "bzzapi",
		Usage: "Swarm HTTP endpoint",
		Value: "http://127.0.0.1:8500",
	}
	SwarmRecursiveUploadFlag = cli.BoolFlag{
		Name:  "recursive",
		Usage: "Upload directories recursively",
	}
	SwarmWantManifestFlag = cli.BoolTFlag{
		Name:  "manifest",
		Usage: "Automatic manifest upload",
	}
111 112 113 114
	SwarmUploadDefaultPath = cli.StringFlag{
		Name:  "defaultpath",
		Usage: "path to file served for empty url path (none)",
	}
115 116
	CorsStringFlag = cli.StringFlag{
		Name:  "corsdomain",
P
Péter Szilágyi 已提交
117
		Usage: "Domain on which to send Access-Control-Allow-Origin header (multiple domains can be supplied separated by a ',')",
118
	}
F
Felix Lange 已提交
119 120 121 122 123 124
)

func init() {
	// Override flag defaults so bzzd can run alongside geth.
	utils.ListenPortFlag.Value = 30399
	utils.IPCPathFlag.Value = utils.DirectoryString{Value: "bzzd.ipc"}
125
	utils.IPCApiFlag.Value = "admin, bzz, chequebook, debug, rpc, swarmfs, web3"
F
Felix Lange 已提交
126 127 128

	// Set up the cli app.
	app.Action = bzzd
129 130 131
	app.HideVersion = true // we have a command to print the version
	app.Copyright = "Copyright 2013-2016 The go-ethereum Authors"
	app.Commands = []cli.Command{
F
Felix Lange 已提交
132
		{
133 134 135 136 137 138 139 140
			Action:    version,
			Name:      "version",
			Usage:     "Print version numbers",
			ArgsUsage: " ",
			Description: `
The output of this command is supposed to be machine-readable.
`,
		},
F
Felix Lange 已提交
141
		{
142 143 144 145 146 147
			Action:    upload,
			Name:      "up",
			Usage:     "upload a file or directory to swarm using the HTTP API",
			ArgsUsage: " <file>",
			Description: `
"upload a file or directory to swarm using the HTTP API and prints the root hash",
148 149 150 151 152 153 154 155 156
`,
		},
		{
			Action:    list,
			Name:      "ls",
			Usage:     "list files and directories contained in a manifest",
			ArgsUsage: " <manifest> [<prefix>]",
			Description: `
Lists files and directories contained in a manifest.
157 158
`,
		},
F
Felix Lange 已提交
159
		{
160 161 162 163 164 165 166 167
			Action:    hash,
			Name:      "hash",
			Usage:     "print the swarm hash of a file or directory",
			ArgsUsage: " <file>",
			Description: `
Prints the swarm hash of file or directory.
`,
		},
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
		{
			Name:      "manifest",
			Usage:     "update a MANIFEST",
			ArgsUsage: "manifest COMMAND",
			Description: `
Updates a MANIFEST by adding/removing/updating the hash of a path.
`,
			Subcommands: []cli.Command{
				{
					Action:    add,
					Name:      "add",
					Usage:     "add a new path to the manifest",
					ArgsUsage: "<MANIFEST> <path> <hash> [<content-type>]",
					Description: `
Adds a new path to the manifest
`,
				},
				{
					Action:    update,
					Name:      "update",
					Usage:     "update the hash for an already existing path in the manifest",
					ArgsUsage: "<MANIFEST> <path> <newhash> [<newcontent-type>]",
					Description: `
Update the hash for an already existing path in the manifest
`,
				},
				{
					Action:    remove,
					Name:      "remove",
					Usage:     "removes a path from the manifest",
					ArgsUsage: "<MANIFEST> <path>",
					Description: `
Removes a path from the manifest
`,
				},
			},
		},
205 206 207 208 209 210 211 212 213
		{
			Action:    cleandb,
			Name:      "cleandb",
			Usage:     "Cleans database of corrupted entries",
			ArgsUsage: " ",
			Description: `
Cleans database of corrupted entries.
`,
		},
214 215
	}

F
Felix Lange 已提交
216 217 218 219 220 221
	app.Flags = []cli.Flag{
		utils.IdentityFlag,
		utils.DataDirFlag,
		utils.BootnodesFlag,
		utils.KeyStoreDirFlag,
		utils.ListenPortFlag,
222 223
		utils.NoDiscoverFlag,
		utils.DiscoveryV5Flag,
224
		utils.NetrestrictFlag,
F
Felix Lange 已提交
225 226
		utils.NodeKeyFileFlag,
		utils.NodeKeyHexFlag,
227 228
		utils.MaxPeersFlag,
		utils.NATFlag,
F
Felix Lange 已提交
229 230 231 232
		utils.IPCDisabledFlag,
		utils.IPCApiFlag,
		utils.IPCPathFlag,
		// bzzd-specific flags
233 234
		CorsStringFlag,
		EthAPIFlag,
F
Felix Lange 已提交
235
		SwarmConfigPathFlag,
236 237
		SwarmSwapEnabledFlag,
		SwarmSyncEnabledFlag,
F
Felix Lange 已提交
238 239
		SwarmPortFlag,
		SwarmAccountFlag,
240
		SwarmNetworkIdFlag,
F
Felix Lange 已提交
241
		ChequebookAddrFlag,
242 243 244 245
		// upload flags
		SwarmApiFlag,
		SwarmRecursiveUploadFlag,
		SwarmWantManifestFlag,
246
		SwarmUploadDefaultPath,
F
Felix Lange 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
	}
	app.Flags = append(app.Flags, debug.Flags...)
	app.Before = func(ctx *cli.Context) error {
		runtime.GOMAXPROCS(runtime.NumCPU())
		return debug.Setup(ctx)
	}
	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)
	}
}

266 267 268 269 270 271 272 273 274 275 276 277 278 279
func version(ctx *cli.Context) error {
	fmt.Println(strings.Title(clientIdentifier))
	fmt.Println("Version:", versionString)
	if gitCommit != "" {
		fmt.Println("Git Commit:", gitCommit)
	}
	fmt.Println("Network Id:", ctx.GlobalInt(utils.NetworkIdFlag.Name))
	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())
	return nil
}

F
Felix Lange 已提交
280 281 282 283
func bzzd(ctx *cli.Context) error {
	stack := utils.MakeNode(ctx, clientIdentifier, gitCommit)
	registerBzzService(ctx, stack)
	utils.StartNode(stack)
284 285 286 287 288
	go func() {
		sigc := make(chan os.Signal, 1)
		signal.Notify(sigc, syscall.SIGTERM)
		defer signal.Stop(sigc)
		<-sigc
P
Péter Szilágyi 已提交
289
		log.Info("Got sigterm, shutting swarm down...")
290 291
		stack.Stop()
	}()
292
	networkId := ctx.GlobalUint64(SwarmNetworkIdFlag.Name)
F
Felix Lange 已提交
293 294
	// Add bootnodes as initial peers.
	if ctx.GlobalIsSet(utils.BootnodesFlag.Name) {
295 296
		bootnodes := strings.Split(ctx.GlobalString(utils.BootnodesFlag.Name), ",")
		injectBootnodes(stack.Server(), bootnodes)
F
Felix Lange 已提交
297
	} else {
298 299 300
		if networkId == 3 {
			injectBootnodes(stack.Server(), testbetBootNodes)
		}
F
Felix Lange 已提交
301 302 303 304 305 306 307
	}

	stack.Wait()
	return nil
}

func registerBzzService(ctx *cli.Context, stack *node.Node) {
308

F
Felix Lange 已提交
309 310 311 312 313 314 315
	prvkey := getAccount(ctx, stack)

	chbookaddr := common.HexToAddress(ctx.GlobalString(ChequebookAddrFlag.Name))
	bzzdir := ctx.GlobalString(SwarmConfigPathFlag.Name)
	if bzzdir == "" {
		bzzdir = stack.InstanceDir()
	}
316

317
	bzzconfig, err := bzzapi.NewConfig(bzzdir, chbookaddr, prvkey, ctx.GlobalUint64(SwarmNetworkIdFlag.Name))
F
Felix Lange 已提交
318
	if err != nil {
319
		utils.Fatalf("unable to configure swarm: %v", err)
F
Felix Lange 已提交
320 321 322 323 324
	}
	bzzport := ctx.GlobalString(SwarmPortFlag.Name)
	if len(bzzport) > 0 {
		bzzconfig.Port = bzzport
	}
325 326
	swapEnabled := ctx.GlobalBool(SwarmSwapEnabledFlag.Name)
	syncEnabled := ctx.GlobalBoolT(SwarmSyncEnabledFlag.Name)
F
Felix Lange 已提交
327

328 329
	ethapi := ctx.GlobalString(EthAPIFlag.Name)
	cors := ctx.GlobalString(CorsStringFlag.Name)
F
Felix Lange 已提交
330 331

	boot := func(ctx *node.ServiceContext) (node.Service, error) {
332
		var client *ethclient.Client
Z
zelig 已提交
333
		if len(ethapi) > 0 {
334
			client, err = ethclient.Dial(ethapi)
Z
zelig 已提交
335
			if err != nil {
336
				utils.Fatalf("Can't connect: %v", err)
Z
zelig 已提交
337
			}
F
Felix Lange 已提交
338
		}
339
		return swarm.NewSwarm(ctx, client, bzzconfig, swapEnabled, syncEnabled, cors)
F
Felix Lange 已提交
340 341
	}
	if err := stack.Register(boot); err != nil {
342
		utils.Fatalf("Failed to register the Swarm service: %v", err)
F
Felix Lange 已提交
343 344 345 346 347
	}
}

func getAccount(ctx *cli.Context, stack *node.Node) *ecdsa.PrivateKey {
	keyid := ctx.GlobalString(SwarmAccountFlag.Name)
348

F
Felix Lange 已提交
349
	if keyid == "" {
350
		utils.Fatalf("Option %q is required", SwarmAccountFlag.Name)
F
Felix Lange 已提交
351 352 353
	}
	// Try to load the arg as a hex key file.
	if key, err := crypto.LoadECDSA(keyid); err == nil {
P
Péter Szilágyi 已提交
354
		log.Info("Swarm account key loaded", "address", crypto.PubkeyToAddress(key.PublicKey))
F
Felix Lange 已提交
355 356 357
		return key
	}
	// Otherwise try getting it from the keystore.
358
	am := stack.AccountManager()
359
	ks := am.Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore)
360 361

	return decryptStoreAccount(ks, keyid)
F
Felix Lange 已提交
362 363
}

364
func decryptStoreAccount(ks *keystore.KeyStore, account string) *ecdsa.PrivateKey {
F
Felix Lange 已提交
365 366 367
	var a accounts.Account
	var err error
	if common.IsHexAddress(account) {
368 369 370 371 372 373 374
		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))
		}
F
Felix Lange 已提交
375
	} else {
376
		utils.Fatalf("Can't find swarm account key %s", account)
F
Felix Lange 已提交
377 378
	}
	if err != nil {
379
		utils.Fatalf("Can't find swarm account key: %v", err)
F
Felix Lange 已提交
380
	}
381
	keyjson, err := ioutil.ReadFile(a.URL.Path)
F
Felix Lange 已提交
382
	if err != nil {
383
		utils.Fatalf("Can't load swarm account key: %v", err)
F
Felix Lange 已提交
384 385 386
	}
	for i := 1; i <= 3; i++ {
		passphrase := promptPassphrase(fmt.Sprintf("Unlocking swarm account %s [%d/3]", a.Address.Hex(), i))
387
		key, err := keystore.DecryptKey(keyjson, passphrase)
F
Felix Lange 已提交
388 389 390 391
		if err == nil {
			return key.PrivateKey
		}
	}
392
	utils.Fatalf("Can't decrypt swarm account key")
F
Felix Lange 已提交
393 394 395 396 397 398 399 400 401
	return nil
}

func promptPassphrase(prompt string) string {
	if prompt != "" {
		fmt.Println(prompt)
	}
	password, err := console.Stdin.PromptPassword("Passphrase: ")
	if err != nil {
402
		utils.Fatalf("Failed to read passphrase: %v", err)
F
Felix Lange 已提交
403 404 405 406 407 408 409 410
	}
	return password
}

func injectBootnodes(srv *p2p.Server, nodes []string) {
	for _, url := range nodes {
		n, err := discover.ParseNode(url)
		if err != nil {
P
Péter Szilágyi 已提交
411
			log.Error("Invalid swarm bootnode", "err", err)
412
			continue
F
Felix Lange 已提交
413 414 415 416
		}
		srv.AddPeer(n)
	}
}