core.go 25.9 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

Steven Allen's avatar
Steven Allen committed
45
	yamux "gx/ipfs/QmNWCEvi7bPRcvqAV8AKLGVNoQdArWi7NJayka2SM4XtRe/go-smux-yamux"
Steven Allen's avatar
Steven Allen committed
46 47 48 49
	floodsub "gx/ipfs/QmP1T1SGU6276R2MHKP2owbck37Fnzd6ZkpyNJvnG2LoTG/go-libp2p-floodsub"
	p2phost "gx/ipfs/QmP46LGWhzVZTMmt5akNNLfoV8qL4h5wTwmzQxLyDafggd/go-libp2p-host"
	routing "gx/ipfs/QmPCGUjMRuBcPybZFpjhzpifwPP9wPRoiy5geTQKU4vqWA/go-libp2p-routing"
	u "gx/ipfs/QmPsAfmDBnZN3kZGSuNwvCNDZiHneERSKmRcFyG3UkvcT3/go-ipfs-util"
Steven Allen's avatar
Steven Allen committed
50
	mplex "gx/ipfs/QmREBy6TSjLQMtYFhjf97cypsUTzBagcwamWocKHFCTb1e/go-smux-multiplex"
Steven Allen's avatar
Steven Allen committed
51
	ifconnmgr "gx/ipfs/QmSAJm4QdTJ3EGF2cvgNcQyXTEbxqWSW1x4kCVV1aJQUQr/go-libp2p-interface-connmgr"
52
	goprocess "gx/ipfs/QmSF8fPo3jgVBAy8fpdjjYqgG87dkJgUprRBHRd2tmfgpP/goprocess"
Jeromy's avatar
Jeromy committed
53
	mamask "gx/ipfs/QmSMZwvs3n4GBikZ7hKzT17c3bk65FmyZo2JqtJ16swqCv/multiaddr-filter"
Jeromy's avatar
Jeromy committed
54
	logging "gx/ipfs/QmSpJByNKFX1sCsHBEp3R73FL4NF6FnQTEGyNAXHm2GS52/go-log"
Jeromy's avatar
Jeromy committed
55
	b58 "gx/ipfs/QmT8rehPR3F6bmwL6zjUN8XpiDBFFpMP2myPdC6ApsWfJf/go-base58"
Steven Allen's avatar
Steven Allen committed
56
	swarm "gx/ipfs/QmUhvp4VoQ9cKDVLqAxciEKdm8ymBx2Syx4C1Tv6SmSTPa/go-libp2p-swarm"
Steven Allen's avatar
Steven Allen committed
57
	mssmux "gx/ipfs/QmVniQJkdzLZaZwzwMdd3dJTvWiJ1DQEkreVy6hs6h7Vk5/go-smux-multistream"
Steven Allen's avatar
Steven Allen committed
58 59 60 61 62
	circuit "gx/ipfs/QmVqNgx6RByRcnLVsr9spbo5ScomJyDZrb9Gz4XMWkYB7Z/go-libp2p-circuit"
	ma "gx/ipfs/QmW8s4zTsUoX1Q6CeYxVKPyqSKbF7H1YDUyTostBtZ8DaG/go-multiaddr"
	peer "gx/ipfs/QmWNY7dV54ZDYmTA1ykVdwNCqC11mpU4zSUp6XDpLTH9eG/go-libp2p-peer"
	ipnet "gx/ipfs/QmXcN1kXchSvodd2MGypWXXirXk7GigQ7WVyWGYpukag6J/go-libp2p-interface-pnet"
	pnet "gx/ipfs/QmXduVyMCsR4bUbRxvc9oi8PJJFm4hyoisYHhUzCcTnfUS/go-libp2p-pnet"
Steven Allen's avatar
Steven Allen committed
63
	smux "gx/ipfs/QmY9JXR3FupnYAYJWK9aMr9bCpqWKcToQ1tz8DVGTrHpHw/go-stream-muxer"
Steven Allen's avatar
Steven Allen committed
64 65 66 67 68 69 70
	pstore "gx/ipfs/QmYijbtjCxFEjSXaudaQAUz3LN5VKLssm8WCUsRoqzXmQR/go-libp2p-peerstore"
	discovery "gx/ipfs/Qma23bpHwQrQyvKeBemaeJh7sAoRHggPkgnge1B9489ff5/go-libp2p/p2p/discovery"
	p2pbhost "gx/ipfs/Qma23bpHwQrQyvKeBemaeJh7sAoRHggPkgnge1B9489ff5/go-libp2p/p2p/host/basic"
	rhost "gx/ipfs/Qma23bpHwQrQyvKeBemaeJh7sAoRHggPkgnge1B9489ff5/go-libp2p/p2p/host/routed"
	identify "gx/ipfs/Qma23bpHwQrQyvKeBemaeJh7sAoRHggPkgnge1B9489ff5/go-libp2p/p2p/protocol/identify"
	ping "gx/ipfs/Qma23bpHwQrQyvKeBemaeJh7sAoRHggPkgnge1B9489ff5/go-libp2p/p2p/protocol/ping"
	metrics "gx/ipfs/QmaL2WYJGbWKqHoLujoi9GQ5jj4JVFrBqHUBWmEYzJPVWT/go-libp2p-metrics"
71
	ic "gx/ipfs/QmaPbCnUMBohSGo3KnxEa2bHqyJVVeEEcwtqJAYxerieBo/go-libp2p-crypto"
Steven Allen's avatar
Steven Allen committed
72 73 74
	connmgr "gx/ipfs/QmainUZ19HogMBjMocvHmgWEqofbpzLGNAir4AEY1KcJey/go-libp2p-connmgr"
	mafilter "gx/ipfs/QmcrNvQBZkpbT7zLcGyjdPCiCHLVtaYeg4UVUH7XLfWJWy/go-maddr-filter"
	addrutil "gx/ipfs/Qmcxa9y1KVC51TVicSKomsnunJGSA9UJSuBvJc28JCip4H/go-addr-util"
75
	ds "gx/ipfs/QmdHG8MAuARdGHxx4rPQASLcvhz24fzjSQq7AJRAQEorq5/go-datastore"
Steven Allen's avatar
Steven Allen committed
76 77
	cid "gx/ipfs/QmeSrf6pzut73u6zLQkRFQ3ygt3k6XFT2kjdYP8Tnkwwyg/go-cid"
	dht "gx/ipfs/QmfUvYQhL2GinafMbPDYz7VFoZv4iiuLuR33aRsPurXGag/go-libp2p-kad-dht"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
78 79
)

Jeromy's avatar
Jeromy committed
80
const IpnsValidatorTag = "ipns"
81

82
const kReprovideFrequency = time.Hour * 12
83
const discoveryConnTimeout = time.Second * 30
Jeromy's avatar
Jeromy committed
84

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

87 88 89 90
type mode int

const (
	// zero value is not a valid mode, must be explicitly set
91
	localMode mode = iota
92 93 94 95
	offlineMode
	onlineMode
)

96 97 98 99
func init() {
	identify.ClientVersion = "go-ipfs/" + config.CurrentVersionNumber + "/" + config.CurrentCommit
}

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

103
	// Self
104
	Identity peer.ID // the local node's identity
105

106
	Repo repo.Repo
107 108

	// Local node
Jakub Sztandera's avatar
Jakub Sztandera committed
109 110 111 112
	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
113 114

	// Services
Jeromy's avatar
Jeromy committed
115
	Peerstore  pstore.Peerstore     // storage for other Peer instances
116
	Blockstore bstore.GCBlockstore  // the block store (lower level)
117 118 119
	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
120
	Blocks     bserv.BlockService   // the block service, get/add blocks.
121 122
	DAG        merkledag.DAGService // the merkle dag service, get/add objects.
	Resolver   *path.Resolver       // the path resolution system
Jeromy's avatar
Jeromy committed
123
	Reporter   metrics.Reporter
124
	Discovery  discovery.Service
Jeromy's avatar
Jeromy committed
125
	FilesRoot  *mfs.Root
126 127

	// Online
128 129 130 131 132
	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
133 134
	Ping         *ping.PingService
	Reprovider   *rp.Reprovider // the value reprovider system
Jeromy's avatar
Jeromy committed
135
	IpnsRepub    *ipnsrp.Republisher
136

Jeromy's avatar
Jeromy committed
137
	Floodsub *floodsub.PubSub
Łukasz Magiera's avatar
Łukasz Magiera committed
138
	P2P      *p2p.P2P
Jeromy's avatar
Jeromy committed
139

140 141
	proc goprocess.Process
	ctx  context.Context
142

Jeromy's avatar
Jeromy committed
143
	mode         mode
144
	localModeSet bool
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
145 146
}

147 148 149 150 151 152 153 154
// 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
}

vyzo's avatar
vyzo committed
155
func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption RoutingOption, hostOption HostOption, do DiscoveryOption, pubsub, ipnsps, mplex bool) error {
156 157

	if n.PeerHost != nil { // already online.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
158
		return errors.New("node already online")
159 160 161
	}

	// load private key
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
162
	if err := n.LoadPrivateKey(); err != nil {
163 164 165
		return err
	}

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

180 181 182 183 184
	if !cfg.Swarm.DisableBandwidthMetrics {
		// Set reporter
		n.Reporter = metrics.NewBandwidthCounter()
	}

185 186
	tpt := makeSmuxTransport(mplex)

Jakub Sztandera's avatar
Jakub Sztandera committed
187 188 189 190 191 192 193 194 195 196 197 198
	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()
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
		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
217 218
	}

219 220 221 222 223
	addrsFactory, err := makeAddrsFactory(cfg.Addresses)
	if err != nil {
		return err
	}

Jeromy's avatar
Jeromy committed
224 225 226 227 228
	connmgr, err := constructConnMgr(cfg.Swarm.ConnMgr)
	if err != nil {
		return err
	}

229 230 231
	hostopts := &ConstructPeerHostOpts{
		AddrsFactory:      addrsFactory,
		DisableNatPortMap: cfg.Swarm.DisableNatPortMap,
vyzo's avatar
vyzo committed
232 233
		DisableRelay:      cfg.Swarm.DisableRelay,
		EnableRelayHop:    cfg.Swarm.EnableRelayHop,
Jeromy's avatar
Jeromy committed
234
		ConnectionManager: connmgr,
235
	}
Jakub Sztandera's avatar
Jakub Sztandera committed
236
	peerhost, err := hostOption(ctx, n.Identity, n.Peerstore, n.Reporter,
237
		addrfilter, tpt, protec, hostopts)
vyzo's avatar
vyzo committed
238

239
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
240
		return err
241 242
	}

243
	if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption); err != nil {
244
		return err
245 246 247
	}

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

vyzo's avatar
vyzo committed
252
	if pubsub || ipnsps {
Jeromy's avatar
Jeromy committed
253 254
		n.Floodsub = floodsub.NewFloodSub(ctx, peerhost)
	}
Jeromy's avatar
Jeromy committed
255

vyzo's avatar
vyzo committed
256 257 258 259 260 261 262
	if ipnsps {
		err = namesys.AddPubsubNameSystem(ctx, n.Namesys, n.PeerHost, n.Routing, n.Repo.Datastore(), n.Floodsub)
		if err != nil {
			return err
		}
	}

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

265
	// setup local discovery
Jeromy's avatar
Jeromy committed
266
	if do != nil {
Jeromy's avatar
Jeromy committed
267
		service, err := do(ctx, n.PeerHost)
Jeromy's avatar
Jeromy committed
268
		if err != nil {
Jeromy's avatar
Jeromy committed
269 270 271 272
			log.Error("mdns error: ", err)
		} else {
			service.RegisterNotifee(n)
			n.Discovery = service
Jeromy's avatar
Jeromy committed
273
		}
274 275
	}

276
	return n.Bootstrap(DefaultBootstrapConfig)
277 278
}

Jeromy's avatar
Jeromy committed
279 280
func constructConnMgr(cfg config.ConnMgr) (ifconnmgr.ConnManager, error) {
	switch cfg.Type {
281 282 283 284
	case "":
		// 'default' value is the basic connection manager
		return connmgr.NewConnManager(config.DefaultConnMgrLowWater, config.DefaultConnMgrHighWater, config.DefaultConnMgrGracePeriod), nil
	case "none":
Jeromy's avatar
Jeromy committed
285 286 287 288 289 290 291 292 293 294 295 296 297
		return nil, nil
	case "basic":
		grace, err := time.ParseDuration(cfg.GracePeriod)
		if err != nil {
			return nil, fmt.Errorf("parsing Swarm.ConnMgr.GracePeriod: %s", err)
		}

		return connmgr.NewConnManager(cfg.LowWater, cfg.HighWater, grace), nil
	default:
		return nil, fmt.Errorf("unrecognized ConnMgr.Type: %q", cfg.Type)
	}
}

Łukasz Magiera's avatar
Łukasz Magiera committed
298 299 300 301 302 303
func (n *IpfsNode) startLateOnlineServices(ctx context.Context) error {
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

304
	var keyProvider rp.KeyChanFunc
Łukasz Magiera's avatar
Łukasz Magiera committed
305 306 307 308 309 310 311 312 313 314 315

	switch cfg.Reprovider.Strategy {
	case "all":
		fallthrough
	case "":
		keyProvider = rp.NewBlockstoreProvider(n.Blockstore)
	case "roots":
		keyProvider = rp.NewPinnedProvider(n.Pinning, n.DAG, true)
	case "pinned":
		keyProvider = rp.NewPinnedProvider(n.Pinning, n.DAG, false)
	default:
316
		return fmt.Errorf("unknown reprovider strategy '%s'", cfg.Reprovider.Strategy)
Łukasz Magiera's avatar
Łukasz Magiera committed
317
	}
318
	n.Reprovider = rp.NewReprovider(ctx, n.Routing, keyProvider)
Łukasz Magiera's avatar
Łukasz Magiera committed
319

320 321 322 323 324
	reproviderInterval := kReprovideFrequency
	if cfg.Reprovider.Interval != "" {
		dur, err := time.ParseDuration(cfg.Reprovider.Interval)
		if err != nil {
			return err
Łukasz Magiera's avatar
Łukasz Magiera committed
325 326
		}

327
		reproviderInterval = dur
Łukasz Magiera's avatar
Łukasz Magiera committed
328 329
	}

330 331
	go n.Reprovider.Run(reproviderInterval)

Łukasz Magiera's avatar
Łukasz Magiera committed
332 333 334
	return nil
}

335 336 337 338 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 374 375 376 377 378 379 380
func makeAddrsFactory(cfg config.Addresses) (p2pbhost.AddrsFactory, error) {
	var annAddrs []ma.Multiaddr
	for _, addr := range cfg.Announce {
		maddr, err := ma.NewMultiaddr(addr)
		if err != nil {
			return nil, err
		}
		annAddrs = append(annAddrs, maddr)
	}

	filters := mafilter.NewFilters()
	noAnnAddrs := map[string]bool{}
	for _, addr := range cfg.NoAnnounce {
		f, err := mamask.NewMask(addr)
		if err == nil {
			filters.AddDialFilter(f)
			continue
		}
		maddr, err := ma.NewMultiaddr(addr)
		if err != nil {
			return nil, err
		}
		noAnnAddrs[maddr.String()] = true
	}

	return func(allAddrs []ma.Multiaddr) []ma.Multiaddr {
		var addrs []ma.Multiaddr
		if len(annAddrs) > 0 {
			addrs = annAddrs
		} else {
			addrs = allAddrs
		}

		var out []ma.Multiaddr
		for _, maddr := range addrs {
			// check for exact matches
			ok, _ := noAnnAddrs[maddr.String()]
			// check for /ipcidr matches
			if !ok && !filters.AddrBlocked(maddr) {
				out = append(out, maddr)
			}
		}
		return out
	}, nil
}

381 382 383 384
func makeSmuxTransport(mplexExp bool) smux.Transport {
	mstpt := mssmux.NewBlankTransport()

	ymxtpt := &yamux.Transport{
Steven Allen's avatar
Steven Allen committed
385
		AcceptBacklog:          512,
386 387 388 389 390 391 392
		ConnectionWriteTimeout: time.Second * 10,
		KeepAliveInterval:      time.Second * 30,
		EnableKeepAlive:        true,
		MaxStreamWindowSize:    uint32(1024 * 512),
		LogOutput:              ioutil.Discard,
	}

393 394 395 396
	if os.Getenv("YAMUX_DEBUG") != "" {
		ymxtpt.LogOutput = os.Stderr
	}

397 398 399 400 401 402 403 404 405 406 407 408 409 410
	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
411 412
func setupDiscoveryOption(d config.Discovery) DiscoveryOption {
	if d.MDNS.Enabled {
Jeromy's avatar
Jeromy committed
413
		return func(ctx context.Context, h p2phost.Host) (discovery.Service, error) {
Jeromy's avatar
Jeromy committed
414 415 416
			if d.MDNS.Interval == 0 {
				d.MDNS.Interval = 5
			}
Jeromy's avatar
Jeromy committed
417
			return discovery.NewMdnsService(ctx, h, time.Duration(d.MDNS.Interval)*time.Second, discovery.ServiceTag)
Jeromy's avatar
Jeromy committed
418 419 420 421 422
		}
	}
	return nil
}

423 424
// HandlePeerFound attempts to connect to peer from `PeerInfo`, if it fails
// logs a warning log.
Jeromy's avatar
Jeromy committed
425
func (n *IpfsNode) HandlePeerFound(p pstore.PeerInfo) {
426
	log.Warning("trying peer info: ", p)
427
	ctx, cancel := context.WithTimeout(n.Context(), discoveryConnTimeout)
rht's avatar
rht committed
428
	defer cancel()
429
	if err := n.PeerHost.Connect(ctx, p); err != nil {
430 431 432 433
		log.Warning("Failed to connect to peer found by discovery: ", err)
	}
}

434 435
// startOnlineServicesWithHost  is the set of services which need to be
// initialized with the host and _before_ we start listening.
436
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption) error {
437
	// setup diagnostics service
Jeromy's avatar
Jeromy committed
438
	n.Ping = ping.NewPingService(host)
439 440

	// setup routing service
441
	r, err := routingOption(ctx, host, n.Repo.Datastore())
Jeromy's avatar
Jeromy committed
442
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
443
		return err
444
	}
Jeromy's avatar
Jeromy committed
445
	n.Routing = r
446

447 448 449
	// Wrap standard peer host with routing system to allow unknown peer lookups
	n.PeerHost = rhost.Wrap(host, n.Routing)

450 451
	// setup exchange service
	const alwaysSendToPeer = true // use YesManStrategy
452
	bitswapNetwork := bsnet.NewFromIpfsHost(n.PeerHost, n.Routing)
453 454
	n.Exchange = bitswap.New(ctx, n.Identity, bitswapNetwork, n.Blockstore, alwaysSendToPeer)

455 456 457 458 459
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

460
	// setup name system
461
	n.Namesys = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), size)
462

Jeromy's avatar
Jeromy committed
463
	// setup ipns republishing
464
	return n.setupIpnsRepublisher()
465 466
}

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
// 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
}

484
func (n *IpfsNode) setupIpnsRepublisher() error {
Jeromy's avatar
Jeromy committed
485 486 487 488
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
489

490
	n.IpnsRepub = ipnsrp.NewRepublisher(n.Routing, n.Repo.Datastore(), n.PrivateKey, n.Repo.Keystore())
491

Jeromy's avatar
Jeromy committed
492 493 494 495 496 497
	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)
		}

498
		if !u.Debug && (d < time.Minute || d > (time.Hour*24)) {
Jeromy's avatar
Jeromy committed
499 500 501 502 503 504
			return fmt.Errorf("config setting IPNS.RepublishPeriod is not between 1min and 1day: %s", d)
		}

		n.IpnsRepub.Interval = d
	}

505 506 507 508 509 510 511 512 513
	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
514 515
	n.Process().Go(n.IpnsRepub.Run)

516 517 518
	return nil
}

519 520 521 522 523 524 525 526 527 528 529 530
// 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 {
531 532 533
	if n.ctx == nil {
		n.ctx = context.TODO()
	}
534 535 536
	return n.ctx
}

537 538
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
539
func (n *IpfsNode) teardown() error {
540
	log.Debug("core is shutting down...")
541 542
	// 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
543 544
	var closers []io.Closer

545
	// NOTE: The order that objects are added(closed) matters, if an object
Jeromy's avatar
Jeromy committed
546 547 548 549 550
	// 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
551
	}
552

553 554 555 556
	if n.Exchange != nil {
		closers = append(closers, n.Exchange)
	}

557
	if n.Mounts.Ipfs != nil && !n.Mounts.Ipfs.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
558 559
		closers = append(closers, mount.Closer(n.Mounts.Ipfs))
	}
560
	if n.Mounts.Ipns != nil && !n.Mounts.Ipns.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
561 562 563
		closers = append(closers, mount.Closer(n.Mounts.Ipns))
	}

Jeromy's avatar
Jeromy committed
564 565 566 567
	if dht, ok := n.Routing.(*dht.IpfsDHT); ok {
		closers = append(closers, dht.Process())
	}

Jeromy's avatar
Jeromy committed
568 569 570 571
	if n.Blocks != nil {
		closers = append(closers, n.Blocks)
	}

Jeromy's avatar
Jeromy committed
572 573
	if n.Bootstrapper != nil {
		closers = append(closers, n.Bootstrapper)
574 575
	}

Jeromy's avatar
Jeromy committed
576 577
	if n.PeerHost != nil {
		closers = append(closers, n.PeerHost)
578
	}
579

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

583
	var errs []error
584
	for _, closer := range closers {
585 586
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
587 588 589 590
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
591 592
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
593 594
}

595
// OnlineMode returns whether or not the IpfsNode is in OnlineMode.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
596
func (n *IpfsNode) OnlineMode() bool {
597 598 599 600 601 602
	switch n.mode {
	case onlineMode:
		return true
	default:
		return false
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
603 604
}

605
// SetLocal will set the IpfsNode to local mode
606 607 608 609 610 611 612
func (n *IpfsNode) SetLocal(isLocal bool) {
	if isLocal {
		n.mode = localMode
	}
	n.localModeSet = true
}

613
// LocalMode returns whether or not the IpfsNode is in LocalMode
614 615 616 617 618 619 620 621 622 623 624 625 626
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
	}
}

627
// Bootstrap will set and call the IpfsNodes bootstrap function.
628
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
629 630

	// TODO what should return value be when in offlineMode?
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
631 632 633 634
	if n.Routing == nil {
		return nil
	}

635 636 637 638 639 640 641
	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
642
		cfg.BootstrapPeers = func() []pstore.PeerInfo {
643
			ps, err := n.loadBootstrapPeers()
644
			if err != nil {
645
				log.Warning("failed to parse bootstrap peers from config")
646 647 648 649 650 651 652 653 654
				return nil
			}
			return ps
		}
	}

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
655 656
}

657 658
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
659
		return errors.New("identity already loaded")
660 661
	}

662 663 664 665 666 667
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	cid := cfg.Identity.PeerID
668
	if cid == "" {
669
		return errors.New("identity was not set in config (was 'ipfs init' run?)")
670 671
	}
	if len(cid) == 0 {
672
		return errors.New("no peer ID in config! (was 'ipfs init' run?)")
673 674
	}

675 676 677
	n.Identity = peer.ID(b58.Decode(cid))
	return nil
}
678

679
// GetKey will return a key from the Keystore with name `name`.
680 681 682 683 684 685 686 687
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
688
func (n *IpfsNode) LoadPrivateKey() error {
689
	if n.Identity == "" || n.Peerstore == nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
690
		return errors.New("loaded private key out of order.")
691 692
	}

693
	if n.PrivateKey != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
694
		return errors.New("private key already loaded")
695 696
	}

697 698 699 700 701 702
	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
703
	if err != nil {
704
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
705
	}
706

707 708
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
709 710 711 712
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

Jeromy's avatar
Jeromy committed
713
func (n *IpfsNode) loadBootstrapPeers() ([]pstore.PeerInfo, error) {
714 715 716 717 718 719
	cfg, err := n.Repo.Config()
	if err != nil {
		return nil, err
	}

	parsed, err := cfg.BootstrapPeers()
720 721 722 723 724 725
	if err != nil {
		return nil, err
	}
	return toPeerInfos(parsed), nil
}

Jeromy's avatar
Jeromy committed
726
func (n *IpfsNode) loadFilesRoot() error {
Jeromy's avatar
Jeromy committed
727
	dsk := ds.NewKey("/local/filesroot")
Jeromy's avatar
Jeromy committed
728 729
	pf := func(ctx context.Context, c *cid.Cid) error {
		return n.Repo.Datastore().Put(dsk, c.Bytes())
Jeromy's avatar
Jeromy committed
730 731
	}

732
	var nd *merkledag.ProtoNode
Jeromy's avatar
Jeromy committed
733 734 735 736
	val, err := n.Repo.Datastore().Get(dsk)

	switch {
	case err == ds.ErrNotFound || val == nil:
737
		nd = ft.EmptyDirNode()
Jeromy's avatar
Jeromy committed
738 739 740 741 742
		_, 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
743 744 745 746 747
		c, err := cid.Cast(val.([]byte))
		if err != nil {
			return err
		}

748
		rnd, err := n.DAG.Get(n.Context(), c)
Jeromy's avatar
Jeromy committed
749 750 751
		if err != nil {
			return fmt.Errorf("error loading filesroot from DAG: %s", err)
		}
752 753 754 755 756 757 758

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

		nd = pbnd
Jeromy's avatar
Jeromy committed
759 760 761 762 763 764 765 766 767 768 769 770 771
	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
772 773 774
// 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
775
func (n *IpfsNode) SetupOfflineRouting() error {
776 777 778 779
	if n.Routing != nil {
		// Routing was already set up
		return nil
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
780
	err := n.LoadPrivateKey()
Jeromy's avatar
Jeromy committed
781 782 783 784 785
	if err != nil {
		return err
	}

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

787 788 789 790 791 792
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

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

794
	return nil
795 796 797 798
}

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

803 804 805 806
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
807

808 809
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
810 811
	}

812
	return sk, nil
813
}
814

815
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
816 817 818
	var listen []ma.Multiaddr
	for _, addr := range cfg.Addresses.Swarm {
		maddr, err := ma.NewMultiaddr(addr)
819
		if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
820
			return nil, fmt.Errorf("Failure to parse config.Addresses.Swarm: %s", cfg.Addresses.Swarm)
821
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
822
		listen = append(listen, maddr)
823 824 825 826
	}

	return listen, nil
}
827

Kevin Atkinson's avatar
Kevin Atkinson committed
828
type ConstructPeerHostOpts struct {
829
	AddrsFactory      p2pbhost.AddrsFactory
vyzo's avatar
vyzo committed
830 831 832
	DisableNatPortMap bool
	DisableRelay      bool
	EnableRelayHop    bool
Jeromy's avatar
Jeromy committed
833
	ConnectionManager ifconnmgr.ConnManager
Kevin Atkinson's avatar
Kevin Atkinson committed
834 835 836
}

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
837 838 839

var DefaultHostOption HostOption = constructPeerHost

840
// isolates the complex initialization steps
Kevin Atkinson's avatar
Kevin Atkinson committed
841
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) {
842 843

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

849 850
	network := (*swarm.Network)(swrm)

851 852 853 854
	for _, f := range fs {
		network.Swarm().Filters.AddDialFilter(f)
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
855 856 857 858
	hostOpts := []interface{}{bwr}
	if !opts.DisableNatPortMap {
		hostOpts = append(hostOpts, p2pbhost.NATPortMap)
	}
Jeromy's avatar
Jeromy committed
859 860 861
	if opts.ConnectionManager != nil {
		hostOpts = append(hostOpts, opts.ConnectionManager)
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
862

863
	addrsFactory := opts.AddrsFactory
vyzo's avatar
vyzo committed
864
	if !opts.DisableRelay {
865
		if addrsFactory != nil {
866
			addrsFactory = composeAddrsFactory(addrsFactory, filterRelayAddrs)
867
		} else {
868
			addrsFactory = filterRelayAddrs
869 870 871 872 873
		}
	}

	if addrsFactory != nil {
		hostOpts = append(hostOpts, addrsFactory)
vyzo's avatar
vyzo committed
874 875
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
876
	host := p2pbhost.New(network, hostOpts...)
Jeromy's avatar
Jeromy committed
877

vyzo's avatar
vyzo committed
878 879 880 881 882 883 884 885
	if !opts.DisableRelay {
		var relayOpts []circuit.RelayOpt
		if opts.EnableRelayHop {
			relayOpts = append(relayOpts, circuit.OptHop)
		}

		err := circuit.AddRelayTransport(ctx, host, relayOpts...)
		if err != nil {
886
			host.Close()
vyzo's avatar
vyzo committed
887 888 889 890
			return nil, err
		}
	}

891 892 893
	return host, nil
}

894 895 896 897 898 899 900 901 902 903 904 905
func filterRelayAddrs(addrs []ma.Multiaddr) []ma.Multiaddr {
	var raddrs []ma.Multiaddr
	for _, addr := range addrs {
		_, err := addr.ValueForProtocol(circuit.P_CIRCUIT)
		if err == nil {
			continue
		}
		raddrs = append(raddrs, addr)
	}
	return raddrs
}

906 907 908 909 910 911
func composeAddrsFactory(f, g p2pbhost.AddrsFactory) p2pbhost.AddrsFactory {
	return func(addrs []ma.Multiaddr) []ma.Multiaddr {
		return f(g(addrs))
	}
}

912 913 914 915
// 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
916
		return err
917 918
	}

919
	// make sure we error out if our config does not have addresses we can use
920
	log.Debugf("Config.Addresses.Swarm:%s", listenAddrs)
921
	filteredAddrs := addrutil.FilterUsableAddrs(listenAddrs)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
922
	log.Debugf("Config.Addresses.Swarm:%s (filtered)", filteredAddrs)
923
	if len(filteredAddrs) < 1 {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
924
		return fmt.Errorf("addresses in config not usable: %s", listenAddrs)
925 926
	}

927 928 929
	// Actually start listening:
	if err := host.Network().Listen(filteredAddrs...); err != nil {
		return err
930 931
	}

932
	// list out our addresses
933
	addrs, err := host.Network().InterfaceListenAddresses()
934
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
935
		return err
936
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
937
	log.Infof("Swarm listening at: %s", addrs)
938
	return nil
939
}
940

Jeromy's avatar
Jeromy committed
941
func constructDHTRouting(ctx context.Context, host p2phost.Host, dstore repo.Datastore) (routing.IpfsRouting, error) {
942
	dhtRouting := dht.NewDHT(ctx, host, dstore)
943
	dhtRouting.Validator[IpnsValidatorTag] = namesys.IpnsRecordValidator
944
	dhtRouting.Selector[IpnsValidatorTag] = namesys.IpnsSelectorFunc
945 946
	return dhtRouting, nil
}
Jeromy's avatar
Jeromy committed
947

Jeromy's avatar
Jeromy committed
948 949 950 951 952 953 954
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
955
type RoutingOption func(context.Context, p2phost.Host, repo.Datastore) (routing.IpfsRouting, error)
Jeromy's avatar
Jeromy committed
956

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

959
var DHTOption RoutingOption = constructDHTRouting
Jeromy's avatar
Jeromy committed
960
var DHTClientOption RoutingOption = constructClientDHTRouting
961
var NilRouterOption RoutingOption = nilrouting.ConstructNilRouting