core.go 12.6 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1 2
package core

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

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

14
	bstore "github.com/jbenet/go-ipfs/blocks/blockstore"
15
	bserv "github.com/jbenet/go-ipfs/blockservice"
Jeromy's avatar
Jeromy committed
16
	diag "github.com/jbenet/go-ipfs/diagnostics"
17 18
	exchange "github.com/jbenet/go-ipfs/exchange"
	bitswap "github.com/jbenet/go-ipfs/exchange/bitswap"
19
	bsnet "github.com/jbenet/go-ipfs/exchange/bitswap/network"
20
	offline "github.com/jbenet/go-ipfs/exchange/offline"
Jeromy's avatar
Jeromy committed
21
	rp "github.com/jbenet/go-ipfs/exchange/reprovide"
22
	mount "github.com/jbenet/go-ipfs/fuse/mount"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
23
	merkledag "github.com/jbenet/go-ipfs/merkledag"
Jeromy's avatar
Jeromy committed
24
	namesys "github.com/jbenet/go-ipfs/namesys"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
25
	ic "github.com/jbenet/go-ipfs/p2p/crypto"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
26 27 28
	p2phost "github.com/jbenet/go-ipfs/p2p/host"
	p2pbhost "github.com/jbenet/go-ipfs/p2p/host/basic"
	swarm "github.com/jbenet/go-ipfs/p2p/net/swarm"
29
	addrutil "github.com/jbenet/go-ipfs/p2p/net/swarm/addr"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
30
	peer "github.com/jbenet/go-ipfs/p2p/peer"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
31
	path "github.com/jbenet/go-ipfs/path"
Jeromy's avatar
Jeromy committed
32
	pin "github.com/jbenet/go-ipfs/pin"
33
	repo "github.com/jbenet/go-ipfs/repo"
34
	config "github.com/jbenet/go-ipfs/repo/config"
35 36
	routing "github.com/jbenet/go-ipfs/routing"
	dht "github.com/jbenet/go-ipfs/routing/dht"
Jeromy's avatar
Jeromy committed
37 38
	offroute "github.com/jbenet/go-ipfs/routing/offline"
	eventlog "github.com/jbenet/go-ipfs/thirdparty/eventlog"
39
	util "github.com/jbenet/go-ipfs/util"
40
	debugerror "github.com/jbenet/go-ipfs/util/debugerror"
41
	lgbl "github.com/jbenet/go-ipfs/util/eventlog/loggables"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
42 43
)

Jeromy's avatar
Jeromy committed
44
const IpnsValidatorTag = "ipns"
45
const kSizeBlockstoreWriteCache = 100
46
const kReprovideFrequency = time.Hour * 12
Jeromy's avatar
Jeromy committed
47

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

50 51 52 53 54 55 56 57 58
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
59
// IpfsNode is IPFS Core module. It represents an IPFS instance.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
60 61
type IpfsNode struct {

62
	// Self
63
	Identity peer.ID // the local node's identity
64

65
	Repo repo.Repo
66 67 68 69

	// Local node
	Pinning pin.Pinner // the pinning manager
	Mounts  Mounts     // current mount state, if any.
70 71

	// Services
72 73 74 75 76 77 78 79 80 81 82 83 84
	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
	PrivateKey  ic.PrivKey          // the local node's private Key
	PeerHost    p2phost.Host        // the network host (server+client)
	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
Jeromy's avatar
Jeromy committed
85
	Reprovider  *rp.Reprovider      // the value reprovider system
86

87
	ctxgroup.ContextGroup
88

89
	mode mode
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
90 91
}

92 93 94 95 96 97 98 99
// 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
}

100
type ConfigOption func(ctx context.Context) (*IpfsNode, error)
101

102 103 104 105 106 107 108 109 110 111
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
112
	node, err := option(ctx)
113 114 115
	if err != nil {
		return nil, err
	}
116 117
	node.ContextGroup = ctxg
	ctxg.SetTeardown(node.teardown)
118 119 120 121 122

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

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

140 141
func Offline(r repo.Repo) ConfigOption {
	return Standard(r, false)
142 143
}

144 145
func Online(r repo.Repo) ConfigOption {
	return Standard(r, true)
146 147 148
}

// DEPRECATED: use Online, Offline functions
149
func Standard(r repo.Repo, online bool) ConfigOption {
150
	return func(ctx context.Context) (n *IpfsNode, err error) {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
151 152 153 154 155 156 157 158 159 160 161 162
		// 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.
163

164 165
		if r == nil {
			return nil, debugerror.Errorf("repo required")
166 167
		}
		n = &IpfsNode{
168 169 170 171 172 173
			mode: func() mode {
				if online {
					return onlineMode
				}
				return offlineMode
			}(),
174
			Repo: r,
175
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
176

177 178
		// setup Peerstore
		n.Peerstore = peer.NewPeerstore()
179

180 181 182 183
		// 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
184

185
		n.Blockstore, err = bstore.WriteCached(bstore.NewBlockstore(n.Repo.Datastore()), kSizeBlockstoreWriteCache)
186 187 188
		if err != nil {
			return nil, debugerror.Wrap(err)
		}
189

190
		if online {
191
			if err := n.StartOnlineServices(ctx); err != nil {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
192
				return nil, err
193 194 195 196
			}
		} else {
			n.Exchange = offline.Exchange(n.Blockstore)
		}
197

Brian Tiger Chow's avatar
Brian Tiger Chow committed
198
		success = true
199
		return n, nil
Jeromy's avatar
Jeromy committed
200
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
201
}
202

203
func (n *IpfsNode) StartOnlineServices(ctx context.Context) error {
204 205 206 207 208 209 210 211 212 213

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

	// load private key
	if err := n.loadPrivateKey(); err != nil {
		return err
	}

214
	peerhost, err := constructPeerHost(ctx, n.Repo.Config(), n.Identity, n.Peerstore)
215 216
	if err != nil {
		return debugerror.Wrap(err)
217
	}
218
	n.PeerHost = peerhost
219 220 221 222 223

	// setup diagnostics service
	n.Diagnostics = diag.NewDiagnostics(n.Identity, n.PeerHost)

	// setup routing service
224
	dhtRouting, err := constructDHTRouting(ctx, n.PeerHost, n.Repo.Datastore())
225 226 227 228
	if err != nil {
		return debugerror.Wrap(err)
	}
	n.Routing = dhtRouting
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244

	// 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
	// TODO implement an offline namesys that serves only local names.
	n.Namesys = namesys.NewNameSystem(n.Routing)

	// TODO consider moving connection supervision into the Network. We've
	// discussed improvements to this Node constructor. One improvement
	// would be to make the node configurable, allowing clients to inject
	// an Exchange, Network, or Routing component and have the constructor
	// manage the wiring. In that scenario, this dangling function is a bit
	// awkward.
245
	var bootstrapPeers []peer.PeerInfo
246
	for _, bootstrap := range n.Repo.Config().Bootstrap {
247 248 249 250 251 252 253 254
		p, err := toPeer(bootstrap)
		if err != nil {
			log.Event(ctx, "bootstrapError", n.Identity, lgbl.Error(err))
			log.Errorf("%s bootstrap error: %s", n.Identity, err)
			return err
		}
		bootstrapPeers = append(bootstrapPeers, p)
	}
255

256 257
	go superviseConnections(ctx, n.PeerHost, dhtRouting, n.Peerstore, bootstrapPeers)

258
	n.Reprovider = rp.NewReprovider(n.Routing, n.Blockstore)
259
	go n.Reprovider.ProvideEvery(ctx, kReprovideFrequency)
260

261 262 263
	return nil
}

264 265
// teardown closes owned children. If any errors occur, this function returns
// the first error.
Brian Tiger Chow's avatar
Brian Tiger Chow committed
266
func (n *IpfsNode) teardown() error {
267 268
	// 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.
269 270 271
	var closers []io.Closer
	if n.Repo != nil {
		closers = append(closers, n.Repo)
272
	}
273 274 275 276
	if n.Routing != nil {
		if dht, ok := n.Routing.(*dht.IpfsDHT); ok {
			closers = append(closers, dht)
		}
277 278 279 280
	}
	if n.PeerHost != nil {
		closers = append(closers, n.PeerHost)
	}
281
	var errs []error
282
	for _, closer := range closers {
283 284
		if err := closer.Close(); err != nil {
			errs = append(errs, err)
285 286 287 288
		}
	}
	if len(errs) > 0 {
		return errs[0]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
289 290
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
291 292
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
293
func (n *IpfsNode) OnlineMode() bool {
294 295 296 297 298 299
	switch n.mode {
	case onlineMode:
		return true
	default:
		return false
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
300 301
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
302 303
// TODO expose way to resolve path name

304 305 306 307
func (n *IpfsNode) Resolve(k util.Key) (*merkledag.Node, error) {
	return (&path.Resolver{n.DAG}).ResolvePath(k.String())
}

308
// Bootstrap is undefined when node is not in OnlineMode
309
func (n *IpfsNode) Bootstrap(ctx context.Context, peers []peer.PeerInfo) error {
310 311 312

	// TODO what should return value be when in offlineMode?

313 314 315 316
	if n.Routing != nil {
		if dht, ok := n.Routing.(*dht.IpfsDHT); ok {
			return bootstrap(ctx, n.PeerHost, dht, n.Peerstore, peers)
		}
317 318 319 320
	}
	return nil
}

321 322 323
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
		return debugerror.New("identity already loaded")
324 325
	}

326
	cid := n.Repo.Config().Identity.PeerID
327 328 329 330 331
	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?)")
332 333
	}

334 335 336
	n.Identity = peer.ID(b58.Decode(cid))
	return nil
}
337

338 339 340
func (n *IpfsNode) loadPrivateKey() error {
	if n.Identity == "" || n.Peerstore == nil {
		return debugerror.New("loaded private key out of order.")
341 342
	}

343 344 345 346
	if n.PrivateKey != nil {
		return debugerror.New("private key already loaded")
	}

347
	sk, err := loadPrivateKey(&n.Repo.Config().Identity, n.Identity)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
348
	if err != nil {
349
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
350
	}
351

352 353
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
Jeromy's avatar
Jeromy committed
354 355 356 357
	n.Peerstore.AddPubKey(n.Identity, sk.GetPublic())
	return nil
}

Jeromy's avatar
Jeromy committed
358 359 360
// 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
361 362 363 364 365 366 367
func (n *IpfsNode) SetupOfflineRouting() error {
	err := n.loadPrivateKey()
	if err != nil {
		return err
	}

	n.Routing = offroute.NewOfflineRouter(n.Repo.Datastore(), n.PrivateKey)
368
	return nil
369 370 371 372
}

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

377 378 379 380
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
381

382 383
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
384 385
	}

386
	return sk, nil
387
}
388

389 390
func listenAddresses(cfg *config.Config) ([]ma.Multiaddr, error) {

391 392 393 394 395
	var err error
	listen := make([]ma.Multiaddr, len(cfg.Addresses.Swarm))
	for i, addr := range cfg.Addresses.Swarm {

		listen[i], err = ma.NewMultiaddr(addr)
396
		if err != nil {
397
			return nil, fmt.Errorf("Failure to parse config.Addresses.Swarm[%d]: %s", i, cfg.Addresses.Swarm)
398 399 400 401 402
		}
	}

	return listen, nil
}
403 404

// isolates the complex initialization steps
405
func constructPeerHost(ctx context.Context, cfg *config.Config, id peer.ID, ps peer.Peerstore) (p2phost.Host, error) {
406 407 408 409
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
410 411

	// make sure we error out if our config does not have addresses we can use
412
	log.Debugf("Config.Addresses.Swarm:%s", listenAddrs)
413
	filteredAddrs := addrutil.FilterUsableAddrs(listenAddrs)
414
	log.Debugf("Config.Addresses.Swarm:%s (filtered)", listenAddrs)
415 416 417 418
	if len(filteredAddrs) < 1 {
		return nil, debugerror.Errorf("addresses in config not usable: %s", listenAddrs)
	}

419 420 421 422 423 424 425 426 427 428 429 430 431
	network, err := swarm.NewNetwork(ctx, filteredAddrs, id, ps)
	if err != nil {
		return nil, debugerror.Wrap(err)
	}

	peerhost := p2pbhost.New(network)
	// explicitly set these as our listen addrs.
	// (why not do it inside inet.NewNetwork? because this way we can
	// listen on addresses without necessarily advertising those publicly.)
	addrs, err := peerhost.Network().InterfaceListenAddresses()
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
432
	log.Info("Swarm listening at: %s", addrs)
433 434 435
	ps.AddAddresses(id, addrs)
	return peerhost, nil
}
436

437
func constructDHTRouting(ctx context.Context, host p2phost.Host, ds datastore.ThreadSafeDatastore) (*dht.IpfsDHT, error) {
438
	dhtRouting := dht.NewDHT(ctx, host, ds)
439
	dhtRouting.Validator[IpnsValidatorTag] = namesys.ValidateIpnsRecord
440 441
	return dhtRouting, nil
}