core.go 27.4 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
	ft "gx/ipfs/QmPL8bYtbACcSFFiSr4s2du7Na382NxRADR8hC7D9FkEA2/go-unixfs"
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"
37
	peer "gx/ipfs/QmQsErDt8Qgw1XrsXf2BpEzDgGWtB1YLsTAARBup5b6B9W/go-libp2p-peer"
38
	exchange "gx/ipfs/QmR1nncPsZR14A4hWr39mq8Lm7BGgS68bHVT9nop8NpWEM/go-ipfs-exchange-interface"
Steven Allen's avatar
Steven Allen committed
39
	logging "gx/ipfs/QmRREK2CAZ5Re2Bd9zZFG6FeYDppUWt5cMgsoUEp3ktgSr/go-log"
Steven Allen's avatar
Steven Allen committed
40
	quic "gx/ipfs/QmRgFWjY1idcimoGvSAzNenfptnciZnPHuW3P2yq9VgaqA/go-libp2p-quic-transport"
Steven Allen's avatar
Steven Allen committed
41
	mfs "gx/ipfs/QmRkrpnhZqDxTxwGCsDbuZMr7uCFZHH6SGfrcjgEQwxF3t/go-mfs"
42
	goprocess "gx/ipfs/QmSF8fPo3jgVBAy8fpdjjYqgG87dkJgUprRBHRd2tmfgpP/goprocess"
43
	rhelpers "gx/ipfs/QmSFHnkFwayfnRKK1Z8jBUauMYMkHrZpQyvbxkFoPYb1VQ/go-libp2p-routing-helpers"
Jeromy's avatar
Jeromy committed
44
	mamask "gx/ipfs/QmSMZwvs3n4GBikZ7hKzT17c3bk65FmyZo2JqtJ16swqCv/multiaddr-filter"
Steven Allen's avatar
Steven Allen committed
45 46
	nilrouting "gx/ipfs/QmSNe4MWVxZWk6UxxW2z2EKofFo4GdFzud1vfn1iVby3mj/go-ipfs-routing/none"
	offroute "gx/ipfs/QmSNe4MWVxZWk6UxxW2z2EKofFo4GdFzud1vfn1iVby3mj/go-ipfs-routing/offline"
Steven Allen's avatar
Steven Allen committed
47
	mafilter "gx/ipfs/QmSW4uNHbvQia8iZDXzbwjiyHQtnyo9aFqfQAMasj3TJ6Y/go-maddr-filter"
Steven Allen's avatar
Steven Allen committed
48 49 50 51 52 53 54
	ds "gx/ipfs/QmSpg1CvpXQQow5ernt1gNBXaXV6yxyNqi7XoeerWfzB5w/go-datastore"
	libp2p "gx/ipfs/QmUEqyXr97aUbNmQADHYNknjwjjdVpJXEt1UZXmSG81EV4/go-libp2p"
	discovery "gx/ipfs/QmUEqyXr97aUbNmQADHYNknjwjjdVpJXEt1UZXmSG81EV4/go-libp2p/p2p/discovery"
	p2pbhost "gx/ipfs/QmUEqyXr97aUbNmQADHYNknjwjjdVpJXEt1UZXmSG81EV4/go-libp2p/p2p/host/basic"
	rhost "gx/ipfs/QmUEqyXr97aUbNmQADHYNknjwjjdVpJXEt1UZXmSG81EV4/go-libp2p/p2p/host/routed"
	identify "gx/ipfs/QmUEqyXr97aUbNmQADHYNknjwjjdVpJXEt1UZXmSG81EV4/go-libp2p/p2p/protocol/identify"
	ping "gx/ipfs/QmUEqyXr97aUbNmQADHYNknjwjjdVpJXEt1UZXmSG81EV4/go-libp2p/p2p/protocol/ping"
Steven Allen's avatar
Steven Allen committed
55 56
	bitswap "gx/ipfs/QmUyaGN3WPr3CTLai7DBvMikagK45V4fUi8p8cNRaJQoU1/go-bitswap"
	bsnet "gx/ipfs/QmUyaGN3WPr3CTLai7DBvMikagK45V4fUi8p8cNRaJQoU1/go-bitswap/network"
Steven Allen's avatar
Steven Allen committed
57 58 59
	connmgr "gx/ipfs/QmW9pfNup4hcWxyMxDGSe25tG9xepvLqqmQUoTDaawzTZe/go-libp2p-connmgr"
	ifconnmgr "gx/ipfs/QmWGGN1nysi1qgqto31bENwESkmZBY4YGK4sZC3qhnqhSv/go-libp2p-interface-connmgr"
	circuit "gx/ipfs/QmWX6RySJ3yAYmfjLSw1LtRZnDh5oVeA9kM3scNQJkysqa/go-libp2p-circuit"
Steven Allen's avatar
Steven Allen committed
60 61
	"gx/ipfs/QmX7uSbkNz76yNwBhuwYwRbhihLnJqM73VTCjS3UMJud9A/go-path/resolver"
	merkledag "gx/ipfs/QmXv5mwmQ74r4aiHcNeQ4GAmfB3aWJuqaE4WyDfDfvkgLM/go-merkledag"
Steven Allen's avatar
Steven Allen committed
62
	floodsub "gx/ipfs/QmY1L5krVk8dv8d74uESmJTXGpoigVYqBVxXXz1aS8aFSb/go-libp2p-floodsub"
Steven Allen's avatar
Steven Allen committed
63
	smux "gx/ipfs/QmY9JXR3FupnYAYJWK9aMr9bCpqWKcToQ1tz8DVGTrHpHw/go-stream-muxer"
Steven Allen's avatar
Steven Allen committed
64
	config "gx/ipfs/QmYVqYJTVjetcf1guieEgWpK1PZtHPytP624vKzTF1P3r2/go-ipfs-config"
Steven Allen's avatar
Steven Allen committed
65
	ma "gx/ipfs/QmYmsdtJ3HsodkePE3eU3TsCaP2YvPZJ4LoXnNkDE5Tpt7/go-multiaddr"
Steven Allen's avatar
Steven Allen committed
66
	psrouter "gx/ipfs/QmYz19WrC7TskcVrSbH6sdPd1PvPMAnM9dEUnSTz4pwCWG/go-libp2p-pubsub-router"
Steven Allen's avatar
Steven Allen committed
67
	pnet "gx/ipfs/QmZaQ3K9PRd5sYYoG1xbTGPtd3N7TYiKBRmcBUTsx8HVET/go-libp2p-pnet"
Steven Allen's avatar
Steven Allen committed
68
	bserv "gx/ipfs/Qma2KhbQarYTkmSJAeaMGRAg8HAXAhEWK8ge4SReG7ZSD3/go-blockservice"
69 70
	dht "gx/ipfs/QmaXYSwxqJsX3EoGb1ZV2toZ9fXc8hWJPaBW1XAp1h2Tsp/go-libp2p-kad-dht"
	dhtopts "gx/ipfs/QmaXYSwxqJsX3EoGb1ZV2toZ9fXc8hWJPaBW1XAp1h2Tsp/go-libp2p-kad-dht/opts"
Steven Allen's avatar
Steven Allen committed
71
	yamux "gx/ipfs/QmcsgrV3nCAKjiHKZhKVXWc4oY3WBECJCqahXEMpHeMrev/go-smux-yamux"
72
	ipld "gx/ipfs/QmdDXJs4axxefSPgK6Y1QhpJWKuDPnGJiqgq4uncb4rFHL/go-ipld-format"
73
	record "gx/ipfs/QmdHb9aBELnQKTVhvvA3hsQbRgUAwsWUzBP2vZ6Y5FBYvE/go-libp2p-record"
74
	routing "gx/ipfs/QmdKS5YtmuSWKuLLgbHG176mS3VX3AKiyVmaaiAfvgcuch/go-libp2p-routing"
Steven Allen's avatar
Steven Allen committed
75
	pstore "gx/ipfs/Qmda4cPRvSRyox3SqgJN6DfSZGU5TtHufPTp9uXjFj71X6/go-libp2p-peerstore"
76
	metrics "gx/ipfs/QmdhwKw53CTV8EJSAsR1bpmMT5kXiWBgeAyv1EXeeDiXqR/go-libp2p-metrics"
Steven Allen's avatar
Steven Allen committed
77
	mplex "gx/ipfs/QmdiBZzwGtN2yHJrWD9ojQ7ASS48nv7BcojWLkYd1ZtrV2/go-smux-multiplex"
Steven Allen's avatar
Steven Allen committed
78
	p2phost "gx/ipfs/QmeMYW7Nj8jnnEfs9qhm7SxKkoDPUWXu3MsxX6BFwz34tf/go-libp2p-host"
Steven Allen's avatar
Steven Allen committed
79
	bstore "gx/ipfs/QmegPGspn3RpTMQ23Fd3GVVMopo1zsEMurudbFMZ5UXBLH/go-ipfs-blockstore"
Ł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

Jeromy's avatar
Jeromy committed
140
	Floodsub *floodsub.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 248 249 250 251
	if !cfg.Swarm.DisableRelay {
		var opts []circuit.RelayOpt
		if cfg.Swarm.EnableRelayHop {
			opts = append(opts, circuit.OptHop)
		}
		libp2pOpts = append(libp2pOpts, libp2p.EnableRelay(opts...))
	}

252 253 254
	// disable the default listen addrs
	libp2pOpts = append(libp2pOpts, libp2p.NoListenAddrs)

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

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

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

264
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
265
		return err
266 267
	}

268
	if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption, pubsub, ipnsps); err != nil {
269
		return err
270 271 272
	}

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

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

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

290
	return n.Bootstrap(DefaultBootstrapConfig)
291 292
}

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

318
	var keyProvider rp.KeyChanFunc
Łukasz Magiera's avatar
Łukasz Magiera committed
319 320 321 322 323 324 325 326 327 328 329

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

334 335 336 337 338
	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
339 340
		}

341
		reproviderInterval = dur
Łukasz Magiera's avatar
Łukasz Magiera committed
342 343
	}

344 345
	go n.Reprovider.Run(reproviderInterval)

Łukasz Magiera's avatar
Łukasz Magiera committed
346 347 348
	return nil
}

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

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

408 409 410 411
	if os.Getenv("YAMUX_DEBUG") != "" {
		ymxtpt.LogOutput = os.Stderr
	}

Steven Allen's avatar
Steven Allen committed
412
	muxers := map[string]smux.Transport{yamuxID: ymxtpt}
413
	if mplexExp {
Steven Allen's avatar
Steven Allen committed
414
		muxers[mplexID] = mplex.DefaultTransport
415 416 417
	}

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

Steven Allen's avatar
Steven Allen committed
434
	return libp2p.ChainOptions(opts...)
435 436
}

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

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

460 461
// startOnlineServicesWithHost  is the set of services which need to be
// initialized with the host and _before_ we start listening.
462
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption, pubsub bool, ipnsps bool) error {
463
	// setup diagnostics service
Jeromy's avatar
Jeromy committed
464
	n.Ping = ping.NewPingService(host)
465

466
	if pubsub || ipnsps {
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
		cfg, err := n.Repo.Config()
		if err != nil {
			return err
		}

		var service *floodsub.PubSub

		switch cfg.Pubsub.Router {
		case "":
			fallthrough
		case "floodsub":
			service, err = floodsub.NewFloodSub(ctx, host)

		case "gossipsub":
			service, err = floodsub.NewGossipSub(ctx, host)

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

487 488 489 490 491 492
		if err != nil {
			return err
		}
		n.Floodsub = service
	}

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

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
	// 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
	}

517 518 519 520 521 522
	if ipnsps {
		n.PSRouter = psrouter.NewPubsubValueStore(
			ctx,
			host,
			n.Routing,
			n.Floodsub,
523
			n.RecordValidator,
524 525 526 527 528 529 530 531 532 533 534 535 536
		)
		n.Routing = rhelpers.Tiered{
			// Always check pubsub first.
			&rhelpers.Compose{
				ValueStore: &rhelpers.LimitedValueStore{
					ValueStore: n.PSRouter,
					Namespaces: []string{"ipns"},
				},
			},
			n.Routing,
		}
	}

537 538 539
	// Wrap standard peer host with routing system to allow unknown peer lookups
	n.PeerHost = rhost.Wrap(host, n.Routing)

540
	// setup exchange service
541
	bitswapNetwork := bsnet.NewFromIpfsHost(n.PeerHost, n.Routing)
Łukasz Magiera's avatar
Łukasz Magiera committed
542
	n.Exchange = bitswap.New(ctx, bitswapNetwork, n.Blockstore)
543

544 545 546 547 548
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

549
	// setup name system
550
	n.Namesys = namesys.NewNameSystem(n.Routing, n.Repo.Datastore(), size)
551

Jeromy's avatar
Jeromy committed
552
	// setup ipns republishing
553
	return n.setupIpnsRepublisher()
554 555
}

556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
// 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
}

573
func (n *IpfsNode) setupIpnsRepublisher() error {
Jeromy's avatar
Jeromy committed
574 575 576 577
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}
578

579
	n.IpnsRepub = ipnsrp.NewRepublisher(n.Namesys, n.Repo.Datastore(), n.PrivateKey, n.Repo.Keystore())
580

Jeromy's avatar
Jeromy committed
581 582 583 584 585 586
	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)
		}

587
		if !u.Debug && (d < time.Minute || d > (time.Hour*24)) {
Jeromy's avatar
Jeromy committed
588 589 590 591 592 593
			return fmt.Errorf("config setting IPNS.RepublishPeriod is not between 1min and 1day: %s", d)
		}

		n.IpnsRepub.Interval = d
	}

594 595 596 597 598 599 600 601 602
	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
603 604
	n.Process().Go(n.IpnsRepub.Run)

605 606 607
	return nil
}

608 609 610 611 612 613 614 615 616 617 618 619
// 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 {
620 621 622
	if n.ctx == nil {
		n.ctx = context.TODO()
	}
623 624 625
	return n.ctx
}

626 627
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
628
func (n *IpfsNode) teardown() error {
629
	log.Debug("core is shutting down...")
630 631
	// 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
632 633
	var closers []io.Closer

634
	// NOTE: The order that objects are added(closed) matters, if an object
Jeromy's avatar
Jeromy committed
635 636 637 638 639
	// 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
640
	}
641

642 643 644 645
	if n.Exchange != nil {
		closers = append(closers, n.Exchange)
	}

646
	if n.Mounts.Ipfs != nil && !n.Mounts.Ipfs.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
647 648
		closers = append(closers, mount.Closer(n.Mounts.Ipfs))
	}
649
	if n.Mounts.Ipns != nil && !n.Mounts.Ipns.IsActive() {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
650 651 652
		closers = append(closers, mount.Closer(n.Mounts.Ipns))
	}

653 654
	if n.DHT != nil {
		closers = append(closers, n.DHT.Process())
Jeromy's avatar
Jeromy committed
655 656
	}

Jeromy's avatar
Jeromy committed
657 658 659 660
	if n.Blocks != nil {
		closers = append(closers, n.Blocks)
	}

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

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

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

672
	var errs []error
673
	for _, closer := range closers {
674 675
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
676 677 678 679
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
680 681
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
682 683
}

684
// OnlineMode returns whether or not the IpfsNode is in OnlineMode.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
685
func (n *IpfsNode) OnlineMode() bool {
686
	return n.mode == onlineMode
Brian Tiger Chow's avatar
Brian Tiger Chow committed
687 688
}

689
// SetLocal will set the IpfsNode to local mode
690 691 692 693 694 695 696
func (n *IpfsNode) SetLocal(isLocal bool) {
	if isLocal {
		n.mode = localMode
	}
	n.localModeSet = true
}

697
// LocalMode returns whether or not the IpfsNode is in LocalMode
698 699 700 701 702
func (n *IpfsNode) LocalMode() bool {
	if !n.localModeSet {
		// programmer error should not happen
		panic("local mode not set")
	}
703
	return n.mode == localMode
704 705
}

706
// Bootstrap will set and call the IpfsNodes bootstrap function.
707
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
708
	// TODO what should return value be when in offlineMode?
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
709 710 711 712
	if n.Routing == nil {
		return nil
	}

713 714 715 716 717 718 719
	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
720
		cfg.BootstrapPeers = func() []pstore.PeerInfo {
721
			ps, err := n.loadBootstrapPeers()
722
			if err != nil {
723
				log.Warning("failed to parse bootstrap peers from config")
724 725 726 727 728 729 730 731 732
				return nil
			}
			return ps
		}
	}

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
733 734
}

735 736
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
737
		return errors.New("identity already loaded")
738 739
	}

740 741 742 743 744 745
	cfg, err := n.Repo.Config()
	if err != nil {
		return err
	}

	cid := cfg.Identity.PeerID
746
	if cid == "" {
747
		return errors.New("identity was not set in config (was 'ipfs init' run?)")
748 749
	}
	if len(cid) == 0 {
750
		return errors.New("no peer ID in config! (was 'ipfs init' run?)")
751 752
	}

Steven Allen's avatar
Steven Allen committed
753 754 755 756 757 758
	id, err := peer.IDB58Decode(cid)
	if err != nil {
		return fmt.Errorf("peer ID invalid: %s", err)
	}

	n.Identity = id
759 760
	return nil
}
761

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

776
	if n.PrivateKey != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
777
		return errors.New("private key already loaded")
778 779
	}

780 781 782 783 784 785
	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
786
	if err != nil {
787
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
788
	}
789

790 791
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
792 793 794 795
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

Jeromy's avatar
Jeromy committed
796
func (n *IpfsNode) loadBootstrapPeers() ([]pstore.PeerInfo, error) {
797 798 799 800 801 802
	cfg, err := n.Repo.Config()
	if err != nil {
		return nil, err
	}

	parsed, err := cfg.BootstrapPeers()
803 804 805 806 807 808
	if err != nil {
		return nil, err
	}
	return toPeerInfos(parsed), nil
}

Jeromy's avatar
Jeromy committed
809
func (n *IpfsNode) loadFilesRoot() error {
Jeromy's avatar
Jeromy committed
810
	dsk := ds.NewKey("/local/filesroot")
811
	pf := func(ctx context.Context, c cid.Cid) error {
Jeromy's avatar
Jeromy committed
812
		return n.Repo.Datastore().Put(dsk, c.Bytes())
Jeromy's avatar
Jeromy committed
813 814
	}

815
	var nd *merkledag.ProtoNode
Jeromy's avatar
Jeromy committed
816 817 818 819
	val, err := n.Repo.Datastore().Get(dsk)

	switch {
	case err == ds.ErrNotFound || val == nil:
820
		nd = ft.EmptyDirNode()
821
		err := n.DAG.Add(n.Context(), nd)
Jeromy's avatar
Jeromy committed
822 823 824 825
		if err != nil {
			return fmt.Errorf("failure writing to dagstore: %s", err)
		}
	case err == nil:
826
		c, err := cid.Cast(val)
Jeromy's avatar
Jeromy committed
827 828 829 830
		if err != nil {
			return err
		}

831
		rnd, err := n.DAG.Get(n.Context(), c)
Jeromy's avatar
Jeromy committed
832 833 834
		if err != nil {
			return fmt.Errorf("error loading filesroot from DAG: %s", err)
		}
835 836 837 838 839 840 841

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

		nd = pbnd
Jeromy's avatar
Jeromy committed
842 843 844 845 846 847 848 849 850 851 852 853 854
	default:
		return err
	}

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

	n.FilesRoot = mr
	return nil
}

855 856
// SetupOfflineRouting instantiates a routing system in offline mode. This is
// primarily used for offline ipns modifications.
Jeromy's avatar
Jeromy committed
857
func (n *IpfsNode) SetupOfflineRouting() error {
858 859 860 861
	if n.Routing != nil {
		// Routing was already set up
		return nil
	}
862 863

	// TODO: move this somewhere else.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
864
	err := n.LoadPrivateKey()
Jeromy's avatar
Jeromy committed
865 866 867 868
	if err != nil {
		return err
	}

869
	n.Routing = offroute.NewOfflineRouter(n.Repo.Datastore(), n.RecordValidator)
870

871 872 873 874 875 876
	size, err := n.getCacheSize()
	if err != nil {
		return err
	}

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

878
	return nil
879 880 881 882
}

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

887 888 889 890
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
891

892 893
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
894 895
	}

896
	return sk, nil
897
}
898

899
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
900 901 902
	var listen []ma.Multiaddr
	for _, addr := range cfg.Addresses.Swarm {
		maddr, err := ma.NewMultiaddr(addr)
903
		if err != nil {
Łukasz Magiera's avatar
Łukasz Magiera committed
904
			return nil, fmt.Errorf("failure to parse config.Addresses.Swarm: %s", cfg.Addresses.Swarm)
905
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
906
		listen = append(listen, maddr)
907 908 909 910
	}

	return listen, nil
}
911

Kevin Atkinson's avatar
Kevin Atkinson committed
912
type ConstructPeerHostOpts struct {
913
	AddrsFactory      p2pbhost.AddrsFactory
vyzo's avatar
vyzo committed
914 915 916
	DisableNatPortMap bool
	DisableRelay      bool
	EnableRelayHop    bool
Jeromy's avatar
Jeromy committed
917
	ConnectionManager ifconnmgr.ConnManager
Kevin Atkinson's avatar
Kevin Atkinson committed
918 919
}

Steven Allen's avatar
Steven Allen committed
920
type HostOption func(ctx context.Context, id peer.ID, ps pstore.Peerstore, options ...libp2p.Option) (p2phost.Host, error)
Jeromy's avatar
Jeromy committed
921 922 923

var DefaultHostOption HostOption = constructPeerHost

924
// isolates the complex initialization steps
Steven Allen's avatar
Steven Allen committed
925 926 927 928
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())
929
	}
Steven Allen's avatar
Steven Allen committed
930 931
	options = append([]libp2p.Option{libp2p.Identity(pkey), libp2p.Peerstore(ps)}, options...)
	return libp2p.New(ctx, options...)
932 933
}

934 935 936 937 938 939 940 941 942 943 944 945
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
}

946 947 948 949 950 951
func composeAddrsFactory(f, g p2pbhost.AddrsFactory) p2pbhost.AddrsFactory {
	return func(addrs []ma.Multiaddr) []ma.Multiaddr {
		return f(g(addrs))
	}
}

952
// startListening on the network addresses
Łukasz Magiera's avatar
Łukasz Magiera committed
953
func startListening(host p2phost.Host, cfg *config.Config) error {
954 955
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
956
		return err
957 958 959
	}

	// Actually start listening:
Steven Allen's avatar
Steven Allen committed
960
	if err := host.Network().Listen(listenAddrs...); err != nil {
961
		return err
962 963
	}

964
	// list out our addresses
965
	addrs, err := host.Network().InterfaceListenAddresses()
966
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
967
		return err
968
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
969
	log.Infof("Swarm listening at: %s", addrs)
970
	return nil
971
}
972

973 974 975 976 977 978
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),
	)
979
}
Jeromy's avatar
Jeromy committed
980

981 982 983 984 985 986 987
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
988 989
}

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

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

994
var DHTOption RoutingOption = constructDHTRouting
Jeromy's avatar
Jeromy committed
995
var DHTClientOption RoutingOption = constructClientDHTRouting
996
var NilRouterOption RoutingOption = nilrouting.ConstructNilRouting