core.go 14.1 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 (
Jeromy's avatar
Jeromy committed
6
	"errors"
Juan Batiz-Benet's avatar
go fmt  
Juan Batiz-Benet committed
7
	"fmt"
8
	"io"
9
	"time"
10

11
	context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
12
	b58 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-base58"
13
	ctxgroup "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-ctxgroup"
14
	datastore "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
15
	ma "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
16

17 18 19 20 21 22 23
	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"
24
	rhost "github.com/jbenet/go-ipfs/p2p/host/routed"
25 26 27 28 29 30 31 32
	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"

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

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

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

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

56 57 58 59 60 61 62 63 64
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
65
// IpfsNode is IPFS Core module. It represents an IPFS instance.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
66 67
type IpfsNode struct {

68
	// Self
69
	Identity peer.ID // the local node's identity
70

71
	Repo repo.Repo
72 73

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

	// Services
79 80 81 82 83 84 85
	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
86 87 88 89 90 91 92
	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
93

94
	ctxgroup.ContextGroup
95

96
	mode mode
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
97 98
}

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

107
type ConfigOption func(ctx context.Context) (*IpfsNode, error)
108

109 110 111 112 113 114 115 116 117 118
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
119
	node, err := option(ctx)
120 121 122
	if err != nil {
		return nil, err
	}
123 124
	node.ContextGroup = ctxg
	ctxg.SetTeardown(node.teardown)
125 126 127 128 129

	// 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.

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

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

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

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

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

// TODO refactor so maybeRouter isn't special-cased in this way
Jeromy's avatar
Jeromy committed
165
func standardWithRouting(r repo.Repo, online bool, routingOption RoutingOption, hostOption HostOption) ConfigOption {
166
	return func(ctx context.Context) (n *IpfsNode, err error) {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
167 168 169 170 171 172 173 174 175 176 177 178
		// 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.
179

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

193 194
		// setup Peerstore
		n.Peerstore = peer.NewPeerstore()
195

196 197 198 199
		// 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
200

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

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

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

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

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

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

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

Jeromy's avatar
Jeromy committed
236
	if err := n.startOnlineServicesWithHost(ctx, routingOption); err != nil {
237
		return err
238 239
	}

240 241
	n.PeerHost = rhost.Wrap(peerhost, n.Routing)

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

247
	n.Reprovider = rp.NewReprovider(n.Routing, n.Blockstore)
248
	go n.Reprovider.ProvideEvery(ctx, kReprovideFrequency)
249

250
	return n.Bootstrap(DefaultBootstrapConfig)
251 252
}

253 254
// startOnlineServicesWithHost  is the set of services which need to be
// initialized with the host and _before_ we start listening.
Jeromy's avatar
Jeromy committed
255
func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, routingOption RoutingOption) error {
256 257 258 259
	// setup diagnostics service
	n.Diagnostics = diag.NewDiagnostics(n.Identity, n.PeerHost)

	// setup routing service
Jeromy's avatar
Jeromy committed
260 261 262
	r, err := routingOption(ctx, n)
	if err != nil {
		return debugerror.Wrap(err)
263
	}
Jeromy's avatar
Jeromy committed
264
	n.Routing = r
265 266 267 268 269 270 271 272 273 274 275

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

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

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

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

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

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

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

324
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
325 326

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

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

	var err error
	n.Bootstrapper, err = Bootstrap(n, cfg)
	return err
351 352
}

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

358
	cid := n.Repo.Config().Identity.PeerID
359 360 361 362 363
	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?)")
364 365
	}

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

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

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

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

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

390 391 392 393 394 395 396 397
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
398 399 400
// 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
401
func (n *IpfsNode) SetupOfflineRouting() error {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
402
	err := n.LoadPrivateKey()
Jeromy's avatar
Jeromy committed
403 404 405 406 407
	if err != nil {
		return err
	}

	n.Routing = offroute.NewOfflineRouter(n.Repo.Datastore(), n.PrivateKey)
408 409 410

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

411
	return nil
412 413 414 415
}

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

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

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

429
	return sk, nil
430
}
431

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

	return listen, nil
}
444

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

var DefaultHostOption HostOption = constructPeerHost

449
// isolates the complex initialization steps
450 451 452 453
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)
454 455 456
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
457

458 459 460 461 462 463 464 465 466 467 468
	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)
	}

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

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

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

491
func constructDHTRouting(ctx context.Context, host p2phost.Host, ds datastore.ThreadSafeDatastore) (*dht.IpfsDHT, error) {
492
	dhtRouting := dht.NewDHT(ctx, host, ds)
493
	dhtRouting.Validator[IpnsValidatorTag] = namesys.ValidateIpnsRecord
494 495
	return dhtRouting, nil
}
Jeromy's avatar
Jeromy committed
496 497 498 499 500 501 502 503 504 505 506 507

type RoutingOption func(context.Context, *IpfsNode) (routing.IpfsRouting, error)

var DHTOption RoutingOption = func(ctx context.Context, n *IpfsNode) (routing.IpfsRouting, error) {
	if n.PeerHost == nil {
		return nil, errors.New("dht requires a peerhost")
	}
	if n.Repo == nil {
		return nil, errors.New("dht requires a datastore. (node has no Repo)")
	}
	return constructDHTRouting(ctx, n.PeerHost, n.Repo.Datastore())
}