init.go 3.29 KB
Newer Older
1 2 3 4 5 6 7
package main

import (
	"encoding/base64"
	"errors"
	"os"

8 9
	"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/gonuts/flag"
	"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander"
10
	config "github.com/jbenet/go-ipfs/config"
11
	ci "github.com/jbenet/go-ipfs/crypto"
12
	spipe "github.com/jbenet/go-ipfs/crypto/spipe"
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
	u "github.com/jbenet/go-ipfs/util"
)

var cmdIpfsInit = &commander.Command{
	UsageLine: "init",
	Short:     "Initialize ipfs local configuration",
	Long: `ipfs init

	Initializes ipfs configuration files and generates a
	new keypair.
`,
	Run:  initCmd,
	Flag: *flag.NewFlagSet("ipfs-init", flag.ExitOnError),
}

func init() {
	cmdIpfsInit.Flag.Int("b", 4096, "number of bits for keypair")
	cmdIpfsInit.Flag.String("p", "", "passphrase for encrypting keys")
	cmdIpfsInit.Flag.Bool("f", false, "force overwrite of existing config")
32
	cmdIpfsInit.Flag.String("d", "", "Change default datastore location")
33 34 35
}

func initCmd(c *commander.Command, inp []string) error {
36 37 38 39 40 41 42 43 44 45 46
	configpath, err := getConfigDir(c.Parent)
	if err != nil {
		return err
	}
	if configpath == "" {
		configpath, err = u.TildeExpansion("~/.go-ipfs")
		if err != nil {
			return err
		}
	}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
47
	u.POut("initializing ipfs node at %s\n", configpath)
48
	filename, err := config.Filename(configpath + "/config")
49 50 51
	if err != nil {
		return errors.New("Couldn't get home directory path")
	}
52

53 54 55 56 57
	dspath, ok := c.Flag.Lookup("d").Value.Get().(string)
	if !ok {
		return errors.New("failed to parse datastore flag")
	}

58
	fi, err := os.Lstat(filename)
59 60 61 62
	force, ok := c.Flag.Lookup("f").Value.Get().(bool)
	if !ok {
		return errors.New("failed to parse force flag")
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
63 64 65 66
	if fi != nil || (err != nil && !os.IsNotExist(err)) {
		if !force {
			return errors.New("ipfs configuration file already exists!\nReinitializing would overwrite your keys.\n(use -f to force overwrite)")
		}
67 68 69
	}
	cfg := new(config.Config)

Brian Tiger Chow's avatar
Brian Tiger Chow committed
70
	cfg.Datastore = config.Datastore{}
71 72 73 74 75
	if len(dspath) == 0 {
		dspath, err = u.TildeExpansion("~/.go-ipfs/datastore")
		if err != nil {
			return err
		}
76 77 78 79
	}
	cfg.Datastore.Path = dspath
	cfg.Datastore.Type = "leveldb"

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
80
	cfg.Identity = config.Identity{}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
81

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
82 83 84 85 86
	// setup the node addresses.
	cfg.Addresses = config.Addresses{
		Swarm: "/ip4/0.0.0.0/tcp/4001",
		API:   "/ip4/127.0.0.1/tcp/5001",
	}
87

88 89 90 91
	nbits, ok := c.Flag.Lookup("b").Value.Get().(int)
	if !ok {
		return errors.New("failed to get bits flag")
	}
92 93 94
	if nbits < 1024 {
		return errors.New("Bitsize less than 1024 is considered unsafe.")
	}
95

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
96
	u.POut("generating key pair\n")
97
	sk, pk, err := ci.GenerateKeyPair(ci.RSA, nbits)
98 99 100 101
	if err != nil {
		return err
	}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
102 103
	// currently storing key unencrypted. in the future we need to encrypt it.
	// TODO(security)
104 105 106 107 108
	skbytes, err := sk.Bytes()
	if err != nil {
		return err
	}
	cfg.Identity.PrivKey = base64.StdEncoding.EncodeToString(skbytes)
109

110
	id, err := spipe.IDFromPubKey(pk)
111 112 113 114 115
	if err != nil {
		return err
	}
	cfg.Identity.PeerID = id.Pretty()

116
	// Use these hardcoded bootstrap peers for now.
117
	cfg.Bootstrap = []*config.BootstrapPeer{
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
118
		&config.BootstrapPeer{
119 120 121 122 123 124
			// mars.i.ipfs.io
			PeerID:  "QmaCpDMGvV2BGHeYERUEnRQAwe3N8SzbUtfsmvsqQLuvuJ",
			Address: "/ip4/104.131.131.82/tcp/4001",
		},
	}

125 126 127 128
	path, err := u.TildeExpansion(config.DefaultConfigFilePath)
	if err != nil {
		return err
	}
129

130 131 132 133 134 135
	err = config.WriteConfigFile(path, cfg)
	if err != nil {
		return err
	}
	return nil
}