core.go 27.6 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
	config "gx/ipfs/QmNUhkTWN7iynJZTj1RcTsQDSRGGkh87zMo9ELypxhY8Y6/go-ipfs-config"
34
	cid "gx/ipfs/QmPSQnBKM9g7BaUcZCvswUJVscQ1ipjmwxN5PXCjkp9EQ7/go-cid"
35
	u "gx/ipfs/QmPdKqUcHGFdeSpvjVoaTRPPstGif9GBZb5Q56RVw9o69A/go-ipfs-util"
Steven Allen's avatar
Steven Allen committed
36
	ic "gx/ipfs/QmPvyPwuCgJ7pDmrKDxRtsScJgBaM5h4EpRL2qQJsmXf4n/go-libp2p-crypto"
Steven Allen's avatar
Steven Allen committed
37
	"gx/ipfs/QmQ4sKWqHhSYekzST5RwT4VHdQB4df6JWLHNy7tuWTo8uY/go-path/resolver"
38
	exchange "gx/ipfs/QmR1nncPsZR14A4hWr39mq8Lm7BGgS68bHVT9nop8NpWEM/go-ipfs-exchange-interface"
Steven Allen's avatar
Steven Allen committed
39 40 41 42 43 44
	libp2p "gx/ipfs/QmRqtXHu5gsCLpf2s1R2jQuKJBowYKkg6FGQiGCbzttSd1/go-libp2p"
	discovery "gx/ipfs/QmRqtXHu5gsCLpf2s1R2jQuKJBowYKkg6FGQiGCbzttSd1/go-libp2p/p2p/discovery"
	p2pbhost "gx/ipfs/QmRqtXHu5gsCLpf2s1R2jQuKJBowYKkg6FGQiGCbzttSd1/go-libp2p/p2p/host/basic"
	rhost "gx/ipfs/QmRqtXHu5gsCLpf2s1R2jQuKJBowYKkg6FGQiGCbzttSd1/go-libp2p/p2p/host/routed"
	identify "gx/ipfs/QmRqtXHu5gsCLpf2s1R2jQuKJBowYKkg6FGQiGCbzttSd1/go-libp2p/p2p/protocol/identify"
	ping "gx/ipfs/QmRqtXHu5gsCLpf2s1R2jQuKJBowYKkg6FGQiGCbzttSd1/go-libp2p/p2p/protocol/ping"
45
	goprocess "gx/ipfs/QmSF8fPo3jgVBAy8fpdjjYqgG87dkJgUprRBHRd2tmfgpP/goprocess"
Jeromy's avatar
Jeromy committed
46
	mamask "gx/ipfs/QmSMZwvs3n4GBikZ7hKzT17c3bk65FmyZo2JqtJ16swqCv/multiaddr-filter"
Steven Allen's avatar
Steven Allen committed
47 48 49 50 51 52
	ma "gx/ipfs/QmT4U94DnD8FRfqr21obWY32HLM5VExccPKMjQHofeYqr9/go-multiaddr"
	peer "gx/ipfs/QmTRhk7cgjUf2gfQ3p2M9KPECNZEW9XUrmHcFCgog4cPgB/go-libp2p-peer"
	connmgr "gx/ipfs/QmTSih5JrkhMH62dp1oGjEwcaC38dxXBgRwTbeQEL4mPcU/go-libp2p-connmgr"
	pstore "gx/ipfs/QmTTJcDL3gsnGDALjh2fDGg1onGRUdVgNL2hU2WEZcVrMX/go-libp2p-peerstore"
	pubsub "gx/ipfs/QmUM8nuPYryeLY2ENKz8oX566H6HE2EPNQ3SQxjnEw3bD4/go-libp2p-pubsub"
	psrouter "gx/ipfs/QmUwmwdn1dTf8my6dmYJ5KLJGpcigLZXUiqKkhtJF7jc8j/go-libp2p-pubsub-router"
Steven Allen's avatar
Steven Allen committed
53 54
	dht "gx/ipfs/QmVMa2b3qsZCWFSfpU7Q7ci57q3o8rQzfWdS8c1yqqL4US/go-libp2p-kad-dht"
	dhtopts "gx/ipfs/QmVMa2b3qsZCWFSfpU7Q7ci57q3o8rQzfWdS8c1yqqL4US/go-libp2p-kad-dht/opts"
Steven Allen's avatar
Steven Allen committed
55 56 57 58
	quic "gx/ipfs/QmVX7uSFmFLZRFsN9QNPDJf7Pmhuv4GdedrKYrt2xXm5ag/go-libp2p-quic-transport"
	ifconnmgr "gx/ipfs/QmWRvjn5BHMLCGkf48Hk1LDc4W72RPA9H59AAVCXmn9esJ/go-libp2p-interface-connmgr"
	circuit "gx/ipfs/QmWiBdRSS7f3aYVWePSrQsAk5nqBVswgV3eKvJMEH6NhHc/go-libp2p-circuit"
	rhelpers "gx/ipfs/QmX3syBjwRd12qJGaKbFBWFfrBinKsaTC43ry3PsgiXCLK/go-libp2p-routing-helpers"
Steven Allen's avatar
Steven Allen committed
59
	pnet "gx/ipfs/QmY4Q5JC4vxLEi8EpVxJM4rcRryEVtH1zRKVTAm6BKV1pg/go-libp2p-pnet"
Steven Allen's avatar
Steven Allen committed
60
	smux "gx/ipfs/QmY9JXR3FupnYAYJWK9aMr9bCpqWKcToQ1tz8DVGTrHpHw/go-stream-muxer"
Steven Allen's avatar
Steven Allen committed
61
	logging "gx/ipfs/QmZChCsSt8DctjceaL56Eibc29CVQq4dGKRXC5JRZ6Ppae/go-log"
Steven Allen's avatar
Steven Allen committed
62
	record "gx/ipfs/Qma9Eqp16mNHDX1EL73pcxhFfzbyXVcAYtaDd1xdmDRDtL/go-libp2p-record"
Steven Allen's avatar
Steven Allen committed
63
	ds "gx/ipfs/QmaRb5yNXKonhbkpNxNawoydk4N6es6b4fPj19sjEKsh5D/go-datastore"
Steven Allen's avatar
Steven Allen committed
64
	mplex "gx/ipfs/QmaveCPGVaKJU57tBErGCDjzLaqEMZkFygoiv4BhYwWUGc/go-smux-multiplex"
Steven Allen's avatar
Steven Allen committed
65
	bserv "gx/ipfs/QmbZbNRg1x28X9ayEG1ZgEuSXcryGPcdEtWN5k6sNz4aqz/go-blockservice"
Steven Allen's avatar
Steven Allen committed
66
	mafilter "gx/ipfs/QmbuCmYjYK5GQo4zKrK2h3NVsyBYf81ZQXgiE69CLLGHgB/go-maddr-filter"
Steven Allen's avatar
Steven Allen committed
67
	bstore "gx/ipfs/QmcDDgAXDbpDUpadCJKLr49KYR4HuL7T8Z1dZTHt6ixsoR/go-ipfs-blockstore"
Steven Allen's avatar
Steven Allen committed
68
	routing "gx/ipfs/QmcQ81jSyWCp1jpkQ8CMbtpXT3jK7Wg6ZtYmoyWFgBoF9c/go-libp2p-routing"
Steven Allen's avatar
Steven Allen committed
69
	merkledag "gx/ipfs/QmcescwzzD86xrxoXNJ6VwSw46wLC91QzFDnozYRVf4KnX/go-merkledag"
Steven Allen's avatar
Steven Allen committed
70 71
	nilrouting "gx/ipfs/QmcjvUP25nLSwELgUeqWe854S3XVbtsntTr7kZxG63yKhe/go-ipfs-routing/none"
	offroute "gx/ipfs/QmcjvUP25nLSwELgUeqWe854S3XVbtsntTr7kZxG63yKhe/go-ipfs-routing/offline"
Steven Allen's avatar
Steven Allen committed
72 73 74
	mfs "gx/ipfs/QmcoscuUaw2N3zVzS2sPt1JFTCxoJjty9QioZdvY5pDRFX/go-mfs"
	bitswap "gx/ipfs/QmctT2dR93JQxjVM5s45XM6sRWpYUauZpB35pBD6GYoWer/go-bitswap"
	bsnet "gx/ipfs/QmctT2dR93JQxjVM5s45XM6sRWpYUauZpB35pBD6GYoWer/go-bitswap/network"
75
	ipld "gx/ipfs/QmdDXJs4axxefSPgK6Y1QhpJWKuDPnGJiqgq4uncb4rFHL/go-ipld-format"
Steven Allen's avatar
Steven Allen committed
76
	p2phost "gx/ipfs/QmdJfsSbKSZnMkfZ1kpopiyB9i3Hd6cp8VKWZmtWPa7Moc/go-libp2p-host"
Steven Allen's avatar
Steven Allen committed
77
	ft "gx/ipfs/QmeA7Cd6kMzQNDFzfXXhe64jX1XufcL8B79hwguu5v6ib9/go-unixfs"
Steven Allen's avatar
Steven Allen committed
78 79
	metrics "gx/ipfs/QmeaTjsfPf6vQ3WU2BUdjakgvKUHpuv3Fjxvb75N5iksMx/go-libp2p-metrics"
	yamux "gx/ipfs/QmegfBRUMFMaHgwSzxTUDdgmtMLt8YAJBgWub8VvAFaX8V/go-smux-yamux"
Łukasz Magiera's avatar
Łukasz Magiera committed
80
)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
81

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

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

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

89 90 91 92
type mode int

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

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

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

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

108
	Repo repo.Repo
109 110

	// Local node
111 112 113 114
	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
115 116

	// Services
117 118 119 120 121 122 123 124 125 126 127 128
	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
129 130

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

Steven Allen's avatar
Steven Allen committed
140
	PubSub   *pubsub.PubSub
141
	PSRouter *psrouter.PubsubValueStore
142
	DHT      *dht.IpfsDHT
Łukasz Magiera's avatar
Łukasz Magiera committed
143
	P2P      *p2p.P2P
Jeromy's avatar
Jeromy committed
144

145 146
	proc goprocess.Process
	ctx  context.Context
147

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

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

	// load private key
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
166
	if err := n.LoadPrivateKey(); err != nil {
167 168 169
		return err
	}

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

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

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

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

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

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

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

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

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

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

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

248 249 250 251 252 253 254 255 256 257 258
	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...))
	}

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

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

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

268
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
269
		return err
270 271
	}

272
	if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption, pubsub, ipnsps); err != nil {
273
		return err
274 275 276
	}

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

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

283
	// setup local discovery
Jeromy's avatar
Jeromy committed
284
	if do != nil {
Jeromy's avatar
Jeromy committed
285
		service, err := do(ctx, n.PeerHost)
Jeromy's avatar
Jeromy committed
286
		if err != nil {
Jeromy's avatar
Jeromy committed
287 288 289 290
			log.Error("mdns error: ", err)
		} else {
			service.RegisterNotifee(n)
			n.Discovery = service
Jeromy's avatar
Jeromy committed
291
		}
292 293
	}

294
	return n.Bootstrap(DefaultBootstrapConfig)
295 296
}

Jeromy's avatar
Jeromy committed
297 298
func constructConnMgr(cfg config.ConnMgr) (ifconnmgr.ConnManager, error) {
	switch cfg.Type {
299 300 301 302
	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
303 304 305 306 307 308 309 310 311 312 313 314 315
		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
316 317 318 319 320 321
func (n *IpfsNode) startLateOnlineServices(ctx context.Context) error {
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

322
	var keyProvider rp.KeyChanFunc
Łukasz Magiera's avatar
Łukasz Magiera committed
323 324 325 326 327 328 329 330 331 332 333

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

338 339 340 341 342
	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
343 344
		}

345
		reproviderInterval = dur
Łukasz Magiera's avatar
Łukasz Magiera committed
346 347
	}

348 349
	go n.Reprovider.Run(reproviderInterval)

Łukasz Magiera's avatar
Łukasz Magiera committed
350 351 352
	return nil
}

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 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
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
399 400 401
func makeSmuxTransportOption(mplexExp bool) libp2p.Option {
	const yamuxID = "/yamux/1.0.0"
	const mplexID = "/mplex/6.7.0"
402 403

	ymxtpt := &yamux.Transport{
Steven Allen's avatar
Steven Allen committed
404
		AcceptBacklog:          512,
405 406 407 408 409 410 411
		ConnectionWriteTimeout: time.Second * 10,
		KeepAliveInterval:      time.Second * 30,
		EnableKeepAlive:        true,
		MaxStreamWindowSize:    uint32(1024 * 512),
		LogOutput:              ioutil.Discard,
	}

412 413 414 415
	if os.Getenv("YAMUX_DEBUG") != "" {
		ymxtpt.LogOutput = os.Stderr
	}

Steven Allen's avatar
Steven Allen committed
416
	muxers := map[string]smux.Transport{yamuxID: ymxtpt}
417
	if mplexExp {
Steven Allen's avatar
Steven Allen committed
418
		muxers[mplexID] = mplex.DefaultTransport
419 420 421
	}

	// Allow muxer preference order overriding
Steven Allen's avatar
Steven Allen committed
422
	order := []string{yamuxID, mplexID}
423
	if prefs := os.Getenv("LIBP2P_MUX_PREFS"); prefs != "" {
Steven Allen's avatar
Steven Allen committed
424 425 426 427 428 429 430 431 432 433 434 435
		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))
436 437
	}

Steven Allen's avatar
Steven Allen committed
438
	return libp2p.ChainOptions(opts...)
439 440
}

Jeromy's avatar
Jeromy committed
441 442
func setupDiscoveryOption(d config.Discovery) DiscoveryOption {
	if d.MDNS.Enabled {
Jeromy's avatar
Jeromy committed
443
		return func(ctx context.Context, h p2phost.Host) (discovery.Service, error) {
Jeromy's avatar
Jeromy committed
444 445 446
			if d.MDNS.Interval == 0 {
				d.MDNS.Interval = 5
			}
Jeromy's avatar
Jeromy committed
447
			return discovery.NewMdnsService(ctx, h, time.Duration(d.MDNS.Interval)*time.Second, discovery.ServiceTag)
Jeromy's avatar
Jeromy committed
448 449 450 451 452
		}
	}
	return nil
}

453 454
// HandlePeerFound attempts to connect to peer from `PeerInfo`, if it fails
// logs a warning log.
Jeromy's avatar
Jeromy committed
455
func (n *IpfsNode) HandlePeerFound(p pstore.PeerInfo) {
456
	log.Warning("trying peer info: ", p)
457
	ctx, cancel := context.WithTimeout(n.Context(), discoveryConnTimeout)
rht's avatar
rht committed
458
	defer cancel()
459
	if err := n.PeerHost.Connect(ctx, p); err != nil {
460 461 462 463
		log.Warning("Failed to connect to peer found by discovery: ", err)
	}
}

464 465
// 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
466
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption, enablePubsub bool, enableIpnsps bool) error {
467
	// setup diagnostics service
Jeromy's avatar
Jeromy committed
468
	n.Ping = ping.NewPingService(host)
469

Steven Allen's avatar
Steven Allen committed
470
	if enablePubsub || enableIpnsps {
471 472 473 474 475
		cfg, err := n.Repo.Config()
		if err != nil {
			return err
		}

Steven Allen's avatar
Steven Allen committed
476
		var service *pubsub.PubSub
477 478 479 480 481

		switch cfg.Pubsub.Router {
		case "":
			fallthrough
		case "floodsub":
Steven Allen's avatar
Steven Allen committed
482
			service, err = pubsub.NewFloodSub(ctx, host)
483 484

		case "gossipsub":
Steven Allen's avatar
Steven Allen committed
485
			service, err = pubsub.NewGossipSub(ctx, host)
486 487 488 489 490

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

491 492 493
		if err != nil {
			return err
		}
Steven Allen's avatar
Steven Allen committed
494
		n.PubSub = service
495 496
	}

497
	// setup routing service
498
	r, err := routingOption(ctx, host, n.Repo.Datastore(), n.RecordValidator)
Jeromy's avatar
Jeromy committed
499
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
500
		return err
501
	}
Jeromy's avatar
Jeromy committed
502
	n.Routing = r
503

504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
	// 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).
	if dht, ok := r.(*dht.IpfsDHT); ok {
		n.DHT = dht
	}

Steven Allen's avatar
Steven Allen committed
521
	if enableIpnsps {
522 523 524 525
		n.PSRouter = psrouter.NewPubsubValueStore(
			ctx,
			host,
			n.Routing,
Steven Allen's avatar
Steven Allen committed
526
			n.PubSub,
527
			n.RecordValidator,
528 529
		)
		n.Routing = rhelpers.Tiered{
Łukasz Magiera's avatar
Łukasz Magiera committed
530 531 532 533 534 535 536
			Routers: []routing.IpfsRouting{
				// Always check pubsub first.
				&rhelpers.Compose{
					ValueStore: &rhelpers.LimitedValueStore{
						ValueStore: n.PSRouter,
						Namespaces: []string{"ipns"},
					},
537
				},
Łukasz Magiera's avatar
Łukasz Magiera committed
538
				n.Routing,
539
			},
Łukasz Magiera's avatar
Łukasz Magiera committed
540
			Validator: n.RecordValidator,
541 542 543
		}
	}

544 545 546
	// Wrap standard peer host with routing system to allow unknown peer lookups
	n.PeerHost = rhost.Wrap(host, n.Routing)

547
	// setup exchange service
548
	bitswapNetwork := bsnet.NewFromIpfsHost(n.PeerHost, n.Routing)
Łukasz Magiera's avatar
Łukasz Magiera committed
549
	n.Exchange = bitswap.New(ctx, bitswapNetwork, n.Blockstore)
550

551 552 553 554 555
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

556
	// setup name system
557
	n.Namesys = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), size)
558

Jeromy's avatar
Jeromy committed
559
	// setup ipns republishing
560
	return n.setupIpnsRepublisher()
561 562
}

563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
// 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
}

580
func (n *IpfsNode) setupIpnsRepublisher() error {
Jeromy's avatar
Jeromy committed
581 582 583 584
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
585

586
	n.IpnsRepub = ipnsrp.NewRepublisher(n.Namesys, n.Repo.Datastore(), n.PrivateKey, n.Repo.Keystore())
587

Jeromy's avatar
Jeromy committed
588 589 590 591 592 593
	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)
		}

594
		if !u.Debug && (d < time.Minute || d > (time.Hour*24)) {
Jeromy's avatar
Jeromy committed
595 596 597 598 599 600
			return fmt.Errorf("config setting IPNS.RepublishPeriod is not between 1min and 1day: %s", d)
		}

		n.IpnsRepub.Interval = d
	}

601 602 603 604 605 606 607 608 609
	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
610 611
	n.Process().Go(n.IpnsRepub.Run)

612 613 614
	return nil
}

615 616 617 618 619 620 621 622 623 624 625 626
// 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 {
627 628 629
	if n.ctx == nil {
		n.ctx = context.TODO()
	}
630 631 632
	return n.ctx
}

633 634
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
635
func (n *IpfsNode) teardown() error {
636
	log.Debug("core is shutting down...")
637 638
	// 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
639 640
	var closers []io.Closer

641
	// NOTE: The order that objects are added(closed) matters, if an object
Jeromy's avatar
Jeromy committed
642 643 644 645 646
	// 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
647
	}
648

649 650 651 652
	if n.Exchange != nil {
		closers = append(closers, n.Exchange)
	}

653
	if n.Mounts.Ipfs != nil && !n.Mounts.Ipfs.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
654 655
		closers = append(closers, mount.Closer(n.Mounts.Ipfs))
	}
656
	if n.Mounts.Ipns != nil && !n.Mounts.Ipns.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
657 658 659
		closers = append(closers, mount.Closer(n.Mounts.Ipns))
	}

660 661
	if n.DHT != nil {
		closers = append(closers, n.DHT.Process())
Jeromy's avatar
Jeromy committed
662 663
	}

Jeromy's avatar
Jeromy committed
664 665 666 667
	if n.Blocks != nil {
		closers = append(closers, n.Blocks)
	}

Jeromy's avatar
Jeromy committed
668 669
	if n.Bootstrapper != nil {
		closers = append(closers, n.Bootstrapper)
670 671
	}

Jeromy's avatar
Jeromy committed
672 673
	if n.PeerHost != nil {
		closers = append(closers, n.PeerHost)
674
	}
675

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

679
	var errs []error
680
	for _, closer := range closers {
681 682
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
683 684 685 686
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
687 688
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
689 690
}

691
// OnlineMode returns whether or not the IpfsNode is in OnlineMode.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
692
func (n *IpfsNode) OnlineMode() bool {
693
	return n.mode == onlineMode
Brian Tiger Chow's avatar
Brian Tiger Chow committed
694 695
}

696
// SetLocal will set the IpfsNode to local mode
697 698 699 700 701 702 703
func (n *IpfsNode) SetLocal(isLocal bool) {
	if isLocal {
		n.mode = localMode
	}
	n.localModeSet = true
}

704
// LocalMode returns whether or not the IpfsNode is in LocalMode
705 706 707 708 709
func (n *IpfsNode) LocalMode() bool {
	if !n.localModeSet {
		// programmer error should not happen
		panic("local mode not set")
	}
710
	return n.mode == localMode
711 712
}

713
// Bootstrap will set and call the IpfsNodes bootstrap function.
714
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
715
	// TODO what should return value be when in offlineMode?
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
716 717 718 719
	if n.Routing == nil {
		return nil
	}

720 721 722 723 724 725 726
	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
727
		cfg.BootstrapPeers = func() []pstore.PeerInfo {
728
			ps, err := n.loadBootstrapPeers()
729
			if err != nil {
730
				log.Warning("failed to parse bootstrap peers from config")
731 732 733 734 735 736 737 738 739
				return nil
			}
			return ps
		}
	}

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
740 741
}

742 743
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
744
		return errors.New("identity already loaded")
745 746
	}

747 748 749 750 751 752
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	cid := cfg.Identity.PeerID
753
	if cid == "" {
754
		return errors.New("identity was not set in config (was 'ipfs init' run?)")
755 756
	}
	if len(cid) == 0 {
757
		return errors.New("no peer ID in config! (was 'ipfs init' run?)")
758 759
	}

Steven Allen's avatar
Steven Allen committed
760 761 762 763 764 765
	id, err := peer.IDB58Decode(cid)
	if err != nil {
		return fmt.Errorf("peer ID invalid: %s", err)
	}

	n.Identity = id
766 767
	return nil
}
768

769
// GetKey will return a key from the Keystore with name `name`.
770 771 772 773 774 775 776 777
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
778
func (n *IpfsNode) LoadPrivateKey() error {
779
	if n.Identity == "" || n.Peerstore == nil {
Łukasz Magiera's avatar
Łukasz Magiera committed
780
		return errors.New("loaded private key out of order")
781 782
	}

783
	if n.PrivateKey != nil {
Kejie Zhang's avatar
Kejie Zhang committed
784 785
		log.Warning("private key already loaded")
		return nil
786 787
	}

788 789 790 791 792 793
	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
794
	if err != nil {
795
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
796
	}
797

798 799
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
800 801 802 803
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

Jeromy's avatar
Jeromy committed
804
func (n *IpfsNode) loadBootstrapPeers() ([]pstore.PeerInfo, error) {
805 806 807 808 809 810
	cfg, err := n.Repo.Config()
	if err != nil {
		return nil, err
	}

	parsed, err := cfg.BootstrapPeers()
811 812 813 814 815 816
	if err != nil {
		return nil, err
	}
	return toPeerInfos(parsed), nil
}

Jeromy's avatar
Jeromy committed
817
func (n *IpfsNode) loadFilesRoot() error {
Jeromy's avatar
Jeromy committed
818
	dsk := ds.NewKey("/local/filesroot")
819
	pf := func(ctx context.Context, c cid.Cid) error {
Jeromy's avatar
Jeromy committed
820
		return n.Repo.Datastore().Put(dsk, c.Bytes())
Jeromy's avatar
Jeromy committed
821 822
	}

823
	var nd *merkledag.ProtoNode
Jeromy's avatar
Jeromy committed
824 825 826 827
	val, err := n.Repo.Datastore().Get(dsk)

	switch {
	case err == ds.ErrNotFound || val == nil:
828
		nd = ft.EmptyDirNode()
829
		err := n.DAG.Add(n.Context(), nd)
Jeromy's avatar
Jeromy committed
830 831 832 833
		if err != nil {
			return fmt.Errorf("failure writing to dagstore: %s", err)
		}
	case err == nil:
834
		c, err := cid.Cast(val)
Jeromy's avatar
Jeromy committed
835 836 837 838
		if err != nil {
			return err
		}

839
		rnd, err := n.DAG.Get(n.Context(), c)
Jeromy's avatar
Jeromy committed
840 841 842
		if err != nil {
			return fmt.Errorf("error loading filesroot from DAG: %s", err)
		}
843 844 845 846 847 848 849

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

		nd = pbnd
Jeromy's avatar
Jeromy committed
850 851 852 853 854 855 856 857 858 859 860 861 862
	default:
		return err
	}

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

	n.FilesRoot = mr
	return nil
}

863 864
// SetupOfflineRouting instantiates a routing system in offline mode. This is
// primarily used for offline ipns modifications.
Jeromy's avatar
Jeromy committed
865
func (n *IpfsNode) SetupOfflineRouting() error {
866 867 868 869
	if n.Routing != nil {
		// Routing was already set up
		return nil
	}
870 871

	// TODO: move this somewhere else.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
872
	err := n.LoadPrivateKey()
Jeromy's avatar
Jeromy committed
873 874 875 876
	if err != nil {
		return err
	}

877
	n.Routing = offroute.NewOfflineRouter(n.Repo.Datastore(), n.RecordValidator)
878

879 880 881 882 883 884
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

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

886
	return nil
887 888 889 890
}

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

895 896 897 898
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
899

900 901
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
902 903
	}

904
	return sk, nil
905
}
906

907
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
908 909 910
	var listen []ma.Multiaddr
	for _, addr := range cfg.Addresses.Swarm {
		maddr, err := ma.NewMultiaddr(addr)
911
		if err != nil {
Łukasz Magiera's avatar
Łukasz Magiera committed
912
			return nil, fmt.Errorf("failure to parse config.Addresses.Swarm: %s", cfg.Addresses.Swarm)
913
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
914
		listen = append(listen, maddr)
915 916 917 918
	}

	return listen, nil
}
919

Kevin Atkinson's avatar
Kevin Atkinson committed
920
type ConstructPeerHostOpts struct {
921
	AddrsFactory      p2pbhost.AddrsFactory
vyzo's avatar
vyzo committed
922 923 924
	DisableNatPortMap bool
	DisableRelay      bool
	EnableRelayHop    bool
Jeromy's avatar
Jeromy committed
925
	ConnectionManager ifconnmgr.ConnManager
Kevin Atkinson's avatar
Kevin Atkinson committed
926 927
}

Steven Allen's avatar
Steven Allen committed
928
type HostOption func(ctx context.Context, id peer.ID, ps pstore.Peerstore, options ...libp2p.Option) (p2phost.Host, error)
Jeromy's avatar
Jeromy committed
929 930 931

var DefaultHostOption HostOption = constructPeerHost

932
// isolates the complex initialization steps
Steven Allen's avatar
Steven Allen committed
933 934 935 936
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())
937
	}
Steven Allen's avatar
Steven Allen committed
938 939
	options = append([]libp2p.Option{libp2p.Identity(pkey), libp2p.Peerstore(ps)}, options...)
	return libp2p.New(ctx, options...)
940 941
}

942 943 944 945 946 947 948 949 950 951 952 953
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
}

954 955 956 957 958 959
func composeAddrsFactory(f, g p2pbhost.AddrsFactory) p2pbhost.AddrsFactory {
	return func(addrs []ma.Multiaddr) []ma.Multiaddr {
		return f(g(addrs))
	}
}

960
// startListening on the network addresses
Łukasz Magiera's avatar
Łukasz Magiera committed
961
func startListening(host p2phost.Host, cfg *config.Config) error {
962 963
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
964
		return err
965 966 967
	}

	// Actually start listening:
Steven Allen's avatar
Steven Allen committed
968
	if err := host.Network().Listen(listenAddrs...); err != nil {
969
		return err
970 971
	}

972
	// list out our addresses
973
	addrs, err := host.Network().InterfaceListenAddresses()
974
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
975
		return err
976
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
977
	log.Infof("Swarm listening at: %s", addrs)
978
	return nil
979
}
980

981 982 983 984 985 986
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),
	)
987
}
Jeromy's avatar
Jeromy committed
988

989 990 991 992 993 994 995
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
996 997
}

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

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

1002
var DHTOption RoutingOption = constructDHTRouting
Jeromy's avatar
Jeromy committed
1003
var DHTClientOption RoutingOption = constructClientDHTRouting
1004
var NilRouterOption RoutingOption = nilrouting.ConstructNilRouting