-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.js
477 lines (420 loc) · 15.9 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
const p = require('path')
const { EventEmitter } = require('events')
const mkdirp = require('mkdirp')
const sub = require('subleveldown')
const grpc = require('@grpc/grpc-js')
const bjson = require('buffer-json-encoding')
const processTop = require('process-top')
const varint = require('varint')
const Corestore = require('corestore')
const HypercoreCache = require('hypercore-cache')
const SwarmNetworker = require('corestore-swarm-networking')
const HypercoreProtocol = require('hypercore-protocol')
const Peersockets = require('peersockets')
const { rpc, apiVersion } = require('hyperdrive-daemon-client')
const { createMetadata } = require('./lib/metadata')
const constants = require('hyperdrive-daemon-client/lib/constants')
const DriveManager = require('./lib/drives')
const PeersocketManager = require('./lib/peersockets')
const PeersManager = require('./lib/peers')
const DebugManager = require('./lib/debug')
const FuseManager = require('./lib/fuse')
const { serverError } = require('./lib/errors')
const { getHandlers } = require('./lib/common')
const log = require('./lib/log').child({ component: 'server' })
const NAMESPACE = 'hyperdrive-daemon'
const STOP_EVENTS = ['SIGINT', 'SIGTERM', 'unhandledRejection', 'uncaughtException']
const WATCH_LIMIT = 300
const MAX_PEERS = 128
const SWARM_PORT = 49737
const TOTAL_CACHE_SIZE = 1024 * 1024 * 512
const CACHE_RATIO = 0.5
const TREE_CACHE_SIZE = TOTAL_CACHE_SIZE * CACHE_RATIO
const DATA_CACHE_SIZE = TOTAL_CACHE_SIZE * (1 - CACHE_RATIO)
// This is set dynamically in refreshFuse.
try {
var hyperfuse = require('hyperdrive-fuse')
} catch (err) {}
class HyperdriveDaemon extends EventEmitter {
constructor (opts = {}) {
super()
this.opts = opts
this.root = opts.storage || constants.root
this.storage = p.join(this.root, 'storage')
this.port = opts.port || constants.port
this.memoryOnly = !!opts.memoryOnly
this.noAnnounce = !!opts.noAnnounce
this.noDebug = !!opts.noDebug
log.info('memory only?', this.memoryOnly, 'no announce?', this.noAnnounce)
this._storageProvider = this.memoryOnly ? require('random-access-memory') : require('hypercore-default-storage')
this._dbProvider = this.memoryOnly ? require('level-mem') : require('level')
const corestoreOpts = {
storage: path => this._storageProvider(`${this.storage}/cores/${path}`),
sparse: true,
// Collect networking statistics.
stats: true,
cache: {
data: new HypercoreCache({
maxByteSize: DATA_CACHE_SIZE,
estimateSize: val => val.length
}),
tree: new HypercoreCache({
maxByteSize: TREE_CACHE_SIZE,
estimateSize: val => 40
})
},
ifAvailable: true
}
this.corestore = new Corestore(corestoreOpts.storage, corestoreOpts)
this._networkOpts = {
announceLocalAddress: true,
preferredPort: opts.swarmPort || SWARM_PORT,
maxPeers: opts.maxPeers || MAX_PEERS
}
const bootstrapOpts = opts.bootstrap || constants.bootstrap
if (bootstrapOpts && bootstrapOpts.length && bootstrapOpts[0] !== '') {
if (bootstrapOpts === false || bootstrapOpts[0] === 'false') {
this._networkOpts.bootstrap = false
} else {
this._networkOpts.bootstrap = bootstrapOpts
}
}
if (opts.latency !== undefined) this._networkOpts.latency = +opts.latency
// Set in ready.
this.networking = null
this.db = null
this.drives = null
this.fuse = null
this.peersockets = null
this.debug = null
this.metadata = null
this._startTime = null
// Set in start.
this.server = null
this._topTimer = null
this._dbs = null
this._isMain = !!opts.main
this._cleanup = null
this._isClosed = false
this._readyPromise = false
this._versions = null
this.ready = () => {
if (this._isClosed) return Promise.resolve()
if (this._readyPromise) return this._readyPromise
this._readyPromise = this._ready()
return this._readyPromise.catch(err => {
log.error({ error: err, stack: err.stack }, 'error in daemon ready function -- cleaning up')
return this.stop(err)
})
}
}
async _ready () {
// Always rotate the auth token when the daemon's restarted to prevent session mismatches.
this.metadata = this.opts.metadata || await createMetadata(this.root, `localhost:${this.port}`)
await this._ensureStorage()
this._cleanup = this.stop.bind(this)
for (const event of STOP_EVENTS) {
process.on(event, this._cleanup)
}
this.db = this._dbProvider(`${this.storage}/db`, { valueEncoding: 'json' })
const dbs = {
fuse: sub(this.db, 'fuse', { valueEncoding: bjson }),
drives: sub(this.db, 'drives', { valueEncoding: bjson }),
network: sub(this.db, 'network', { valueEncoding: 'json'})
}
this._dbs = dbs
await this.corestore.ready()
// Note: This API is not exposed anymore -- this is a temporary fix.
const seed = this.corestore.inner._deriveSecret(NAMESPACE, 'replication-keypair')
const swarmId = this.corestore.inner._deriveSecret(NAMESPACE, 'swarm-id')
this._networkOpts.keyPair = HypercoreProtocol.keyPair(seed)
this._networkOpts.id = swarmId
this.networking = new SwarmNetworker(this.corestore, this._networkOpts)
this.networking.on('replication-error', err => {
log.trace({ error: err.message, stack: err.stack }, 'replication error')
if (err.message && err.message.indexOf('Remote signature could not be verified') !== -1) {
log.warn('Remote signature verification is failing -- one of your hypercores appears to be forked or corrupted.')
}
})
this.networking.on('stream-opened', stream => {
log.trace({ remoteType: stream.remoteType, remoteAddress: stream.remoteAddress }, 'replication stream opened')
})
this.networking.on('stream-closed', stream => {
log.trace({ remoteType: stream.remoteType, remoteAddress: stream.remoteAddress }, 'replication stream closed')
})
await this.networking.listen()
// Register the Hyperswarm timeout heuristics on all cores generated by our corestore.
this._registerCoreTimeouts()
const peersockets = new Peersockets(this.networking)
this.peers = new PeersManager(this.networking, peersockets)
this.peersockets = new PeersocketManager(this.networking, this.peers, peersockets)
if (!this.noDebug) this.debug = new DebugManager(this)
this.drives = new DriveManager(this.corestore, this.networking, dbs.drives, {
...this.opts,
memoryOnly: this.memoryOnly,
watchLimit: this.opts.watchLimit || WATCH_LIMIT
})
this.drives.on('error', err => this.emit('error', err))
await this.drives.ready()
this.fuse = new FuseManager(this.drives, this._dbs.fuse, this.opts)
this.fuse.on('error', err => this.emit('error', err))
await this.fuse.ready()
this._isReady = true
this._startTime = Date.now()
this._versions = {
daemon: require('./package.json').version,
client: require('hyperdrive-daemon-client/package.json').version,
schema: require('hyperdrive-schemas/package.json').version,
hyperdrive: require('hyperdrive/package.json').version
}
if (this.fuse && this.fuse.fuseConfigured) {
this._versions.fuseNative = require('fuse-native/package.json').version
this._versions.hyperdriveFuse = require('hyperdrive-fuse/package.json').version
}
}
_ensureStorage () {
return new Promise((resolve, reject) => {
mkdirp(this.storage, err => {
if (err) return reject(err)
return resolve()
})
})
}
/**
* This is where we define our main heuristic for allowing hypercore gets/updates to proceed.
*/
_registerCoreTimeouts () {
const flushSets = new Map()
this.networking.on('flushed', dkey => {
const keyString = dkey.toString('hex')
if (!flushSets.has(keyString)) return
const { flushSet, peerAddSet } = flushSets.get(keyString)
callAllInSet(flushSet)
callAllInSet(peerAddSet)
})
this.corestore.on('feed', core => {
const discoveryKey = core.discoveryKey
const peerAddSet = new Set()
const flushSet = new Set()
var globalFlushed = false
this.networking.swarm.flush(() => {
if (this.networking.joined(discoveryKey)) return
globalFlushed = true
callAllInSet(flushSet)
callAllInSet(peerAddSet)
})
flushSets.set(discoveryKey.toString('hex'), { flushSet, peerAddSet })
core.once('peer-add', () => callAllInSet(peerAddSet))
const timeouts = {
get: (cb) => {
if (this.networking.joined(discoveryKey)) {
if (this.networking.flushed(discoveryKey)) return cb()
return flushSet.add(cb)
}
if (globalFlushed) return cb()
return flushSet.add(cb)
},
update: (cb) => {
if (core.peers.length) return cb()
if (this.networking.joined(discoveryKey)) {
if (this.networking.flushed(discoveryKey) && !core.peers.length) return cb()
return peerAddSet.add(cb)
}
if (globalFlushed) return cb()
return peerAddSet.add(cb)
}
}
core.timeouts = timeouts
})
}
// RPC Methods
async _rpcStatus (call) {
const rsp = new rpc.main.messages.StatusResponse()
rsp.setApiversion(apiVersion)
rsp.setUptime(Date.now() - this._startTime)
if (this._versions) {
rsp.setDaemonversion(this._versions.daemon)
rsp.setClientversion(this._versions.client)
rsp.setSchemaversion(this._versions.schema)
rsp.setHyperdriveversion(this._versions.hyperdrive)
rsp.setNoisekey(this.noiseKeyPair.publicKey)
const swarm = this.networking && this.networking.swarm
if (swarm) {
const remoteAddress = swarm.remoteAddress()
rsp.setHolepunchable(swarm.holepunchable())
rsp.setRemoteaddress(remoteAddress ? remoteAddress.host + ':' + remoteAddress.port : '')
}
if (this._versions.fuseNative) rsp.setFusenativeversion(this._versions.fuseNative)
if (this._versions.hyperdriveFuse) rsp.setHyperdrivefuseversion(this._versions.hyperdriveFuse)
if (hyperfuse) {
rsp.setFuseavailable(true)
rsp.setFuseconfigured(this.fuse.fuseConfigured)
} else {
rsp.setFuseavailable(false)
rsp.setFuseconfigured(false)
}
}
return rsp
}
async _rpcRefreshFuse (call) {
await this.fuse.ready()
if (this.fuse && this.fuse.fuseConfigured) {
hyperfuse = require('hyperdrive-fuse')
this._versions.fuseNative = require('fuse-native/package.json').version
this._versions.hyperdriveFuse = require('hyperdrive-fuse/package.json').version
}
return new rpc.main.messages.FuseRefreshResponse()
}
// Public Methods
get uptime () {
if (!this._startTime) return 0
return Date.now() - this._startTime
}
get noiseKeyPair () {
if (!this.networking) return null
return this.networking.keyPair
}
async stop (err) {
// Couldn't tell you why these propagate as uncaughtExceptions (gRPC is a PITA), but we should ignore them.
if (err && ((err.code === 1) || (err.code === 'ERR_HTTP2_INVALID_STREAM'))) return
if (err) log.error({ error: true, err, message: err.message, stack: err.stack, errno: err.errno }, 'stopping daemon due to error')
if (this._isClosed) {
log.info('force killing the process because stop has been called twice')
if (this._isMain) return process.exit(0)
return null
}
this._isClosed = true
try {
if (this._topTimer) {
clearInterval(this._topTimer)
this._topTimer = null
}
if (this.server) this.server.forceShutdown()
log.info('waiting for fuse to unmount')
if (this.fuse && this.fuse.fuseConfigured) await this.fuse.unmount()
log.info('waiting for networking to close')
if (this.networking) await this.networking.close()
log.info('waiting for corestore to close')
if (this.corestore) {
await new Promise((resolve, reject) => {
this.corestore.close(err => {
if (err) return reject(err)
return resolve()
})
})
}
log.info('waiting for db to close')
if (this.db) await this.db.close()
if (this._isMain) return process.exit(0)
} catch (err) {
log.error({ error: err.message, stack: err.stack }, 'error in cleanup')
if (this._isMain) return process.exit(1)
throw err
}
log.info('finished cleanup -- shutting down')
for (const event of STOP_EVENTS) {
process.removeListener(event, this._cleanup)
}
}
async start () {
await this.ready()
this._topTimer = setInterval(() => {
log.info(processTop().toJSON(), 'process stats')
}, 1000 * 60)
this.server = new grpc.Server()
this.server.addService(rpc.fuse.services.FuseService, {
...wrap(this.metadata, getHandlers(this.fuse), { authenticate: true })
})
this.server.addService(rpc.drive.services.DriveService, {
...wrap(this.metadata, getHandlers(this.drives), { authenticate: true })
})
this.server.addService(rpc.peersockets.services.PeersocketsService, {
...wrap(this.metadata, getHandlers(this.peersockets), { authenticate: true })
})
this.server.addService(rpc.peers.services.PeersService, {
...wrap(this.metadata, getHandlers(this.peers), { authenticate: true })
})
if (this.debug) {
this.server.addService(rpc.debug.services.DebugService, {
...wrap(this.metadata, getHandlers(this.debug), { authenticate: true })
})
}
this.server.addService(rpc.main.services.HyperdriveService, {
...wrap(this.metadata, getHandlers(this), { authenticate: true })
})
await new Promise((resolve, reject) => {
this.server.bindAsync(`0.0.0.0:${this.port}`, grpc.ServerCredentials.createInsecure(), (err, port) => {
if (err) return reject(err)
log.info({ port: port }, 'server listening')
this.server.start()
return resolve()
})
})
}
}
function extractArguments () {
const argv = require('minimist')(process.argv.slice(2), {
string: ['storage', 'log-level', 'bootstrap'],
boolean: ['announce', 'memory-only', 'debug'],
default: {
bootstrap: '',
'memory-only': false,
announce: true,
debug: true
}
})
if (argv.bootstrap === 'false') argv.bootstrap = false
else if (argv.bootstrap) argv.bootstrap = argv.bootstrap.split(',')
return argv
}
function wrap (metadata, methods, opts) {
const wrapped = {}
const authenticate = opts && opts.authenticate
for (const methodName of Object.keys(methods)) {
const method = methods[methodName]
wrapped[methodName] = function (call, ...args) {
const tag = { method: methodName, received: Date.now() }
const cb = args.length ? args[args.length - 1] : null
if (authenticate) {
let token = call.metadata && call.metadata.get('token')
if (token) token = token[0]
log.trace({ ...tag, token }, 'received token')
if (!token || token !== metadata.token) {
log.warn(tag, 'request authentication failed')
const err = {
code: grpc.status.UNAUTHENTICATED,
message: 'Invalid auth token.'
}
if (cb) return cb(err)
return call.destroy(err)
}
log.trace(tag, 'request authentication succeeded')
}
method(call)
.then(rsp => {
log.trace(tag, 'request was successful')
if (cb) process.nextTick(cb, null, rsp)
})
.catch(err => {
log.trace({ ...tag, error: err.toString() }, 'request failed')
if (cb) return cb(serverError(err))
return call.destroy(err)
})
}
}
return wrapped
}
function callAllInSet (set) {
for (const cb of set) {
cb()
}
set.clear()
}
if (require.main === module) {
const opts = extractArguments()
const daemon = new HyperdriveDaemon({ ...opts, main: true })
process.title = 'hyperdrive'
daemon.start()
} else {
module.exports = HyperdriveDaemon
}