core.go 21.3 KB
Newer Older
1 2 3 4
/*
Package core implements the IpfsNode object and related methods.

Packages underneath core/ provide a (relatively) stable, low-level API
5 6 7 8
to carry out most IPFS-related tasks.  For more details on the other
interfaces and how core/... fits into the bigger IPFS picture, see:

  $ godoc github.com/ipfs/go-ipfs
9
*/
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
10 11
package core

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
12
import (
Jakub Sztandera's avatar
Jakub Sztandera committed
13
	"bytes"
14
	"context"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
15
	"errors"
Juan Batiz-Benet's avatar
go fmt  
Juan Batiz-Benet committed
16
	"fmt"
17
	"io"
18
	"io/ioutil"
Jeromy's avatar
Jeromy committed
19
	"net"
20 21
	"os"
	"strings"
22
	"time"
23

24 25 26 27 28 29
	bstore "github.com/ipfs/go-ipfs/blocks/blockstore"
	bserv "github.com/ipfs/go-ipfs/blockservice"
	exchange "github.com/ipfs/go-ipfs/exchange"
	bitswap "github.com/ipfs/go-ipfs/exchange/bitswap"
	bsnet "github.com/ipfs/go-ipfs/exchange/bitswap/network"
	rp "github.com/ipfs/go-ipfs/exchange/reprovide"
30
	filestore "github.com/ipfs/go-ipfs/filestore"
31 32 33 34 35
	mount "github.com/ipfs/go-ipfs/fuse/mount"
	merkledag "github.com/ipfs/go-ipfs/merkledag"
	mfs "github.com/ipfs/go-ipfs/mfs"
	namesys "github.com/ipfs/go-ipfs/namesys"
	ipnsrp "github.com/ipfs/go-ipfs/namesys/republisher"
Łukasz Magiera's avatar
Łukasz Magiera committed
36
	p2p "github.com/ipfs/go-ipfs/p2p"
37 38 39 40 41 42 43
	path "github.com/ipfs/go-ipfs/path"
	pin "github.com/ipfs/go-ipfs/pin"
	repo "github.com/ipfs/go-ipfs/repo"
	config "github.com/ipfs/go-ipfs/repo/config"
	nilrouting "github.com/ipfs/go-ipfs/routing/none"
	offroute "github.com/ipfs/go-ipfs/routing/offline"
	ft "github.com/ipfs/go-ipfs/unixfs"
Jeromy's avatar
Jeromy committed
44

Łukasz Magiera's avatar
Łukasz Magiera committed
45
	dht "gx/ipfs/QmNaAVhp2UXfeDTLhHRUxjB69Tpku38ovSmQegcAMoJXbY/go-libp2p-kad-dht"
46
	cid "gx/ipfs/QmNw61A6sJoXMeP37mJRtQZdNhj5e3FdjoTN3v4FyE96Gk/go-cid"
47 48
	ic "gx/ipfs/QmP1DfoUjiWH2ZBo1PBH6FupdBucbDepx3HpWmEY6JMUpY/go-libp2p-crypto"
	ipnet "gx/ipfs/QmPsBptED6X43GYg3347TAUruN3UfsAhaGTP9xbinYX7uf/go-libp2p-interface-pnet"
49
	mplex "gx/ipfs/QmQ3UABWTgK78utKeiVXaH9BrjC7Ydn1pRuwqnWHT3p4zh/go-smux-multiplex"
50 51 52 53 54
	discovery "gx/ipfs/QmQA5mdxru8Bh6dpC9PJfSkumqnmHgJX7knxSgBo5Lpime/go-libp2p/p2p/discovery"
	p2pbhost "gx/ipfs/QmQA5mdxru8Bh6dpC9PJfSkumqnmHgJX7knxSgBo5Lpime/go-libp2p/p2p/host/basic"
	rhost "gx/ipfs/QmQA5mdxru8Bh6dpC9PJfSkumqnmHgJX7knxSgBo5Lpime/go-libp2p/p2p/host/routed"
	identify "gx/ipfs/QmQA5mdxru8Bh6dpC9PJfSkumqnmHgJX7knxSgBo5Lpime/go-libp2p/p2p/protocol/identify"
	ping "gx/ipfs/QmQA5mdxru8Bh6dpC9PJfSkumqnmHgJX7knxSgBo5Lpime/go-libp2p/p2p/protocol/ping"
55
	mssmux "gx/ipfs/QmRVYfZ7tWNHPBzWiG6KWGzvT2hcGems8srihsQE29x1U5/go-smux-multistream"
56
	goprocess "gx/ipfs/QmSF8fPo3jgVBAy8fpdjjYqgG87dkJgUprRBHRd2tmfgpP/goprocess"
Jeromy's avatar
Jeromy committed
57
	mamask "gx/ipfs/QmSMZwvs3n4GBikZ7hKzT17c3bk65FmyZo2JqtJ16swqCv/multiaddr-filter"
Łukasz Magiera's avatar
Łukasz Magiera committed
58
	ds "gx/ipfs/QmSiN66ybp5udnQnvhb6euiWiiQWdGvwMhAWa95cC1DTCV/go-datastore"
Jeromy's avatar
Jeromy committed
59
	logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
Jeromy's avatar
Jeromy committed
60
	b58 "gx/ipfs/QmT8rehPR3F6bmwL6zjUN8XpiDBFFpMP2myPdC6ApsWfJf/go-base58"
Lars Gierth's avatar
Lars Gierth committed
61
	pnet "gx/ipfs/QmTJoXQ24GqDf9MqAUwf3vW38HG6ahE9S7GzZoRMEeE8Kc/go-libp2p-pnet"
62 63 64
	floodsub "gx/ipfs/QmUpeULWfmtsgCnfuRN3BHsfhHvBxNphoYh4La4CMxGt2Z/floodsub"
	p2phost "gx/ipfs/QmUywuGNZoUKV8B9iyvup9bPkLiMrhTsyVMkeSXW5VxAfC/go-libp2p-host"
	swarm "gx/ipfs/QmVkDnNm71vYyY6s6rXwtmyDYis3WkKyrEhMECwT6R12uJ/go-libp2p-swarm"
65
	u "gx/ipfs/QmWbjfz3u6HkAdPh34dgPchGbQjob6LXLhAeCGii2TX69n/go-ipfs-util"
66
	pstore "gx/ipfs/QmXZSd1qR5BxZkPyuwfT5jpqQFScZccoZvDneXsKzCNHWX/go-libp2p-peerstore"
67
	routing "gx/ipfs/QmaNDbaV1wvPRLxTYepVsXrppXNjQ1NbrnG7ibAgKeyaXD/go-libp2p-routing"
68
	addrutil "gx/ipfs/QmbH3urJHTrZSUETgvQRriWM6mMFqyNSwCqnhknxfSGVWv/go-addr-util"
69
	yamux "gx/ipfs/Qmbn7RYyWzBVXiUp9jZ1dA4VADHy9DtS7iZLwfhEUQvm3U/go-smux-yamux"
70 71
	ma "gx/ipfs/QmcyqRMCAXVtYPS4DiBrA7sezL9rRGfW8Ctx7cywL4TXJj/go-multiaddr"
	peer "gx/ipfs/QmdS9KpbDyPrieswibZhkod1oXqRwZJrUPzxCofAMWpFGq/go-libp2p-peer"
72
	metrics "gx/ipfs/QmdibiN2wzuuXXz4JvqQ1ZGW3eUkoAy1AWznHFau6iePCc/go-libp2p-metrics"
73
	smux "gx/ipfs/QmeZBgYBHvxMukGK5ojg28BCNLB9SeXqT7XXg6o7r2GbJy/go-stream-muxer"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
74 75
)

Jeromy's avatar
Jeromy committed
76
const IpnsValidatorTag = "ipns"
77

78
const kReprovideFrequency = time.Hour * 12
79
const discoveryConnTimeout = time.Second * 30
Jeromy's avatar
Jeromy committed
80

Jeromy's avatar
Jeromy committed
81
var log = logging.Logger("core")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
82

83 84 85 86
type mode int

const (
	// zero value is not a valid mode, must be explicitly set
87
	localMode mode = iota
88 89 90 91
	offlineMode
	onlineMode
)

92 93 94 95
func init() {
	identify.ClientVersion = "go-ipfs/" + config.CurrentVersionNumber + "/" + config.CurrentCommit
}

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
96
// IpfsNode is IPFS Core module. It represents an IPFS instance.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
97 98
type IpfsNode struct {

99
	// Self
100
	Identity peer.ID // the local node's identity
101

102
	Repo repo.Repo
103 104

	// Local node
Jakub Sztandera's avatar
Jakub Sztandera committed
105 106 107 108
	Pinning        pin.Pinner // the pinning manager
	Mounts         Mounts     // current mount state, if any.
	PrivateKey     ic.PrivKey // the local node's private Key
	PNetFingerpint []byte     // fingerprint of private network
109 110

	// Services
Jeromy's avatar
Jeromy committed
111
	Peerstore  pstore.Peerstore     // storage for other Peer instances
112
	Blockstore bstore.GCBlockstore  // the block store (lower level)
113 114 115
	Filestore  *filestore.Filestore // the filestore blockstore
	BaseBlocks bstore.Blockstore    // the raw blockstore, no filestore wrapping
	GCLocker   bstore.GCLocker      // the locker used to protect the blockstore during gc
116
	Blocks     bserv.BlockService   // the block service, get/add blocks.
117 118
	DAG        merkledag.DAGService // the merkle dag service, get/add objects.
	Resolver   *path.Resolver       // the path resolution system
Jeromy's avatar
Jeromy committed
119
	Reporter   metrics.Reporter
120
	Discovery  discovery.Service
Jeromy's avatar
Jeromy committed
121
	FilesRoot  *mfs.Root
122 123

	// Online
124 125 126 127 128
	PeerHost     p2phost.Host        // the network host (server+client)
	Bootstrapper io.Closer           // the periodic bootstrapper
	Routing      routing.IpfsRouting // the routing system. recommend ipfs-dht
	Exchange     exchange.Interface  // the block exchange + strategy (bitswap)
	Namesys      namesys.NameSystem  // the name system, resolves paths to hashes
Jeromy's avatar
Jeromy committed
129 130
	Ping         *ping.PingService
	Reprovider   *rp.Reprovider // the value reprovider system
Jeromy's avatar
Jeromy committed
131
	IpnsRepub    *ipnsrp.Republisher
132

Jeromy's avatar
Jeromy committed
133
	Floodsub *floodsub.PubSub
Łukasz Magiera's avatar
Łukasz Magiera committed
134
	P2P      *p2p.P2P
Jeromy's avatar
Jeromy committed
135

136 137
	proc goprocess.Process
	ctx  context.Context
138

Jeromy's avatar
Jeromy committed
139
	mode         mode
140
	localModeSet bool
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
141 142
}

143 144 145 146 147 148 149 150
// Mounts defines what the node's mount state is. This should
// perhaps be moved to the daemon or mount. It's here because
// it needs to be accessible across daemon requests.
type Mounts struct {
	Ipfs mount.Mount
	Ipns mount.Mount
}

151
func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption RoutingOption, hostOption HostOption, do DiscoveryOption, pubsub, mplex bool) error {
152 153

	if n.PeerHost != nil { // already online.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
154
		return errors.New("node already online")
155 156 157
	}

	// load private key
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
158
	if err := n.LoadPrivateKey(); err != nil {
159 160 161
		return err
	}

Jeromy's avatar
Jeromy committed
162
	// get undialable addrs from config
163 164 165 166
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
Jeromy's avatar
Jeromy committed
167
	var addrfilter []*net.IPNet
168
	for _, s := range cfg.Swarm.AddrFilters {
Jeromy's avatar
Jeromy committed
169 170
		f, err := mamask.NewMask(s)
		if err != nil {
171
			return fmt.Errorf("incorrectly formatted address filter in config: %s", s)
Jeromy's avatar
Jeromy committed
172 173 174 175
		}
		addrfilter = append(addrfilter, f)
	}

176 177 178 179 180
	if !cfg.Swarm.DisableBandwidthMetrics {
		// Set reporter
		n.Reporter = metrics.NewBandwidthCounter()
	}

181 182
	tpt := makeSmuxTransport(mplex)

Jakub Sztandera's avatar
Jakub Sztandera committed
183 184 185 186 187 188 189 190 191 192 193 194
	swarmkey, err := n.Repo.SwarmKey()
	if err != nil {
		return err
	}

	var protec ipnet.Protector
	if swarmkey != nil {
		protec, err = pnet.NewProtector(bytes.NewReader(swarmkey))
		if err != nil {
			return err
		}
		n.PNetFingerpint = protec.Fingerprint()
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
		go func() {
			t := time.NewTicker(30 * time.Second)
			<-t.C // swallow one tick
			for {
				select {
				case <-t.C:
					if ph := n.PeerHost; ph != nil {
						if len(ph.Network().Peers()) == 0 {
							log.Warning("We are in private network and have no peers.")
							log.Warning("This might be configuration mistake.")
						}
					}
				case <-n.Process().Closing():
					t.Stop()
					return
				}
			}
		}()
Jakub Sztandera's avatar
Jakub Sztandera committed
213 214 215
	}

	peerhost, err := hostOption(ctx, n.Identity, n.Peerstore, n.Reporter,
Kevin Atkinson's avatar
Kevin Atkinson committed
216
		addrfilter, tpt, protec, &ConstructPeerHostOpts{DisableNatPortMap: cfg.Swarm.DisableNatPortMap})
217
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
218
		return err
219 220
	}

221
	if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption); err != nil {
222
		return err
223 224 225
	}

	// Ok, now we're ready to listen.
226
	if err := startListening(ctx, n.PeerHost, cfg); err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
227
		return err
228
	}
229

230
	n.Reprovider = rp.NewReprovider(n.Routing, n.Blockstore)
231 232 233 234 235 236 237 238 239 240 241 242 243 244

	if cfg.Reprovider.Interval != "0" {
		interval := kReprovideFrequency
		if cfg.Reprovider.Interval != "" {
			dur, err := time.ParseDuration(cfg.Reprovider.Interval)
			if err != nil {
				return err
			}

			interval = dur
		}

		go n.Reprovider.ProvideEvery(ctx, interval)
	}
245

Jeromy's avatar
Jeromy committed
246 247 248
	if pubsub {
		n.Floodsub = floodsub.NewFloodSub(ctx, peerhost)
	}
Jeromy's avatar
Jeromy committed
249

Łukasz Magiera's avatar
Łukasz Magiera committed
250
	n.P2P = p2p.NewP2P(n.Identity, n.PeerHost, n.Peerstore)
251

252
	// setup local discovery
Jeromy's avatar
Jeromy committed
253
	if do != nil {
Jeromy's avatar
Jeromy committed
254
		service, err := do(ctx, n.PeerHost)
Jeromy's avatar
Jeromy committed
255
		if err != nil {
Jeromy's avatar
Jeromy committed
256 257 258 259
			log.Error("mdns error: ", err)
		} else {
			service.RegisterNotifee(n)
			n.Discovery = service
Jeromy's avatar
Jeromy committed
260
		}
261 262
	}

263
	return n.Bootstrap(DefaultBootstrapConfig)
264 265
}

266 267 268 269 270 271 272 273 274 275 276 277
func makeSmuxTransport(mplexExp bool) smux.Transport {
	mstpt := mssmux.NewBlankTransport()

	ymxtpt := &yamux.Transport{
		AcceptBacklog:          8192,
		ConnectionWriteTimeout: time.Second * 10,
		KeepAliveInterval:      time.Second * 30,
		EnableKeepAlive:        true,
		MaxStreamWindowSize:    uint32(1024 * 512),
		LogOutput:              ioutil.Discard,
	}

278 279 280 281
	if os.Getenv("YAMUX_DEBUG") != "" {
		ymxtpt.LogOutput = os.Stderr
	}

282 283 284 285 286 287 288 289 290 291 292 293 294 295
	mstpt.AddTransport("/yamux/1.0.0", ymxtpt)

	if mplexExp {
		mstpt.AddTransport("/mplex/6.7.0", mplex.DefaultTransport)
	}

	// Allow muxer preference order overriding
	if prefs := os.Getenv("LIBP2P_MUX_PREFS"); prefs != "" {
		mstpt.OrderPreference = strings.Fields(prefs)
	}

	return mstpt
}

Jeromy's avatar
Jeromy committed
296 297
func setupDiscoveryOption(d config.Discovery) DiscoveryOption {
	if d.MDNS.Enabled {
Jeromy's avatar
Jeromy committed
298
		return func(ctx context.Context, h p2phost.Host) (discovery.Service, error) {
Jeromy's avatar
Jeromy committed
299 300 301
			if d.MDNS.Interval == 0 {
				d.MDNS.Interval = 5
			}
Jeromy's avatar
Jeromy committed
302
			return discovery.NewMdnsService(ctx, h, time.Duration(d.MDNS.Interval)*time.Second)
Jeromy's avatar
Jeromy committed
303 304 305 306 307
		}
	}
	return nil
}

Jeromy's avatar
Jeromy committed
308
func (n *IpfsNode) HandlePeerFound(p pstore.PeerInfo) {
309
	log.Warning("trying peer info: ", p)
310
	ctx, cancel := context.WithTimeout(n.Context(), discoveryConnTimeout)
rht's avatar
rht committed
311
	defer cancel()
312
	if err := n.PeerHost.Connect(ctx, p); err != nil {
313 314 315 316
		log.Warning("Failed to connect to peer found by discovery: ", err)
	}
}

317 318
// startOnlineServicesWithHost  is the set of services which need to be
// initialized with the host and _before_ we start listening.
319
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption) error {
320
	// setup diagnostics service
Jeromy's avatar
Jeromy committed
321
	n.Ping = ping.NewPingService(host)
322 323

	// setup routing service
324
	r, err := routingOption(ctx, host, n.Repo.Datastore())
Jeromy's avatar
Jeromy committed
325
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
326
		return err
327
	}
Jeromy's avatar
Jeromy committed
328
	n.Routing = r
329

330 331 332
	// Wrap standard peer host with routing system to allow unknown peer lookups
	n.PeerHost = rhost.Wrap(host, n.Routing)

333 334
	// setup exchange service
	const alwaysSendToPeer = true // use YesManStrategy
335
	bitswapNetwork := bsnet.NewFromIpfsHost(n.PeerHost, n.Routing)
336 337
	n.Exchange = bitswap.New(ctx, n.Identity, bitswapNetwork, n.Blockstore, alwaysSendToPeer)

338 339 340 341 342
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

343
	// setup name system
344
	n.Namesys = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), size)
345

Jeromy's avatar
Jeromy committed
346
	// setup ipns republishing
347
	return n.setupIpnsRepublisher()
348 349
}

350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
// getCacheSize returns cache life and cache size
func (n *IpfsNode) getCacheSize() (int, error) {
	cfg, err := n.Repo.Config()
	if err != nil {
		return 0, err
	}

	cs := cfg.Ipns.ResolveCacheSize
	if cs == 0 {
		cs = 128
	}
	if cs < 0 {
		return 0, fmt.Errorf("cannot specify negative resolve cache size")
	}
	return cs, nil
}

367
func (n *IpfsNode) setupIpnsRepublisher() error {
Jeromy's avatar
Jeromy committed
368 369 370 371
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
372

373
	n.IpnsRepub = ipnsrp.NewRepublisher(n.Routing, n.Repo.Datastore(), n.PrivateKey, n.Repo.Keystore())
374

Jeromy's avatar
Jeromy committed
375 376 377 378 379 380
	if cfg.Ipns.RepublishPeriod != "" {
		d, err := time.ParseDuration(cfg.Ipns.RepublishPeriod)
		if err != nil {
			return fmt.Errorf("failure to parse config setting IPNS.RepublishPeriod: %s", err)
		}

381
		if !u.Debug && (d < time.Minute || d > (time.Hour*24)) {
Jeromy's avatar
Jeromy committed
382 383 384 385 386 387
			return fmt.Errorf("config setting IPNS.RepublishPeriod is not between 1min and 1day: %s", d)
		}

		n.IpnsRepub.Interval = d
	}

388 389 390 391 392 393 394 395 396
	if cfg.Ipns.RecordLifetime != "" {
		d, err := time.ParseDuration(cfg.Ipns.RepublishPeriod)
		if err != nil {
			return fmt.Errorf("failure to parse config setting IPNS.RecordLifetime: %s", err)
		}

		n.IpnsRepub.RecordLifetime = d
	}

Jeromy's avatar
Jeromy committed
397 398
	n.Process().Go(n.IpnsRepub.Run)

399 400 401
	return nil
}

402 403 404 405 406 407 408 409 410 411 412 413
// Process returns the Process object
func (n *IpfsNode) Process() goprocess.Process {
	return n.proc
}

// Close calls Close() on the Process object
func (n *IpfsNode) Close() error {
	return n.proc.Close()
}

// Context returns the IpfsNode context
func (n *IpfsNode) Context() context.Context {
414 415 416
	if n.ctx == nil {
		n.ctx = context.TODO()
	}
417 418 419
	return n.ctx
}

420 421
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
422
func (n *IpfsNode) teardown() error {
423
	log.Debug("core is shutting down...")
424 425
	// owned objects are closed in this teardown to ensure that they're closed
	// regardless of which constructor was used to add them to the node.
Jeromy's avatar
Jeromy committed
426 427
	var closers []io.Closer

428
	// NOTE: The order that objects are added(closed) matters, if an object
Jeromy's avatar
Jeromy committed
429 430 431 432 433
	// needs to use another during its shutdown/cleanup process, it should be
	// closed before that other object

	if n.FilesRoot != nil {
		closers = append(closers, n.FilesRoot)
Jeromy's avatar
Jeromy committed
434
	}
435

436 437 438 439
	if n.Exchange != nil {
		closers = append(closers, n.Exchange)
	}

440
	if n.Mounts.Ipfs != nil && !n.Mounts.Ipfs.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
441 442
		closers = append(closers, mount.Closer(n.Mounts.Ipfs))
	}
443
	if n.Mounts.Ipns != nil && !n.Mounts.Ipns.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
444 445 446
		closers = append(closers, mount.Closer(n.Mounts.Ipns))
	}

Jeromy's avatar
Jeromy committed
447 448 449 450
	if dht, ok := n.Routing.(*dht.IpfsDHT); ok {
		closers = append(closers, dht.Process())
	}

Jeromy's avatar
Jeromy committed
451 452 453 454
	if n.Blocks != nil {
		closers = append(closers, n.Blocks)
	}

Jeromy's avatar
Jeromy committed
455 456
	if n.Bootstrapper != nil {
		closers = append(closers, n.Bootstrapper)
457 458
	}

Jeromy's avatar
Jeromy committed
459 460
	if n.PeerHost != nil {
		closers = append(closers, n.PeerHost)
461
	}
462

Jeromy's avatar
Jeromy committed
463 464 465
	// Repo closed last, most things need to preserve state here
	closers = append(closers, n.Repo)

466
	var errs []error
467
	for _, closer := range closers {
468 469
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
470 471 472 473
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
474 475
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
476 477
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
478
func (n *IpfsNode) OnlineMode() bool {
479 480 481 482 483 484
	switch n.mode {
	case onlineMode:
		return true
	default:
		return false
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
485 486
}

487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
func (n *IpfsNode) SetLocal(isLocal bool) {
	if isLocal {
		n.mode = localMode
	}
	n.localModeSet = true
}

func (n *IpfsNode) LocalMode() bool {
	if !n.localModeSet {
		// programmer error should not happen
		panic("local mode not set")
	}
	switch n.mode {
	case localMode:
		return true
	default:
		return false
	}
}

507
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
508 509

	// TODO what should return value be when in offlineMode?
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
510 511 512 513
	if n.Routing == nil {
		return nil
	}

514 515 516 517 518 519 520
	if n.Bootstrapper != nil {
		n.Bootstrapper.Close() // stop previous bootstrap process.
	}

	// if the caller did not specify a bootstrap peer function, get the
	// freshest bootstrap peers from config. this responds to live changes.
	if cfg.BootstrapPeers == nil {
Jeromy's avatar
Jeromy committed
521
		cfg.BootstrapPeers = func() []pstore.PeerInfo {
522
			ps, err := n.loadBootstrapPeers()
523
			if err != nil {
524
				log.Warning("failed to parse bootstrap peers from config")
525 526 527 528 529 530 531 532 533
				return nil
			}
			return ps
		}
	}

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
534 535
}

536 537
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
538
		return errors.New("identity already loaded")
539 540
	}

541 542 543 544 545 546
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	cid := cfg.Identity.PeerID
547
	if cid == "" {
548
		return errors.New("identity was not set in config (was 'ipfs init' run?)")
549 550
	}
	if len(cid) == 0 {
551
		return errors.New("no peer ID in config! (was 'ipfs init' run?)")
552 553
	}

554 555 556
	n.Identity = peer.ID(b58.Decode(cid))
	return nil
}
557

558 559 560 561 562 563 564 565
func (n *IpfsNode) GetKey(name string) (ic.PrivKey, error) {
	if name == "self" {
		return n.PrivateKey, nil
	} else {
		return n.Repo.Keystore().Get(name)
	}
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
566
func (n *IpfsNode) LoadPrivateKey() error {
567
	if n.Identity == "" || n.Peerstore == nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
568
		return errors.New("loaded private key out of order.")
569 570
	}

571
	if n.PrivateKey != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
572
		return errors.New("private key already loaded")
573 574
	}

575 576 577 578 579 580
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	sk, err := loadPrivateKey(&cfg.Identity, n.Identity)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
581
	if err != nil {
582
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
583
	}
584

585 586
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
587 588 589 590
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

Jeromy's avatar
Jeromy committed
591
func (n *IpfsNode) loadBootstrapPeers() ([]pstore.PeerInfo, error) {
592 593 594 595 596 597
	cfg, err := n.Repo.Config()
	if err != nil {
		return nil, err
	}

	parsed, err := cfg.BootstrapPeers()
598 599 600 601 602 603
	if err != nil {
		return nil, err
	}
	return toPeerInfos(parsed), nil
}

Jeromy's avatar
Jeromy committed
604
func (n *IpfsNode) loadFilesRoot() error {
Jeromy's avatar
Jeromy committed
605
	dsk := ds.NewKey("/local/filesroot")
Jeromy's avatar
Jeromy committed
606 607
	pf := func(ctx context.Context, c *cid.Cid) error {
		return n.Repo.Datastore().Put(dsk, c.Bytes())
Jeromy's avatar
Jeromy committed
608 609
	}

610
	var nd *merkledag.ProtoNode
Jeromy's avatar
Jeromy committed
611 612 613 614
	val, err := n.Repo.Datastore().Get(dsk)

	switch {
	case err == ds.ErrNotFound || val == nil:
615
		nd = ft.EmptyDirNode()
Jeromy's avatar
Jeromy committed
616 617 618 619 620
		_, err := n.DAG.Add(nd)
		if err != nil {
			return fmt.Errorf("failure writing to dagstore: %s", err)
		}
	case err == nil:
Jeromy's avatar
Jeromy committed
621 622 623 624 625
		c, err := cid.Cast(val.([]byte))
		if err != nil {
			return err
		}

626
		rnd, err := n.DAG.Get(n.Context(), c)
Jeromy's avatar
Jeromy committed
627 628 629
		if err != nil {
			return fmt.Errorf("error loading filesroot from DAG: %s", err)
		}
630 631 632 633 634 635 636

		pbnd, ok := rnd.(*merkledag.ProtoNode)
		if !ok {
			return merkledag.ErrNotProtobuf
		}

		nd = pbnd
Jeromy's avatar
Jeromy committed
637 638 639 640 641 642 643 644 645 646 647 648 649
	default:
		return err
	}

	mr, err := mfs.NewRoot(n.Context(), n.DAG, nd, pf)
	if err != nil {
		return err
	}

	n.FilesRoot = mr
	return nil
}

Jeromy's avatar
Jeromy committed
650 651 652
// SetupOfflineRouting loads the local nodes private key and
// uses it to instantiate a routing system in offline mode.
// This is primarily used for offline ipns modifications.
Jeromy's avatar
Jeromy committed
653
func (n *IpfsNode) SetupOfflineRouting() error {
654 655 656 657
	if n.Routing != nil {
		// Routing was already set up
		return nil
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
658
	err := n.LoadPrivateKey()
Jeromy's avatar
Jeromy committed
659 660 661 662 663
	if err != nil {
		return err
	}

	n.Routing = offroute.NewOfflineRouter(n.Repo.Datastore(), n.PrivateKey)
664

665 666 667 668 669 670
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

	n.Namesys = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), size)
671

672
	return nil
673 674 675 676
}

func loadPrivateKey(cfg *config.Identity, id peer.ID) (ic.PrivKey, error) {
	sk, err := cfg.DecodePrivateKey("passphrase todo!")
677 678 679
	if err != nil {
		return nil, err
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
680

681 682 683 684
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
685

686 687
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
688 689
	}

690
	return sk, nil
691
}
692

693
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
694 695 696
	var listen []ma.Multiaddr
	for _, addr := range cfg.Addresses.Swarm {
		maddr, err := ma.NewMultiaddr(addr)
697
		if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
698
			return nil, fmt.Errorf("Failure to parse config.Addresses.Swarm: %s", cfg.Addresses.Swarm)
699
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
700
		listen = append(listen, maddr)
701 702 703 704
	}

	return listen, nil
}
705

Kevin Atkinson's avatar
Kevin Atkinson committed
706 707 708 709 710
type ConstructPeerHostOpts struct {
	DisableNatPortMap bool
}

type HostOption func(ctx context.Context, id peer.ID, ps pstore.Peerstore, bwr metrics.Reporter, fs []*net.IPNet, tpt smux.Transport, protc ipnet.Protector, opts *ConstructPeerHostOpts) (p2phost.Host, error)
Jeromy's avatar
Jeromy committed
711 712 713

var DefaultHostOption HostOption = constructPeerHost

714
// isolates the complex initialization steps
Kevin Atkinson's avatar
Kevin Atkinson committed
715
func constructPeerHost(ctx context.Context, id peer.ID, ps pstore.Peerstore, bwr metrics.Reporter, fs []*net.IPNet, tpt smux.Transport, protec ipnet.Protector, opts *ConstructPeerHostOpts) (p2phost.Host, error) {
716 717

	// no addresses to begin with. we'll start later.
Jakub Sztandera's avatar
Jakub Sztandera committed
718
	swrm, err := swarm.NewSwarmWithProtector(ctx, nil, id, ps, protec, tpt, bwr)
719
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
720
		return nil, err
721
	}
722

723 724
	network := (*swarm.Network)(swrm)

725 726 727 728
	for _, f := range fs {
		network.Swarm().Filters.AddDialFilter(f)
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
729 730 731 732 733 734
	hostOpts := []interface{}{bwr}
	if !opts.DisableNatPortMap {
		hostOpts = append(hostOpts, p2pbhost.NATPortMap)
	}

	host := p2pbhost.New(network, hostOpts...)
Jeromy's avatar
Jeromy committed
735

736 737 738 739 740 741 742
	return host, nil
}

// startListening on the network addresses
func startListening(ctx context.Context, host p2phost.Host, cfg *config.Config) error {
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
743
		return err
744 745
	}

746
	// make sure we error out if our config does not have addresses we can use
747
	log.Debugf("Config.Addresses.Swarm:%s", listenAddrs)
748
	filteredAddrs := addrutil.FilterUsableAddrs(listenAddrs)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
749
	log.Debugf("Config.Addresses.Swarm:%s (filtered)", filteredAddrs)
750
	if len(filteredAddrs) < 1 {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
751
		return fmt.Errorf("addresses in config not usable: %s", listenAddrs)
752 753
	}

754 755 756
	// Actually start listening:
	if err := host.Network().Listen(filteredAddrs...); err != nil {
		return err
757 758
	}

759
	// list out our addresses
760
	addrs, err := host.Network().InterfaceListenAddresses()
761
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
762
		return err
763
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
764
	log.Infof("Swarm listening at: %s", addrs)
765
	return nil
766
}
767

Jeromy's avatar
Jeromy committed
768
func constructDHTRouting(ctx context.Context, host p2phost.Host, dstore repo.Datastore) (routing.IpfsRouting, error) {
769
	dhtRouting := dht.NewDHT(ctx, host, dstore)
770
	dhtRouting.Validator[IpnsValidatorTag] = namesys.IpnsRecordValidator
771
	dhtRouting.Selector[IpnsValidatorTag] = namesys.IpnsSelectorFunc
772 773
	return dhtRouting, nil
}
Jeromy's avatar
Jeromy committed
774

Jeromy's avatar
Jeromy committed
775 776 777 778 779 780 781
func constructClientDHTRouting(ctx context.Context, host p2phost.Host, dstore repo.Datastore) (routing.IpfsRouting, error) {
	dhtRouting := dht.NewDHTClient(ctx, host, dstore)
	dhtRouting.Validator[IpnsValidatorTag] = namesys.IpnsRecordValidator
	dhtRouting.Selector[IpnsValidatorTag] = namesys.IpnsSelectorFunc
	return dhtRouting, nil
}

Jeromy's avatar
Jeromy committed
782
type RoutingOption func(context.Context, p2phost.Host, repo.Datastore) (routing.IpfsRouting, error)
Jeromy's avatar
Jeromy committed
783

Jeromy's avatar
Jeromy committed
784
type DiscoveryOption func(context.Context, p2phost.Host) (discovery.Service, error)
Jeromy's avatar
Jeromy committed
785

786
var DHTOption RoutingOption = constructDHTRouting
Jeromy's avatar
Jeromy committed
787
var DHTClientOption RoutingOption = constructClientDHTRouting
788
var NilRouterOption RoutingOption = nilrouting.ConstructNilRouting