core.go 28.1 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 19 20
	"io/ioutil"
	"os"
	"strings"
21
	"time"
22

23
	version "github.com/ipfs/go-ipfs"
24
	rp "github.com/ipfs/go-ipfs/exchange/reprovide"
25
	filestore "github.com/ipfs/go-ipfs/filestore"
26 27 28
	mount "github.com/ipfs/go-ipfs/fuse/mount"
	namesys "github.com/ipfs/go-ipfs/namesys"
	ipnsrp "github.com/ipfs/go-ipfs/namesys/republisher"
Łukasz Magiera's avatar
Łukasz Magiera committed
29
	p2p "github.com/ipfs/go-ipfs/p2p"
30 31
	pin "github.com/ipfs/go-ipfs/pin"
	repo "github.com/ipfs/go-ipfs/repo"
32

Steven Allen's avatar
Steven Allen committed
33
	circuit "gx/ipfs/QmNcNWuV38HBGYtRUi3okmfXSMEmXWwNgb82N3PzqqsHhY/go-libp2p-circuit"
Steven Allen's avatar
Steven Allen committed
34 35 36
	ic "gx/ipfs/QmNiJiXwWE3kRhZrC5ej3kSjWHm337pYfhjLGSCDNKJP2s/go-libp2p-crypto"
	u "gx/ipfs/QmNohiVssaPw3KVLZik59DBVGTSm2dGvYT9eoXt5DQ36Yz/go-ipfs-util"
	exchange "gx/ipfs/QmP2g3VxmC7g7fyRJDj1VJ72KHZbJ9UW24YjSWEj1XTb4H/go-ipfs-exchange-interface"
Steven Allen's avatar
Steven Allen committed
37
	bserv "gx/ipfs/QmPoh3SrQzFBWtdGK6qmHDV4EanKR6kYPj4DD3J2NLoEmZ/go-blockservice"
Steven Allen's avatar
Steven Allen committed
38
	mafilter "gx/ipfs/QmQJRvWaYAvU3Mdtk33ADXr9JAZwKMBYBGPkRQBDvyj2nn/go-maddr-filter"
Steven Allen's avatar
Steven Allen committed
39
	rhelpers "gx/ipfs/QmQQM81YhDT7TYQkSqNmDrfMWzBG6J5KqJ8VueFWqfYPA7/go-libp2p-routing-helpers"
Steven Allen's avatar
Steven Allen committed
40
	cid "gx/ipfs/QmR8BauakNcBa3RbE4nbQu76PDiJgoQgz8AJdhJuiU4TAw/go-cid"
Steven Allen's avatar
Steven Allen committed
41 42 43 44 45 46
	routing "gx/ipfs/QmRASJXJUFygM5qU4YrH7k7jD6S4Hg8nJmgqJ4bYJvLatd/go-libp2p-routing"
	libp2p "gx/ipfs/QmRBaUEQEeFWywfrZJ64QgsmvcqgLSK3VbvGMR2NM2Edpf/go-libp2p"
	discovery "gx/ipfs/QmRBaUEQEeFWywfrZJ64QgsmvcqgLSK3VbvGMR2NM2Edpf/go-libp2p/p2p/discovery"
	p2pbhost "gx/ipfs/QmRBaUEQEeFWywfrZJ64QgsmvcqgLSK3VbvGMR2NM2Edpf/go-libp2p/p2p/host/basic"
	rhost "gx/ipfs/QmRBaUEQEeFWywfrZJ64QgsmvcqgLSK3VbvGMR2NM2Edpf/go-libp2p/p2p/host/routed"
	identify "gx/ipfs/QmRBaUEQEeFWywfrZJ64QgsmvcqgLSK3VbvGMR2NM2Edpf/go-libp2p/p2p/protocol/identify"
Steven Allen's avatar
Steven Allen committed
47
	ma "gx/ipfs/QmRKLtwMw131aK7ugC3G7ybpumMz78YrJe5dzneyindvG1/go-multiaddr"
Steven Allen's avatar
Steven Allen committed
48
	ifconnmgr "gx/ipfs/QmRkzmq686MdtAVHZLncm3sXCzyFzBq4eLxk2rch2r788f/go-libp2p-interface-connmgr"
49
	bstore "gx/ipfs/QmS2aqUZLJp8kF1ihE5rvDGE5LvmKDPnx32w9Z1BW9xLV5/go-ipfs-blockstore"
50
	goprocess "gx/ipfs/QmSF8fPo3jgVBAy8fpdjjYqgG87dkJgUprRBHRd2tmfgpP/goprocess"
Jeromy's avatar
Jeromy committed
51
	mamask "gx/ipfs/QmSMZwvs3n4GBikZ7hKzT17c3bk65FmyZo2JqtJ16swqCv/multiaddr-filter"
Steven Allen's avatar
Steven Allen committed
52 53 54 55 56
	quic "gx/ipfs/QmSvK3DvgynMo45orM88RQowdupvgdxs3fDyahQsKkmcUP/go-libp2p-quic-transport"
	bitswap "gx/ipfs/QmUYXFM46WgGs5AScfL4FSZXa9p5nAhddueyM5auAVZGCQ/go-bitswap"
	bsnet "gx/ipfs/QmUYXFM46WgGs5AScfL4FSZXa9p5nAhddueyM5auAVZGCQ/go-bitswap/network"
	dht "gx/ipfs/QmXbPygnUKAPMwseE5U3hQA7Thn59GVm7pQrhkFV63umT8/go-libp2p-kad-dht"
	dhtopts "gx/ipfs/QmXbPygnUKAPMwseE5U3hQA7Thn59GVm7pQrhkFV63umT8/go-libp2p-kad-dht/opts"
Steven Allen's avatar
Steven Allen committed
57
	pnet "gx/ipfs/QmY4Q5JC4vxLEi8EpVxJM4rcRryEVtH1zRKVTAm6BKV1pg/go-libp2p-pnet"
Steven Allen's avatar
Steven Allen committed
58
	peer "gx/ipfs/QmY5Grm8pJdiSSVsYxx4uNRgweY72EmYwuSDbRnbFok3iY/go-libp2p-peer"
Steven Allen's avatar
Steven Allen committed
59
	smux "gx/ipfs/QmY9JXR3FupnYAYJWK9aMr9bCpqWKcToQ1tz8DVGTrHpHw/go-stream-muxer"
Steven Allen's avatar
Steven Allen committed
60 61 62 63 64 65
	psrouter "gx/ipfs/QmYNjCcTvz65dj9GbsmLKsVDkAiJNGHdWBMCRJamxKTrqB/go-libp2p-pubsub-router"
	mfs "gx/ipfs/QmYnp3EVZqLjzm8NYigcB3aHqDLFmAVUvtaUdYb3nFDtK6/go-mfs"
	config "gx/ipfs/QmYyzmMnhNTtoXx5ttgUaRdHHckYnQWjPL98hgLAR2QLDD/go-ipfs-config"
	pstore "gx/ipfs/QmZ9zH2FnLcxv1xyzFeUpDUeo55xEhZQHgveZijcxr7TLj/go-libp2p-peerstore"
	resolver "gx/ipfs/QmZErC2Ay6WuGi96CPg316PwitdwgLo6RxZRqVjJjRj2MR/go-path/resolver"
	connmgr "gx/ipfs/QmZNGvvTqtVtGzVxkhRCu5nuwbytdRdtHtJbWLGxeMYAkt/go-libp2p-connmgr"
Steven Allen's avatar
Steven Allen committed
66
	mplex "gx/ipfs/QmZsejKNkeFSQe5TcmYXJ8iq6qPL1FpsP4eAA8j7RfE7xg/go-smux-multiplex"
Steven Allen's avatar
Steven Allen committed
67 68
	pubsub "gx/ipfs/QmaTfHazBrintpyALv8MzmCvGyGg3XWY7vDrsVfGVnpd1j/go-libp2p-pubsub"
	metrics "gx/ipfs/QmbYN6UmTJn5UUQdi5CTsU86TXVBSrTcRk5UmyA36Qx2J6/go-libp2p-metrics"
Steven Allen's avatar
Steven Allen committed
69 70
	ipld "gx/ipfs/QmcKKBwfz6FyQdHR2jsXrrF6XeSBXYL86anmWNewpFpoF5/go-ipld-format"
	logging "gx/ipfs/QmcuXC5cxs79ro2cUuHs4HQ2bkDLJUYokwL8aivcX6HW3C/go-log"
vyzo's avatar
vyzo committed
71
	autonat "gx/ipfs/QmdFdMoDmvuEJYsAKRA2BMobzNaeunmc16DqPxdHHfQ25K/go-libp2p-autonat-svc"
Steven Allen's avatar
Steven Allen committed
72 73 74
	merkledag "gx/ipfs/QmdV35UHnL1FM52baPkeUo6u7Fxm2CRUkPTLRPxeF8a4Ap/go-merkledag"
	ft "gx/ipfs/QmdYvDbHp7qAhZ7GsCj6e1cMo55ND6y2mjWVzwdvcv4f12/go-unixfs"
	nilrouting "gx/ipfs/QmdmWkx54g7VfVyxeG8ic84uf4G6Eq1GohuyKA3XDuJ8oC/go-ipfs-routing/none"
Steven Allen's avatar
Steven Allen committed
75
	yamux "gx/ipfs/Qmdps3CYh5htGQSrPvzg5PHouVexLmtpbuLCqc4vuej8PC/go-smux-yamux"
76
	ds "gx/ipfs/Qmf4xQhNomPNhrtZc67qSnfJSjxjXs9LWvknJtSXwimPrM/go-datastore"
Steven Allen's avatar
Steven Allen committed
77 78
	record "gx/ipfs/QmfARXVCzpwFXQdepAJZuqyNDgV9doEsMnVCo1ssmuSe1U/go-libp2p-record"
	p2phost "gx/ipfs/QmfD51tKgJiTMnW9JEiDiPwsCY4mqUoxkhKhBfyW12spTC/go-libp2p-host"
Łukasz Magiera's avatar
Łukasz Magiera committed
79
)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
80

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

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

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

88 89 90 91
type mode int

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

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

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

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

107
	Repo repo.Repo
108 109

	// Local node
110 111 112 113
	Pinning         pin.Pinner // the pinning manager
	Mounts          Mounts     // current mount state, if any.
	PrivateKey      ic.PrivKey // the local node's private Key
	PNetFingerprint []byte     // fingerprint of private network
114 115

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

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

vyzo's avatar
vyzo committed
138
	AutoNAT  *autonat.AutoNATService
Steven Allen's avatar
Steven Allen committed
139
	PubSub   *pubsub.PubSub
140
	PSRouter *psrouter.PubsubValueStore
141
	DHT      *dht.IpfsDHT
Łukasz Magiera's avatar
Łukasz Magiera committed
142
	P2P      *p2p.P2P
Jeromy's avatar
Jeromy committed
143

144 145
	proc goprocess.Process
	ctx  context.Context
146

Jeromy's avatar
Jeromy committed
147
	mode         mode
148
	localModeSet bool
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
149 150
}

151 152 153 154 155 156 157 158
// 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
159
func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption RoutingOption, hostOption HostOption, do DiscoveryOption, pubsub, ipnsps, mplex bool) error {
160
	if n.PeerHost != nil { // already online.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
161
		return errors.New("node already online")
162 163
	}

164 165 166 167
	if n.PrivateKey == nil {
		return fmt.Errorf("private key not available")
	}

Jeromy's avatar
Jeromy committed
168
	// get undialable addrs from config
169 170 171 172
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
Steven Allen's avatar
Steven Allen committed
173 174

	var libp2pOpts []libp2p.Option
175
	for _, s := range cfg.Swarm.AddrFilters {
Jeromy's avatar
Jeromy committed
176 177
		f, err := mamask.NewMask(s)
		if err != nil {
178
			return fmt.Errorf("incorrectly formatted address filter in config: %s", s)
Jeromy's avatar
Jeromy committed
179
		}
Steven Allen's avatar
Steven Allen committed
180
		libp2pOpts = append(libp2pOpts, libp2p.FilterAddresses(f))
Jeromy's avatar
Jeromy committed
181 182
	}

183 184 185
	if !cfg.Swarm.DisableBandwidthMetrics {
		// Set reporter
		n.Reporter = metrics.NewBandwidthCounter()
Steven Allen's avatar
Steven Allen committed
186
		libp2pOpts = append(libp2pOpts, libp2p.BandwidthReporter(n.Reporter))
187 188
	}

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

	if swarmkey != nil {
Steven Allen's avatar
Steven Allen committed
195
		protec, err := pnet.NewProtector(bytes.NewReader(swarmkey))
Jakub Sztandera's avatar
Jakub Sztandera committed
196
		if err != nil {
197
			return fmt.Errorf("failed to configure private network: %s", err)
Jakub Sztandera's avatar
Jakub Sztandera committed
198
		}
199
		n.PNetFingerprint = protec.Fingerprint()
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
		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
				}
			}
		}()
Steven Allen's avatar
Steven Allen committed
218 219

		libp2pOpts = append(libp2pOpts, libp2p.PrivateNetwork(protec))
Jakub Sztandera's avatar
Jakub Sztandera committed
220 221
	}

222 223 224 225
	addrsFactory, err := makeAddrsFactory(cfg.Addresses)
	if err != nil {
		return err
	}
Steven Allen's avatar
Steven Allen committed
226 227 228 229
	if !cfg.Swarm.DisableRelay {
		addrsFactory = composeAddrsFactory(addrsFactory, filterRelayAddrs)
	}
	libp2pOpts = append(libp2pOpts, libp2p.AddrsFactory(addrsFactory))
230

Steven Allen's avatar
Steven Allen committed
231
	connm, err := constructConnMgr(cfg.Swarm.ConnMgr)
Jeromy's avatar
Jeromy committed
232 233 234
	if err != nil {
		return err
	}
Steven Allen's avatar
Steven Allen committed
235 236 237
	libp2pOpts = append(libp2pOpts, libp2p.ConnectionManager(connm))

	libp2pOpts = append(libp2pOpts, makeSmuxTransportOption(mplex))
Jeromy's avatar
Jeromy committed
238

Steven Allen's avatar
Steven Allen committed
239 240
	if !cfg.Swarm.DisableNatPortMap {
		libp2pOpts = append(libp2pOpts, libp2p.NATPortMap())
241
	}
Steven Allen's avatar
Steven Allen committed
242

243 244 245
	// disable the default listen addrs
	libp2pOpts = append(libp2pOpts, libp2p.NoListenAddrs)

246 247 248 249 250 251 252 253 254 255 256
	if cfg.Swarm.DisableRelay {
		// Enabled by default.
		libp2pOpts = append(libp2pOpts, libp2p.DisableRelay())
	} else {
		relayOpts := []circuit.RelayOpt{circuit.OptDiscovery}
		if cfg.Swarm.EnableRelayHop {
			relayOpts = append(relayOpts, circuit.OptHop)
		}
		libp2pOpts = append(libp2pOpts, libp2p.EnableRelay(relayOpts...))
	}

257 258 259
	// explicitly enable the default transports
	libp2pOpts = append(libp2pOpts, libp2p.DefaultTransports)

Marten Seemann's avatar
Marten Seemann committed
260 261 262 263
	if cfg.Experimental.QUIC {
		libp2pOpts = append(libp2pOpts, libp2p.Transport(quic.NewTransport))
	}

vyzo's avatar
vyzo committed
264 265 266 267 268 269 270 271
	// enable routing
	libp2pOpts = append(libp2pOpts, libp2p.Routing(func(h p2phost.Host) (routing.PeerRouting, error) {
		r, err := routingOption(ctx, h, n.Repo.Datastore(), n.RecordValidator)
		n.Routing = r
		return r, err
	}))

	// enable autorelay
vyzo's avatar
vyzo committed
272
	if cfg.Swarm.EnableAutoRelay {
vyzo's avatar
vyzo committed
273
		libp2pOpts = append(libp2pOpts, libp2p.EnableAutoRelay())
vyzo's avatar
vyzo committed
274
	}
275

Steven Allen's avatar
Steven Allen committed
276
	peerhost, err := hostOption(ctx, n.Identity, n.Peerstore, libp2pOpts...)
vyzo's avatar
vyzo committed
277

278
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
279
		return err
280 281
	}

282 283
	n.PeerHost = peerhost

284
	if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption, pubsub, ipnsps); err != nil {
285
		return err
286 287 288
	}

	// Ok, now we're ready to listen.
Łukasz Magiera's avatar
Łukasz Magiera committed
289
	if err := startListening(n.PeerHost, cfg); err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
290
		return err
291
	}
292

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

295
	// setup local discovery
Jeromy's avatar
Jeromy committed
296
	if do != nil {
Jeromy's avatar
Jeromy committed
297
		service, err := do(ctx, n.PeerHost)
Jeromy's avatar
Jeromy committed
298
		if err != nil {
Jeromy's avatar
Jeromy committed
299 300 301 302
			log.Error("mdns error: ", err)
		} else {
			service.RegisterNotifee(n)
			n.Discovery = service
Jeromy's avatar
Jeromy committed
303
		}
304 305
	}

306
	return n.Bootstrap(DefaultBootstrapConfig)
307 308
}

Jeromy's avatar
Jeromy committed
309 310
func constructConnMgr(cfg config.ConnMgr) (ifconnmgr.ConnManager, error) {
	switch cfg.Type {
311 312 313 314
	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
315 316 317 318 319 320 321 322 323 324 325 326 327
		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
328 329 330 331 332 333
func (n *IpfsNode) startLateOnlineServices(ctx context.Context) error {
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

334
	var keyProvider rp.KeyChanFunc
Łukasz Magiera's avatar
Łukasz Magiera committed
335 336 337 338 339 340 341 342 343 344 345

	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:
346
		return fmt.Errorf("unknown reprovider strategy '%s'", cfg.Reprovider.Strategy)
Łukasz Magiera's avatar
Łukasz Magiera committed
347
	}
348
	n.Reprovider = rp.NewReprovider(ctx, n.Routing, keyProvider)
Łukasz Magiera's avatar
Łukasz Magiera committed
349

350 351 352 353 354
	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
355 356
		}

357
		reproviderInterval = dur
Łukasz Magiera's avatar
Łukasz Magiera committed
358 359
	}

360 361
	go n.Reprovider.Run(reproviderInterval)

Łukasz Magiera's avatar
Łukasz Magiera committed
362 363 364
	return nil
}

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
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
}

Steven Allen's avatar
Steven Allen committed
411 412 413
func makeSmuxTransportOption(mplexExp bool) libp2p.Option {
	const yamuxID = "/yamux/1.0.0"
	const mplexID = "/mplex/6.7.0"
414 415

	ymxtpt := &yamux.Transport{
Steven Allen's avatar
Steven Allen committed
416
		AcceptBacklog:          512,
417 418 419 420 421 422 423
		ConnectionWriteTimeout: time.Second * 10,
		KeepAliveInterval:      time.Second * 30,
		EnableKeepAlive:        true,
		MaxStreamWindowSize:    uint32(1024 * 512),
		LogOutput:              ioutil.Discard,
	}

424 425 426 427
	if os.Getenv("YAMUX_DEBUG") != "" {
		ymxtpt.LogOutput = os.Stderr
	}

Steven Allen's avatar
Steven Allen committed
428
	muxers := map[string]smux.Transport{yamuxID: ymxtpt}
429
	if mplexExp {
Steven Allen's avatar
Steven Allen committed
430
		muxers[mplexID] = mplex.DefaultTransport
431 432 433
	}

	// Allow muxer preference order overriding
Steven Allen's avatar
Steven Allen committed
434
	order := []string{yamuxID, mplexID}
435
	if prefs := os.Getenv("LIBP2P_MUX_PREFS"); prefs != "" {
Steven Allen's avatar
Steven Allen committed
436 437 438 439 440 441 442 443 444 445 446 447
		order = strings.Fields(prefs)
	}

	opts := make([]libp2p.Option, 0, len(order))
	for _, id := range order {
		tpt, ok := muxers[id]
		if !ok {
			log.Warning("unknown or duplicate muxer in LIBP2P_MUX_PREFS: %s", id)
			continue
		}
		delete(muxers, id)
		opts = append(opts, libp2p.Muxer(id, tpt))
448 449
	}

Steven Allen's avatar
Steven Allen committed
450
	return libp2p.ChainOptions(opts...)
451 452
}

Jeromy's avatar
Jeromy committed
453 454
func setupDiscoveryOption(d config.Discovery) DiscoveryOption {
	if d.MDNS.Enabled {
Jeromy's avatar
Jeromy committed
455
		return func(ctx context.Context, h p2phost.Host) (discovery.Service, error) {
Jeromy's avatar
Jeromy committed
456 457 458
			if d.MDNS.Interval == 0 {
				d.MDNS.Interval = 5
			}
Jeromy's avatar
Jeromy committed
459
			return discovery.NewMdnsService(ctx, h, time.Duration(d.MDNS.Interval)*time.Second, discovery.ServiceTag)
Jeromy's avatar
Jeromy committed
460 461 462 463 464
		}
	}
	return nil
}

465 466
// HandlePeerFound attempts to connect to peer from `PeerInfo`, if it fails
// logs a warning log.
Jeromy's avatar
Jeromy committed
467
func (n *IpfsNode) HandlePeerFound(p pstore.PeerInfo) {
468
	log.Warning("trying peer info: ", p)
469
	ctx, cancel := context.WithTimeout(n.Context(), discoveryConnTimeout)
rht's avatar
rht committed
470
	defer cancel()
471
	if err := n.PeerHost.Connect(ctx, p); err != nil {
472 473 474 475
		log.Warning("Failed to connect to peer found by discovery: ", err)
	}
}

476 477
// startOnlineServicesWithHost  is the set of services which need to be
// initialized with the host and _before_ we start listening.
Steven Allen's avatar
Steven Allen committed
478
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption, enablePubsub bool, enableIpnsps bool) error {
vyzo's avatar
vyzo committed
479 480 481 482 483 484
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	if cfg.Swarm.EnableAutoNATService {
vyzo's avatar
vyzo committed
485 486 487 488 489 490
		var opts []libp2p.Option
		if cfg.Experimental.QUIC {
			opts = append(opts, libp2p.DefaultTransports, libp2p.Transport(quic.NewTransport))
		}

		svc, err := autonat.NewAutoNATService(ctx, host, opts...)
491 492 493
		if err != nil {
			return err
		}
vyzo's avatar
vyzo committed
494 495
		n.AutoNAT = svc
	}
496

vyzo's avatar
vyzo committed
497
	if enablePubsub || enableIpnsps {
Steven Allen's avatar
Steven Allen committed
498
		var service *pubsub.PubSub
499

Steven Allen's avatar
Steven Allen committed
500 501 502 503 504 505 506 507 508
		var pubsubOptions []pubsub.Option
		if cfg.Pubsub.DisableSigning {
			pubsubOptions = append(pubsubOptions, pubsub.WithMessageSigning(false))
		}

		if cfg.Pubsub.StrictSignatureVerification {
			pubsubOptions = append(pubsubOptions, pubsub.WithStrictSignatureVerification(true))
		}

509 510 511 512
		switch cfg.Pubsub.Router {
		case "":
			fallthrough
		case "floodsub":
Steven Allen's avatar
Steven Allen committed
513
			service, err = pubsub.NewFloodSub(ctx, host, pubsubOptions...)
514 515

		case "gossipsub":
Steven Allen's avatar
Steven Allen committed
516
			service, err = pubsub.NewGossipSub(ctx, host, pubsubOptions...)
517 518 519 520 521

		default:
			err = fmt.Errorf("Unknown pubsub router %s", cfg.Pubsub.Router)
		}

522 523 524
		if err != nil {
			return err
		}
Steven Allen's avatar
Steven Allen committed
525
		n.PubSub = service
526 527
	}

vyzo's avatar
vyzo committed
528 529
	// this code is necessary as the host is necessary for tests: mock network constructions
	// ignore the libp2p options that actually construct the routing!
530 531 532 533 534 535 536
	if n.Routing == nil {
		r, err := routingOption(ctx, host, n.Repo.Datastore(), n.RecordValidator)
		if err != nil {
			return err
		}
		n.Routing = r
		n.PeerHost = rhost.Wrap(host, n.Routing)
537 538
	}

539 540 541 542 543 544 545 546 547 548 549 550 551
	// TODO: I'm not a fan of type assertions like this but the
	// `RoutingOption` system doesn't currently provide access to the
	// IpfsNode.
	//
	// Ideally, we'd do something like:
	//
	// 1. Add some fancy method to introspect into tiered routers to extract
	//    things like the pubsub router or the DHT (complicated, messy,
	//    probably not worth it).
	// 2. Pass the IpfsNode into the RoutingOption (would also remove the
	//    PSRouter case below.
	// 3. Introduce some kind of service manager? (my personal favorite but
	//    that requires a fair amount of work).
552
	if dht, ok := n.Routing.(*dht.IpfsDHT); ok {
553 554 555
		n.DHT = dht
	}

Steven Allen's avatar
Steven Allen committed
556
	if enableIpnsps {
557 558 559 560
		n.PSRouter = psrouter.NewPubsubValueStore(
			ctx,
			host,
			n.Routing,
Steven Allen's avatar
Steven Allen committed
561
			n.PubSub,
562
			n.RecordValidator,
563 564
		)
		n.Routing = rhelpers.Tiered{
Łukasz Magiera's avatar
Łukasz Magiera committed
565 566 567 568 569 570 571
			Routers: []routing.IpfsRouting{
				// Always check pubsub first.
				&rhelpers.Compose{
					ValueStore: &rhelpers.LimitedValueStore{
						ValueStore: n.PSRouter,
						Namespaces: []string{"ipns"},
					},
572
				},
Łukasz Magiera's avatar
Łukasz Magiera committed
573
				n.Routing,
574
			},
Łukasz Magiera's avatar
Łukasz Magiera committed
575
			Validator: n.RecordValidator,
576 577 578
		}
	}

579
	// setup exchange service
580
	bitswapNetwork := bsnet.NewFromIpfsHost(n.PeerHost, n.Routing)
Łukasz Magiera's avatar
Łukasz Magiera committed
581
	n.Exchange = bitswap.New(ctx, bitswapNetwork, n.Blockstore)
582

583 584 585 586 587
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

588
	// setup name system
589
	n.Namesys = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), size)
590

Jeromy's avatar
Jeromy committed
591
	// setup ipns republishing
592
	return n.setupIpnsRepublisher()
593 594
}

595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
// 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
}

612
func (n *IpfsNode) setupIpnsRepublisher() error {
Jeromy's avatar
Jeromy committed
613 614 615 616
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
617

618
	n.IpnsRepub = ipnsrp.NewRepublisher(n.Namesys, n.Repo.Datastore(), n.PrivateKey, n.Repo.Keystore())
619

Jeromy's avatar
Jeromy committed
620 621 622 623 624 625
	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)
		}

626
		if !u.Debug && (d < time.Minute || d > (time.Hour*24)) {
Jeromy's avatar
Jeromy committed
627 628 629 630 631 632
			return fmt.Errorf("config setting IPNS.RepublishPeriod is not between 1min and 1day: %s", d)
		}

		n.IpnsRepub.Interval = d
	}

633
	if cfg.Ipns.RecordLifetime != "" {
634
		d, err := time.ParseDuration(cfg.Ipns.RecordLifetime)
635 636 637 638 639 640 641
		if err != nil {
			return fmt.Errorf("failure to parse config setting IPNS.RecordLifetime: %s", err)
		}

		n.IpnsRepub.RecordLifetime = d
	}

Jeromy's avatar
Jeromy committed
642 643
	n.Process().Go(n.IpnsRepub.Run)

644 645 646
	return nil
}

647 648 649 650 651 652 653 654 655 656 657 658
// 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 {
659 660 661
	if n.ctx == nil {
		n.ctx = context.TODO()
	}
662 663 664
	return n.ctx
}

665 666
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
667
func (n *IpfsNode) teardown() error {
668
	log.Debug("core is shutting down...")
669 670
	// 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
671 672
	var closers []io.Closer

673
	// NOTE: The order that objects are added(closed) matters, if an object
Jeromy's avatar
Jeromy committed
674 675 676 677 678
	// 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
679
	}
680

681 682 683 684
	if n.Exchange != nil {
		closers = append(closers, n.Exchange)
	}

685
	if n.Mounts.Ipfs != nil && !n.Mounts.Ipfs.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
686 687
		closers = append(closers, mount.Closer(n.Mounts.Ipfs))
	}
688
	if n.Mounts.Ipns != nil && !n.Mounts.Ipns.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
689 690 691
		closers = append(closers, mount.Closer(n.Mounts.Ipns))
	}

692 693
	if n.DHT != nil {
		closers = append(closers, n.DHT.Process())
Jeromy's avatar
Jeromy committed
694 695
	}

Jeromy's avatar
Jeromy committed
696 697 698 699
	if n.Blocks != nil {
		closers = append(closers, n.Blocks)
	}

Jeromy's avatar
Jeromy committed
700 701
	if n.Bootstrapper != nil {
		closers = append(closers, n.Bootstrapper)
702 703
	}

Jeromy's avatar
Jeromy committed
704 705
	if n.PeerHost != nil {
		closers = append(closers, n.PeerHost)
706
	}
707

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

711
	var errs []error
712
	for _, closer := range closers {
713 714
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
715 716 717 718
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
719 720
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
721 722
}

723
// OnlineMode returns whether or not the IpfsNode is in OnlineMode.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
724
func (n *IpfsNode) OnlineMode() bool {
725
	return n.mode == onlineMode
Brian Tiger Chow's avatar
Brian Tiger Chow committed
726 727
}

728
// SetLocal will set the IpfsNode to local mode
729 730 731 732 733 734 735
func (n *IpfsNode) SetLocal(isLocal bool) {
	if isLocal {
		n.mode = localMode
	}
	n.localModeSet = true
}

736
// LocalMode returns whether or not the IpfsNode is in LocalMode
737 738 739 740 741
func (n *IpfsNode) LocalMode() bool {
	if !n.localModeSet {
		// programmer error should not happen
		panic("local mode not set")
	}
742
	return n.mode == localMode
743 744
}

745
// Bootstrap will set and call the IpfsNodes bootstrap function.
746
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
747
	// TODO what should return value be when in offlineMode?
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
748 749 750 751
	if n.Routing == nil {
		return nil
	}

752 753 754 755 756 757 758
	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
759
		cfg.BootstrapPeers = func() []pstore.PeerInfo {
760
			ps, err := n.loadBootstrapPeers()
761
			if err != nil {
762
				log.Warning("failed to parse bootstrap peers from config")
763 764 765 766 767 768 769 770 771
				return nil
			}
			return ps
		}
	}

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
772 773
}

774 775
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
776
		return errors.New("identity already loaded")
777 778
	}

779 780 781 782 783 784
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	cid := cfg.Identity.PeerID
785
	if cid == "" {
786
		return errors.New("identity was not set in config (was 'ipfs init' run?)")
787 788
	}
	if len(cid) == 0 {
789
		return errors.New("no peer ID in config! (was 'ipfs init' run?)")
790 791
	}

Steven Allen's avatar
Steven Allen committed
792 793 794 795 796 797
	id, err := peer.IDB58Decode(cid)
	if err != nil {
		return fmt.Errorf("peer ID invalid: %s", err)
	}

	n.Identity = id
798 799
	return nil
}
800

801
// GetKey will return a key from the Keystore with name `name`.
802 803
func (n *IpfsNode) GetKey(name string) (ic.PrivKey, error) {
	if name == "self" {
804 805 806
		if n.PrivateKey == nil {
			return nil, fmt.Errorf("private key not available")
		}
807 808 809 810 811 812
		return n.PrivateKey, nil
	} else {
		return n.Repo.Keystore().Get(name)
	}
}

813 814
// loadPrivateKey loads the private key *if* available
func (n *IpfsNode) loadPrivateKey() error {
815
	if n.Identity == "" || n.Peerstore == nil {
Łukasz Magiera's avatar
Łukasz Magiera committed
816
		return errors.New("loaded private key out of order")
817 818
	}

819
	if n.PrivateKey != nil {
Kejie Zhang's avatar
Kejie Zhang committed
820 821
		log.Warning("private key already loaded")
		return nil
822 823
	}

824 825 826 827 828
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

829 830 831 832
	if cfg.Identity.PrivKey == "" {
		return nil
	}

833
	sk, err := loadPrivateKey(&cfg.Identity, n.Identity)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
834
	if err != nil {
835
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
836
	}
837

838 839
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
840 841 842 843
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

Jeromy's avatar
Jeromy committed
844
func (n *IpfsNode) loadBootstrapPeers() ([]pstore.PeerInfo, error) {
845 846 847 848 849 850
	cfg, err := n.Repo.Config()
	if err != nil {
		return nil, err
	}

	parsed, err := cfg.BootstrapPeers()
851 852 853 854 855 856
	if err != nil {
		return nil, err
	}
	return toPeerInfos(parsed), nil
}

Jeromy's avatar
Jeromy committed
857
func (n *IpfsNode) loadFilesRoot() error {
Jeromy's avatar
Jeromy committed
858
	dsk := ds.NewKey("/local/filesroot")
859
	pf := func(ctx context.Context, c cid.Cid) error {
Jeromy's avatar
Jeromy committed
860
		return n.Repo.Datastore().Put(dsk, c.Bytes())
Jeromy's avatar
Jeromy committed
861 862
	}

863
	var nd *merkledag.ProtoNode
Jeromy's avatar
Jeromy committed
864 865 866 867
	val, err := n.Repo.Datastore().Get(dsk)

	switch {
	case err == ds.ErrNotFound || val == nil:
868
		nd = ft.EmptyDirNode()
869
		err := n.DAG.Add(n.Context(), nd)
Jeromy's avatar
Jeromy committed
870 871 872 873
		if err != nil {
			return fmt.Errorf("failure writing to dagstore: %s", err)
		}
	case err == nil:
874
		c, err := cid.Cast(val)
Jeromy's avatar
Jeromy committed
875 876 877 878
		if err != nil {
			return err
		}

879
		rnd, err := n.DAG.Get(n.Context(), c)
Jeromy's avatar
Jeromy committed
880 881 882
		if err != nil {
			return fmt.Errorf("error loading filesroot from DAG: %s", err)
		}
883 884 885 886 887 888 889

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

		nd = pbnd
Jeromy's avatar
Jeromy committed
890 891 892 893 894 895 896 897 898 899 900 901 902
	default:
		return err
	}

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

	n.FilesRoot = mr
	return nil
}

903 904
func loadPrivateKey(cfg *config.Identity, id peer.ID) (ic.PrivKey, error) {
	sk, err := cfg.DecodePrivateKey("passphrase todo!")
905 906 907
	if err != nil {
		return nil, err
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
908

909 910 911 912
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
913

914 915
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
916 917
	}

918
	return sk, nil
919
}
920

921
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
922 923 924
	var listen []ma.Multiaddr
	for _, addr := range cfg.Addresses.Swarm {
		maddr, err := ma.NewMultiaddr(addr)
925
		if err != nil {
Łukasz Magiera's avatar
Łukasz Magiera committed
926
			return nil, fmt.Errorf("failure to parse config.Addresses.Swarm: %s", cfg.Addresses.Swarm)
927
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
928
		listen = append(listen, maddr)
929 930 931 932
	}

	return listen, nil
}
933

Kevin Atkinson's avatar
Kevin Atkinson committed
934
type ConstructPeerHostOpts struct {
935
	AddrsFactory      p2pbhost.AddrsFactory
vyzo's avatar
vyzo committed
936 937 938
	DisableNatPortMap bool
	DisableRelay      bool
	EnableRelayHop    bool
Jeromy's avatar
Jeromy committed
939
	ConnectionManager ifconnmgr.ConnManager
Kevin Atkinson's avatar
Kevin Atkinson committed
940 941
}

Steven Allen's avatar
Steven Allen committed
942
type HostOption func(ctx context.Context, id peer.ID, ps pstore.Peerstore, options ...libp2p.Option) (p2phost.Host, error)
Jeromy's avatar
Jeromy committed
943 944 945

var DefaultHostOption HostOption = constructPeerHost

946
// isolates the complex initialization steps
Steven Allen's avatar
Steven Allen committed
947 948 949 950
func constructPeerHost(ctx context.Context, id peer.ID, ps pstore.Peerstore, options ...libp2p.Option) (p2phost.Host, error) {
	pkey := ps.PrivKey(id)
	if pkey == nil {
		return nil, fmt.Errorf("missing private key for node ID: %s", id.Pretty())
951
	}
Steven Allen's avatar
Steven Allen committed
952 953
	options = append([]libp2p.Option{libp2p.Identity(pkey), libp2p.Peerstore(ps)}, options...)
	return libp2p.New(ctx, options...)
954 955
}

956 957 958 959 960 961 962 963 964 965 966 967
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
}

968 969 970 971 972 973
func composeAddrsFactory(f, g p2pbhost.AddrsFactory) p2pbhost.AddrsFactory {
	return func(addrs []ma.Multiaddr) []ma.Multiaddr {
		return f(g(addrs))
	}
}

974
// startListening on the network addresses
Łukasz Magiera's avatar
Łukasz Magiera committed
975
func startListening(host p2phost.Host, cfg *config.Config) error {
976 977
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
978
		return err
979 980 981
	}

	// Actually start listening:
Steven Allen's avatar
Steven Allen committed
982
	if err := host.Network().Listen(listenAddrs...); err != nil {
983
		return err
984 985
	}

986
	// list out our addresses
987
	addrs, err := host.Network().InterfaceListenAddresses()
988
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
989
		return err
990
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
991
	log.Infof("Swarm listening at: %s", addrs)
992
	return nil
993
}
994

995 996 997 998 999 1000
func constructDHTRouting(ctx context.Context, host p2phost.Host, dstore ds.Batching, validator record.Validator) (routing.IpfsRouting, error) {
	return dht.New(
		ctx, host,
		dhtopts.Datastore(dstore),
		dhtopts.Validator(validator),
	)
1001
}
Jeromy's avatar
Jeromy committed
1002

1003 1004 1005 1006 1007 1008 1009
func constructClientDHTRouting(ctx context.Context, host p2phost.Host, dstore ds.Batching, validator record.Validator) (routing.IpfsRouting, error) {
	return dht.New(
		ctx, host,
		dhtopts.Client(true),
		dhtopts.Datastore(dstore),
		dhtopts.Validator(validator),
	)
Jeromy's avatar
Jeromy committed
1010 1011
}

1012
type RoutingOption func(context.Context, p2phost.Host, ds.Batching, record.Validator) (routing.IpfsRouting, error)
Jeromy's avatar
Jeromy committed
1013

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

1016
var DHTOption RoutingOption = constructDHTRouting
Jeromy's avatar
Jeromy committed
1017
var DHTClientOption RoutingOption = constructClientDHTRouting
1018
var NilRouterOption RoutingOption = nilrouting.ConstructNilRouting