core.go 13.9 KB
Newer Older
Jeromy's avatar
Jeromy committed
1 2
// package core implements the IpfsNode object and methods for constructing
// and properly setting it up.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
3 4
package core

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
5
import (
Juan Batiz-Benet's avatar
go fmt  
Juan Batiz-Benet committed
6
	"fmt"
7
	"io"
8
	"time"
9

10
	b58 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-base58"
11
	ctxgroup "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-ctxgroup"
12
	ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
13
	ma "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
14
	context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
15 16 17 18 19 20 21
	eventlog "github.com/jbenet/go-ipfs/thirdparty/eventlog"
	debugerror "github.com/jbenet/go-ipfs/util/debugerror"

	diag "github.com/jbenet/go-ipfs/diagnostics"
	ic "github.com/jbenet/go-ipfs/p2p/crypto"
	p2phost "github.com/jbenet/go-ipfs/p2p/host"
	p2pbhost "github.com/jbenet/go-ipfs/p2p/host/basic"
22
	rhost "github.com/jbenet/go-ipfs/p2p/host/routed"
23 24 25 26 27 28 29 30
	swarm "github.com/jbenet/go-ipfs/p2p/net/swarm"
	addrutil "github.com/jbenet/go-ipfs/p2p/net/swarm/addr"
	peer "github.com/jbenet/go-ipfs/p2p/peer"

	routing "github.com/jbenet/go-ipfs/routing"
	dht "github.com/jbenet/go-ipfs/routing/dht"
	offroute "github.com/jbenet/go-ipfs/routing/offline"

31
	bstore "github.com/jbenet/go-ipfs/blocks/blockstore"
32
	bserv "github.com/jbenet/go-ipfs/blockservice"
33 34
	exchange "github.com/jbenet/go-ipfs/exchange"
	bitswap "github.com/jbenet/go-ipfs/exchange/bitswap"
35
	bsnet "github.com/jbenet/go-ipfs/exchange/bitswap/network"
36
	offline "github.com/jbenet/go-ipfs/exchange/offline"
Jeromy's avatar
Jeromy committed
37
	rp "github.com/jbenet/go-ipfs/exchange/reprovide"
38

39
	mount "github.com/jbenet/go-ipfs/fuse/mount"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
40
	merkledag "github.com/jbenet/go-ipfs/merkledag"
Jeromy's avatar
Jeromy committed
41
	namesys "github.com/jbenet/go-ipfs/namesys"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
42
	path "github.com/jbenet/go-ipfs/path"
Jeromy's avatar
Jeromy committed
43
	pin "github.com/jbenet/go-ipfs/pin"
44
	repo "github.com/jbenet/go-ipfs/repo"
45
	config "github.com/jbenet/go-ipfs/repo/config"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
46 47
)

Jeromy's avatar
Jeromy committed
48
const IpnsValidatorTag = "ipns"
49
const kSizeBlockstoreWriteCache = 100
50
const kReprovideFrequency = time.Hour * 12
Jeromy's avatar
Jeromy committed
51

Brian Tiger Chow's avatar
Brian Tiger Chow committed
52
var log = eventlog.Logger("core")
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
53

54 55 56 57 58 59 60 61 62
type mode int

const (
	// zero value is not a valid mode, must be explicitly set
	invalidMode mode = iota
	offlineMode
	onlineMode
)

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

66
	// Self
67
	Identity peer.ID // the local node's identity
68

69
	Repo repo.Repo
70 71

	// Local node
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
72 73 74
	Pinning    pin.Pinner // the pinning manager
	Mounts     Mounts     // current mount state, if any.
	PrivateKey ic.PrivKey // the local node's private Key
75 76

	// Services
77 78 79 80 81 82 83
	Peerstore  peer.Peerstore       // storage for other Peer instances
	Blockstore bstore.Blockstore    // the block store (lower level)
	Blocks     *bserv.BlockService  // the block service, get/add blocks.
	DAG        merkledag.DAGService // the merkle dag service, get/add objects.
	Resolver   *path.Resolver       // the path resolution system

	// Online
84 85 86 87 88 89 90
	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
	Diagnostics  *diag.Diagnostics   // the diagnostics service
	Reprovider   *rp.Reprovider      // the value reprovider system
91

92
	ctxgroup.ContextGroup
93

94
	mode mode
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
95 96
}

97 98 99 100 101 102 103 104
// 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
}

105
type ConfigOption func(ctx context.Context) (*IpfsNode, error)
106

107 108 109 110 111 112 113 114 115 116
func NewIPFSNode(parent context.Context, option ConfigOption) (*IpfsNode, error) {
	ctxg := ctxgroup.WithContext(parent)
	ctx := ctxg.Context()
	success := false // flip to true after all sub-system inits succeed
	defer func() {
		if !success {
			ctxg.Close()
		}
	}()

Brian Tiger Chow's avatar
Brian Tiger Chow committed
117
	node, err := option(ctx)
118 119 120
	if err != nil {
		return nil, err
	}
121 122
	node.ContextGroup = ctxg
	ctxg.SetTeardown(node.teardown)
123 124 125 126 127

	// Need to make sure it's perfectly clear 1) which variables are expected
	// to be initialized at this point, and 2) which variables will be
	// initialized after this point.

128 129 130 131
	node.Blocks, err = bserv.New(node.Blockstore, node.Exchange)
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
132 133 134
	if node.Peerstore == nil {
		node.Peerstore = peer.NewPeerstore()
	}
135
	node.DAG = merkledag.NewDAGService(node.Blocks)
136
	node.Pinning, err = pin.LoadPinner(node.Repo.Datastore(), node.DAG)
137
	if err != nil {
138
		node.Pinning = pin.NewPinner(node.Repo.Datastore(), node.DAG)
139 140
	}
	node.Resolver = &path.Resolver{DAG: node.DAG}
141
	success = true
Brian Tiger Chow's avatar
Brian Tiger Chow committed
142
	return node, nil
143 144
}

145 146
func Offline(r repo.Repo) ConfigOption {
	return Standard(r, false)
147 148
}

Jeromy's avatar
Jeromy committed
149 150
func OnlineWithOptions(r repo.Repo, router RoutingOption, ho HostOption) ConfigOption {
	return standardWithRouting(r, true, router, ho)
151 152
}

153 154
func Online(r repo.Repo) ConfigOption {
	return Standard(r, true)
155 156 157
}

// DEPRECATED: use Online, Offline functions
158
func Standard(r repo.Repo, online bool) ConfigOption {
Jeromy's avatar
Jeromy committed
159
	return standardWithRouting(r, online, DHTOption, DefaultHostOption)
160 161 162
}

// TODO refactor so maybeRouter isn't special-cased in this way
Jeromy's avatar
Jeromy committed
163
func standardWithRouting(r repo.Repo, online bool, routingOption RoutingOption, hostOption HostOption) ConfigOption {
164
	return func(ctx context.Context) (n *IpfsNode, err error) {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
165 166 167 168 169 170 171 172 173 174 175 176
		// FIXME perform node construction in the main constructor so it isn't
		// necessary to perform this teardown in this scope.
		success := false
		defer func() {
			if !success && n != nil {
				n.teardown()
			}
		}()

		// TODO move as much of node initialization as possible into
		// NewIPFSNode. The larger these config options are, the harder it is
		// to test all node construction code paths.
177

178 179
		if r == nil {
			return nil, debugerror.Errorf("repo required")
180 181
		}
		n = &IpfsNode{
182 183 184 185 186 187
			mode: func() mode {
				if online {
					return onlineMode
				}
				return offlineMode
			}(),
188
			Repo: r,
189
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
190

191 192
		// setup Peerstore
		n.Peerstore = peer.NewPeerstore()
193

194 195 196 197
		// setup local peer ID (private key is loaded in online setup)
		if err := n.loadID(); err != nil {
			return nil, err
		}
Juan Batiz-Benet's avatar
go fmt  
Juan Batiz-Benet committed
198

199
		n.Blockstore, err = bstore.WriteCached(bstore.NewBlockstore(n.Repo.Datastore()), kSizeBlockstoreWriteCache)
200 201 202
		if err != nil {
			return nil, debugerror.Wrap(err)
		}
203

204
		if online {
Jeromy's avatar
Jeromy committed
205
			if err := n.startOnlineServices(ctx, routingOption, hostOption); err != nil {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
206
				return nil, err
207 208 209 210
			}
		} else {
			n.Exchange = offline.Exchange(n.Blockstore)
		}
211

Brian Tiger Chow's avatar
Brian Tiger Chow committed
212
		success = true
213
		return n, nil
Jeromy's avatar
Jeromy committed
214
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
215
}
216

Jeromy's avatar
Jeromy committed
217
func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption RoutingOption, hostOption HostOption) error {
218 219 220 221 222 223

	if n.PeerHost != nil { // already online.
		return debugerror.New("node already online")
	}

	// load private key
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
224
	if err := n.LoadPrivateKey(); err != nil {
225 226 227
		return err
	}

Jeromy's avatar
Jeromy committed
228
	peerhost, err := hostOption(ctx, n.Identity, n.Peerstore)
229 230
	if err != nil {
		return debugerror.Wrap(err)
231 232
	}

233
	if err := n.startOnlineServicesWithHost(ctx, peerhost, routingOption); err != nil {
234
		return err
235 236 237 238 239 240
	}

	// Ok, now we're ready to listen.
	if err := startListening(ctx, n.PeerHost, n.Repo.Config()); err != nil {
		return debugerror.Wrap(err)
	}
241

242
	n.Reprovider = rp.NewReprovider(n.Routing, n.Blockstore)
243
	go n.Reprovider.ProvideEvery(ctx, kReprovideFrequency)
244

245
	return n.Bootstrap(DefaultBootstrapConfig)
246 247
}

248 249
// startOnlineServicesWithHost  is the set of services which need to be
// initialized with the host and _before_ we start listening.
250
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost.Host, routingOption RoutingOption) error {
251
	// setup diagnostics service
252
	n.Diagnostics = diag.NewDiagnostics(n.Identity, host)
253 254

	// setup routing service
255
	r, err := routingOption(ctx, host, n.Repo.Datastore())
Jeromy's avatar
Jeromy committed
256 257
	if err != nil {
		return debugerror.Wrap(err)
258
	}
Jeromy's avatar
Jeromy committed
259
	n.Routing = r
260

261 262 263
	// Wrap standard peer host with routing system to allow unknown peer lookups
	n.PeerHost = rhost.Wrap(host, n.Routing)

264 265
	// setup exchange service
	const alwaysSendToPeer = true // use YesManStrategy
266
	bitswapNetwork := bsnet.NewFromIpfsHost(n.PeerHost, n.Routing)
267 268 269 270 271 272 273
	n.Exchange = bitswap.New(ctx, n.Identity, bitswapNetwork, n.Blockstore, alwaysSendToPeer)

	// setup name system
	n.Namesys = namesys.NewNameSystem(n.Routing)
	return nil
}

274 275
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
276
func (n *IpfsNode) teardown() error {
277
	log.Debug("core is shutting down...")
278 279
	// 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
280 281 282 283 284
	closers := []io.Closer{
		n.Blocks,
		n.Exchange,
		n.Repo,
	}
285
	addCloser := func(c io.Closer) { // use when field may be nil
286 287
		if c != nil {
			closers = append(closers, c)
288
		}
289
	}
290 291 292 293

	addCloser(n.Bootstrapper)
	if dht, ok := n.Routing.(*dht.IpfsDHT); ok {
		addCloser(dht)
294
	}
295 296
	addCloser(n.PeerHost)

297
	var errs []error
298
	for _, closer := range closers {
299 300
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
301 302 303 304
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
305 306
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
307 308
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
309
func (n *IpfsNode) OnlineMode() bool {
310 311 312 313 314 315
	switch n.mode {
	case onlineMode:
		return true
	default:
		return false
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
316 317
}

Jeromy's avatar
Jeromy committed
318 319
func (n *IpfsNode) Resolve(fpath string) (*merkledag.Node, error) {
	return n.Resolver.ResolvePath(path.Path(fpath))
320 321
}

322
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
323 324

	// TODO what should return value be when in offlineMode?
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
325 326 327 328
	if n.Routing == nil {
		return nil
	}

329 330 331 332 333 334 335 336
	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 {
		cfg.BootstrapPeers = func() []peer.PeerInfo {
337
			ps, err := n.loadBootstrapPeers()
338
			if err != nil {
339
				log.Warningf("failed to parse bootstrap peers from config: %s", n.Repo.Config().Bootstrap)
340 341 342 343 344 345 346 347 348
				return nil
			}
			return ps
		}
	}

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
349 350
}

351 352 353
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
		return debugerror.New("identity already loaded")
354 355
	}

356
	cid := n.Repo.Config().Identity.PeerID
357 358 359 360 361
	if cid == "" {
		return debugerror.New("Identity was not set in config (was ipfs init run?)")
	}
	if len(cid) == 0 {
		return debugerror.New("No peer ID in config! (was ipfs init run?)")
362 363
	}

364 365 366
	n.Identity = peer.ID(b58.Decode(cid))
	return nil
}
367

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
368
func (n *IpfsNode) LoadPrivateKey() error {
369 370
	if n.Identity == "" || n.Peerstore == nil {
		return debugerror.New("loaded private key out of order.")
371 372
	}

373 374 375 376
	if n.PrivateKey != nil {
		return debugerror.New("private key already loaded")
	}

377
	sk, err := loadPrivateKey(&n.Repo.Config().Identity, n.Identity)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
378
	if err != nil {
379
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
380
	}
381

382 383
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
384 385 386 387
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

388 389 390 391 392 393 394 395
func (n *IpfsNode) loadBootstrapPeers() ([]peer.PeerInfo, error) {
	parsed, err := n.Repo.Config().BootstrapPeers()
	if err != nil {
		return nil, err
	}
	return toPeerInfos(parsed), nil
}

Jeromy's avatar
Jeromy committed
396 397 398
// SetupOfflineRouting loads the local nodes private key and
// uses it to instantiate a routing system in offline mode.
// This is primarily used for offline ipns modifications.
Jeromy's avatar
Jeromy committed
399
func (n *IpfsNode) SetupOfflineRouting() error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
400
	err := n.LoadPrivateKey()
Jeromy's avatar
Jeromy committed
401 402 403 404 405
	if err != nil {
		return err
	}

	n.Routing = offroute.NewOfflineRouter(n.Repo.Datastore(), n.PrivateKey)
406 407 408

	n.Namesys = namesys.NewNameSystem(n.Routing)

409
	return nil
410 411 412 413
}

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

418 419 420 421
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
422

423 424
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
425 426
	}

427
	return sk, nil
428
}
429

430
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
431 432 433
	var listen []ma.Multiaddr
	for _, addr := range cfg.Addresses.Swarm {
		maddr, err := ma.NewMultiaddr(addr)
434
		if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
435
			return nil, fmt.Errorf("Failure to parse config.Addresses.Swarm: %s", cfg.Addresses.Swarm)
436
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
437
		listen = append(listen, maddr)
438 439 440 441
	}

	return listen, nil
}
442

Jeromy's avatar
Jeromy committed
443 444 445 446
type HostOption func(ctx context.Context, id peer.ID, ps peer.Peerstore) (p2phost.Host, error)

var DefaultHostOption HostOption = constructPeerHost

447
// isolates the complex initialization steps
448 449 450 451
func constructPeerHost(ctx context.Context, id peer.ID, ps peer.Peerstore) (p2phost.Host, error) {

	// no addresses to begin with. we'll start later.
	network, err := swarm.NewNetwork(ctx, nil, id, ps)
452 453 454
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
455

456 457 458 459 460 461 462 463 464 465 466
	host := p2pbhost.New(network, p2pbhost.NATPortMap)
	return host, nil
}

// startListening on the network addresses
func startListening(ctx context.Context, host p2phost.Host, cfg *config.Config) error {
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
		return debugerror.Wrap(err)
	}

467
	// make sure we error out if our config does not have addresses we can use
468
	log.Debugf("Config.Addresses.Swarm:%s", listenAddrs)
469
	filteredAddrs := addrutil.FilterUsableAddrs(listenAddrs)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
470
	log.Debugf("Config.Addresses.Swarm:%s (filtered)", filteredAddrs)
471
	if len(filteredAddrs) < 1 {
472
		return debugerror.Errorf("addresses in config not usable: %s", listenAddrs)
473 474
	}

475 476 477
	// Actually start listening:
	if err := host.Network().Listen(filteredAddrs...); err != nil {
		return err
478 479
	}

480
	// list out our addresses
481
	addrs, err := host.Network().InterfaceListenAddresses()
482
	if err != nil {
483
		return debugerror.Wrap(err)
484
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
485
	log.Infof("Swarm listening at: %s", addrs)
486
	return nil
487
}
488

489 490
func constructDHTRouting(ctx context.Context, host p2phost.Host, dstore ds.ThreadSafeDatastore) (routing.IpfsRouting, error) {
	dhtRouting := dht.NewDHT(ctx, host, dstore)
491
	dhtRouting.Validator[IpnsValidatorTag] = namesys.IpnsRecordValidator
492 493
	return dhtRouting, nil
}
Jeromy's avatar
Jeromy committed
494

495
type RoutingOption func(context.Context, p2phost.Host, ds.ThreadSafeDatastore) (routing.IpfsRouting, error)
Jeromy's avatar
Jeromy committed
496

497
var DHTOption RoutingOption = constructDHTRouting