core.go 11.2 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

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

12
	bstore "github.com/jbenet/go-ipfs/blocks/blockstore"
13
	bserv "github.com/jbenet/go-ipfs/blockservice"
Juan Batiz-Benet's avatar
go fmt  
Juan Batiz-Benet committed
14
	config "github.com/jbenet/go-ipfs/config"
Jeromy's avatar
Jeromy committed
15
	diag "github.com/jbenet/go-ipfs/diagnostics"
16 17
	exchange "github.com/jbenet/go-ipfs/exchange"
	bitswap "github.com/jbenet/go-ipfs/exchange/bitswap"
18
	bsnet "github.com/jbenet/go-ipfs/exchange/bitswap/network"
19
	offline "github.com/jbenet/go-ipfs/exchange/offline"
20
	mount "github.com/jbenet/go-ipfs/fuse/mount"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
21
	merkledag "github.com/jbenet/go-ipfs/merkledag"
Jeromy's avatar
Jeromy committed
22
	namesys "github.com/jbenet/go-ipfs/namesys"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
23
	ic "github.com/jbenet/go-ipfs/p2p/crypto"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
24 25 26
	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"
27
	addrutil "github.com/jbenet/go-ipfs/p2p/net/swarm/addr"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
28
	peer "github.com/jbenet/go-ipfs/p2p/peer"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
29
	path "github.com/jbenet/go-ipfs/path"
Jeromy's avatar
Jeromy committed
30
	pin "github.com/jbenet/go-ipfs/pin"
31 32
	routing "github.com/jbenet/go-ipfs/routing"
	dht "github.com/jbenet/go-ipfs/routing/dht"
33
	util "github.com/jbenet/go-ipfs/util"
34
	ds2 "github.com/jbenet/go-ipfs/util/datastore2"
35
	debugerror "github.com/jbenet/go-ipfs/util/debugerror"
36
	eventlog "github.com/jbenet/go-ipfs/util/eventlog"
37
	lgbl "github.com/jbenet/go-ipfs/util/eventlog/loggables"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
38 39
)

Jeromy's avatar
Jeromy committed
40
const IpnsValidatorTag = "ipns"
41
const kSizeBlockstoreWriteCache = 100
Jeromy's avatar
Jeromy committed
42

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

45 46 47 48 49 50 51 52 53
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
54
// IpfsNode is IPFS Core module. It represents an IPFS instance.
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
55 56
type IpfsNode struct {

57
	// Self
58
	Identity peer.ID // the local node's identity
59

60 61
	// TODO abstract as repo.Repo
	Config    *config.Config                // the node's configuration
62
	Datastore ds2.ThreadSafeDatastoreCloser // the local datastore
63 64 65 66

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

	// Services
69 70 71 72 73 74 75 76 77 78 79 80 81
	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
82

83
	ctxgroup.ContextGroup
84 85 86 87

	// dht allows node to Bootstrap when dht is present
	// TODO privatize before merging. This is here temporarily during the
	// migration of the TestNet constructor
88 89
	DHT  *dht.IpfsDHT
	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

func NewIPFSNode(ctx context.Context, option ConfigOption) (*IpfsNode, error) {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
103
	node, err := option(ctx)
104 105 106
	if err != nil {
		return nil, err
	}
107 108 109 110 111

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

112 113 114 115
	node.Blocks, err = bserv.New(node.Blockstore, node.Exchange)
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
116 117 118
	if node.Peerstore == nil {
		node.Peerstore = peer.NewPeerstore()
	}
119 120 121 122 123 124
	node.DAG = merkledag.NewDAGService(node.Blocks)
	node.Pinning, err = pin.LoadPinner(node.Datastore, node.DAG)
	if err != nil {
		node.Pinning = pin.NewPinner(node.Datastore, node.DAG)
	}
	node.Resolver = &path.Resolver{DAG: node.DAG}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
125
	return node, nil
126 127 128 129 130 131 132 133 134 135 136 137
}

func Offline(cfg *config.Config) ConfigOption {
	return Standard(cfg, false)
}

func Online(cfg *config.Config) ConfigOption {
	return Standard(cfg, true)
}

// DEPRECATED: use Online, Offline functions
func Standard(cfg *config.Config, online bool) ConfigOption {
138
	return func(ctx context.Context) (n *IpfsNode, err error) {
139

140 141 142 143 144 145 146 147 148 149 150
		success := false // flip to true after all sub-system inits succeed
		defer func() {
			if !success && n != nil {
				n.Close()
			}
		}()

		if cfg == nil {
			return nil, debugerror.Errorf("configuration required")
		}
		n = &IpfsNode{
151 152 153 154 155 156 157
			mode: func() mode {
				if online {
					return onlineMode
				}
				return offlineMode
			}(),
			Config: cfg,
158
		}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
159

160 161
		n.ContextGroup = ctxgroup.WithContextAndTeardown(ctx, n.teardown)
		ctx = n.ContextGroup.Context()
Juan Batiz-Benet's avatar
go fmt  
Juan Batiz-Benet committed
162

163 164
		// setup Peerstore
		n.Peerstore = peer.NewPeerstore()
165

166 167 168 169
		// setup datastore.
		if n.Datastore, err = makeDatastore(cfg.Datastore); err != nil {
			return nil, debugerror.Wrap(err)
		}
170

171 172 173 174
		// 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
175

176 177 178 179
		n.Blockstore, err = bstore.WriteCached(bstore.NewBlockstore(n.Datastore), kSizeBlockstoreWriteCache)
		if err != nil {
			return nil, debugerror.Wrap(err)
		}
180

181 182 183 184 185 186 187 188
		// setup online services
		if online {
			if err := n.StartOnlineServices(); err != nil {
				return nil, err // debugerror.Wraps.
			}
		} else {
			n.Exchange = offline.Exchange(n.Blockstore)
		}
189

190 191
		success = true
		return n, nil
Jeromy's avatar
Jeromy committed
192
	}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
193
}
194

195 196 197 198 199 200 201 202 203 204 205 206
func (n *IpfsNode) StartOnlineServices() error {
	ctx := n.Context()

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

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

207 208 209
	peerhost, err := constructPeerHost(ctx, n.ContextGroup, n.Config, n.Identity, n.Peerstore)
	if err != nil {
		return debugerror.Wrap(err)
210
	}
211
	n.PeerHost = peerhost
212 213 214 215 216

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

	// setup routing service
217 218 219 220
	dhtRouting, err := constructDHTRouting(ctx, n.ContextGroup, n.PeerHost, n.Datastore)
	if err != nil {
		return debugerror.Wrap(err)
	}
221
	n.DHT = dhtRouting
222
	n.Routing = dhtRouting
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238

	// 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.
239 240 241 242 243 244 245 246 247 248
	var bootstrapPeers []peer.PeerInfo
	for _, bootstrap := range n.Config.Bootstrap {
		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)
	}
249
	go superviseConnections(ctx, n.PeerHost, n.DHT, n.Peerstore, bootstrapPeers)
250 251 252
	return nil
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
253 254 255 256 257
func (n *IpfsNode) teardown() error {
	if err := n.Datastore.Close(); err != nil {
		return err
	}
	return nil
Brian Tiger Chow's avatar
Brian Tiger Chow committed
258 259
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
260
func (n *IpfsNode) OnlineMode() bool {
261 262 263 264 265 266
	switch n.mode {
	case onlineMode:
		return true
	default:
		return false
	}
Brian Tiger Chow's avatar
Brian Tiger Chow committed
267 268
}

269 270 271 272
func (n *IpfsNode) Resolve(k util.Key) (*merkledag.Node, error) {
	return (&path.Resolver{n.DAG}).ResolvePath(k.String())
}

273
// Bootstrap is undefined when node is not in OnlineMode
274
func (n *IpfsNode) Bootstrap(ctx context.Context, peers []peer.PeerInfo) error {
275 276 277

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

278
	if n.DHT != nil {
279
		return bootstrap(ctx, n.PeerHost, n.DHT, n.Peerstore, peers)
280 281 282 283
	}
	return nil
}

284 285 286
func (n *IpfsNode) loadID() error {
	if n.Identity != "" {
		return debugerror.New("identity already loaded")
287 288
	}

289 290 291 292 293 294
	cid := n.Config.Identity.PeerID
	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?)")
295 296
	}

297 298 299
	n.Identity = peer.ID(b58.Decode(cid))
	return nil
}
300

301 302 303
func (n *IpfsNode) loadPrivateKey() error {
	if n.Identity == "" || n.Peerstore == nil {
		return debugerror.New("loaded private key out of order.")
304 305
	}

306 307 308 309 310
	if n.PrivateKey != nil {
		return debugerror.New("private key already loaded")
	}

	sk, err := loadPrivateKey(&n.Config.Identity, n.Identity)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
311
	if err != nil {
312
		return err
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
313
	}
314

315 316 317
	n.PrivateKey = sk
	n.Peerstore.AddPrivKey(n.Identity, n.PrivateKey)
	return nil
318 319 320 321
}

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

326 327 328 329
	id2, err := peer.IDFromPrivateKey(sk)
	if err != nil {
		return nil, err
	}
330

331 332
	if id2 != id {
		return nil, fmt.Errorf("private key in config does not match id: %s != %s", id, id2)
333 334
	}

335
	return sk, nil
336
}
337

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

340 341 342 343 344
	var err error
	listen := make([]ma.Multiaddr, len(cfg.Addresses.Swarm))
	for i, addr := range cfg.Addresses.Swarm {

		listen[i], err = ma.NewMultiaddr(addr)
345
		if err != nil {
346
			return nil, fmt.Errorf("Failure to parse config.Addresses.Swarm[%d]: %s", i, cfg.Addresses.Swarm)
347 348 349 350 351
		}
	}

	return listen, nil
}
352 353 354 355 356 357 358

// isolates the complex initialization steps
func constructPeerHost(ctx context.Context, ctxg ctxgroup.ContextGroup, cfg *config.Config, id peer.ID, ps peer.Peerstore) (p2phost.Host, error) {
	listenAddrs, err := listenAddresses(cfg)
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
359 360 361 362 363 364 365

	// make sure we error out if our config does not have addresses we can use
	filteredAddrs := addrutil.FilterAddrs(listenAddrs)
	if len(filteredAddrs) < 1 {
		return nil, debugerror.Errorf("addresses in config not usable: %s", listenAddrs)
	}

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
	network, err := swarm.NewNetwork(ctx, filteredAddrs, id, ps)
	if err != nil {
		return nil, debugerror.Wrap(err)
	}
	ctxg.AddChildGroup(network.CtxGroup())

	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)
	}
	ps.AddAddresses(id, addrs)
	return peerhost, nil
}
383 384 385 386 387 388 389

func constructDHTRouting(ctx context.Context, ctxg ctxgroup.ContextGroup, host p2phost.Host, ds datastore.ThreadSafeDatastore) (*dht.IpfsDHT, error) {
	dhtRouting := dht.NewDHT(ctx, host, ds)
	dhtRouting.Validators[IpnsValidatorTag] = namesys.ValidateIpnsRecord
	ctxg.AddChildGroup(dhtRouting)
	return dhtRouting, nil
}