libp2p 0.35.8 → 0.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/dist/index.min.js +55 -0
  2. package/dist/src/circuit/auto-relay.d.ts +8 -10
  3. package/dist/src/circuit/auto-relay.d.ts.map +1 -1
  4. package/dist/src/config.d.ts +2 -0
  5. package/dist/src/config.d.ts.map +1 -1
  6. package/dist/src/connection-manager/auto-dialler.d.ts +1 -1
  7. package/dist/src/connection-manager/auto-dialler.d.ts.map +1 -1
  8. package/dist/src/connection-manager/index.d.ts +1 -2
  9. package/dist/src/connection-manager/index.d.ts.map +1 -1
  10. package/dist/src/content-routing/utils.d.ts +3 -3
  11. package/dist/src/content-routing/utils.d.ts.map +1 -1
  12. package/dist/src/dialer/dial-request.d.ts.map +1 -1
  13. package/dist/src/dialer/index.d.ts +12 -7
  14. package/dist/src/dialer/index.d.ts.map +1 -1
  15. package/dist/src/errors.d.ts +2 -0
  16. package/dist/src/fetch/constants.d.ts +2 -0
  17. package/dist/src/fetch/constants.d.ts.map +1 -0
  18. package/dist/src/fetch/index.d.ts +76 -0
  19. package/dist/src/fetch/index.d.ts.map +1 -0
  20. package/dist/src/fetch/proto.d.ts +134 -0
  21. package/dist/src/identify/index.d.ts +4 -4
  22. package/dist/src/identify/index.d.ts.map +1 -1
  23. package/dist/src/index.d.ts +116 -7
  24. package/dist/src/index.d.ts.map +1 -1
  25. package/dist/src/metrics/index.d.ts +9 -4
  26. package/dist/src/metrics/index.d.ts.map +1 -1
  27. package/dist/src/metrics/tracked-map.d.ts +6 -1
  28. package/dist/src/metrics/tracked-map.d.ts.map +1 -1
  29. package/dist/src/peer-routing.d.ts +1 -1
  30. package/dist/src/peer-routing.d.ts.map +1 -1
  31. package/dist/src/peer-store/address-book.d.ts +30 -84
  32. package/dist/src/peer-store/address-book.d.ts.map +1 -1
  33. package/dist/src/peer-store/index.d.ts +28 -94
  34. package/dist/src/peer-store/index.d.ts.map +1 -1
  35. package/dist/src/peer-store/key-book.d.ts +31 -15
  36. package/dist/src/peer-store/key-book.d.ts.map +1 -1
  37. package/dist/src/peer-store/metadata-book.d.ts +33 -29
  38. package/dist/src/peer-store/metadata-book.d.ts.map +1 -1
  39. package/dist/src/peer-store/pb/peer.d.ts +222 -0
  40. package/dist/src/peer-store/proto-book.d.ts +27 -28
  41. package/dist/src/peer-store/proto-book.d.ts.map +1 -1
  42. package/dist/src/peer-store/store.d.ts +73 -0
  43. package/dist/src/peer-store/store.d.ts.map +1 -0
  44. package/dist/src/peer-store/types.d.ts +202 -0
  45. package/dist/src/peer-store/types.d.ts.map +1 -0
  46. package/dist/src/ping/index.d.ts.map +1 -1
  47. package/dist/src/record/peer-record/index.d.ts +2 -2
  48. package/dist/src/record/peer-record/index.d.ts.map +1 -1
  49. package/dist/src/registrar.d.ts +5 -5
  50. package/dist/src/registrar.d.ts.map +1 -1
  51. package/dist/src/types.d.ts +90 -0
  52. package/dist/src/types.d.ts.map +1 -0
  53. package/dist/src/upgrader.d.ts +8 -2
  54. package/dist/src/upgrader.d.ts.map +1 -1
  55. package/package.json +23 -26
  56. package/src/circuit/auto-relay.js +52 -38
  57. package/src/config.js +2 -0
  58. package/src/connection-manager/auto-dialler.js +20 -8
  59. package/src/connection-manager/index.js +42 -22
  60. package/src/content-routing/utils.js +4 -4
  61. package/src/dialer/dial-request.js +4 -1
  62. package/src/dialer/index.js +38 -8
  63. package/src/errors.js +2 -0
  64. package/src/fetch/README.md +36 -0
  65. package/src/fetch/constants.js +6 -0
  66. package/src/fetch/index.js +159 -0
  67. package/src/fetch/proto.d.ts +134 -0
  68. package/src/fetch/proto.js +333 -0
  69. package/src/fetch/proto.proto +15 -0
  70. package/src/identify/index.js +47 -38
  71. package/src/index.js +72 -27
  72. package/src/metrics/index.js +15 -8
  73. package/src/metrics/tracked-map.js +40 -14
  74. package/src/peer-routing.js +4 -1
  75. package/src/peer-store/address-book.js +254 -226
  76. package/src/peer-store/index.js +79 -110
  77. package/src/peer-store/key-book.js +99 -54
  78. package/src/peer-store/metadata-book.js +171 -101
  79. package/src/peer-store/pb/peer.d.ts +222 -0
  80. package/src/peer-store/pb/peer.js +643 -0
  81. package/src/peer-store/pb/peer.proto +31 -0
  82. package/src/peer-store/proto-book.js +171 -105
  83. package/src/peer-store/store.js +263 -0
  84. package/src/peer-store/types.ts +245 -0
  85. package/src/ping/index.js +6 -0
  86. package/src/record/peer-record/index.js +1 -1
  87. package/src/record/utils.js +1 -1
  88. package/src/registrar.js +4 -4
  89. package/src/types.ts +98 -0
  90. package/src/upgrader.js +32 -2
  91. package/dist/src/peer-store/book.d.ts +0 -81
  92. package/dist/src/peer-store/book.d.ts.map +0 -1
  93. package/dist/src/peer-store/persistent/consts.d.ts +0 -6
  94. package/dist/src/peer-store/persistent/consts.d.ts.map +0 -1
  95. package/dist/src/peer-store/persistent/index.d.ts +0 -129
  96. package/dist/src/peer-store/persistent/index.d.ts.map +0 -1
  97. package/dist/src/peer-store/persistent/pb/address-book.d.ts +0 -198
  98. package/dist/src/peer-store/persistent/pb/proto-book.d.ts +0 -59
  99. package/src/peer-store/book.js +0 -124
  100. package/src/peer-store/persistent/consts.js +0 -15
  101. package/src/peer-store/persistent/index.js +0 -408
  102. package/src/peer-store/persistent/pb/address-book.d.ts +0 -198
  103. package/src/peer-store/persistent/pb/address-book.js +0 -522
  104. package/src/peer-store/persistent/pb/address-book.proto +0 -27
  105. package/src/peer-store/persistent/pb/proto-book.d.ts +0 -59
  106. package/src/peer-store/persistent/pb/proto-book.js +0 -157
  107. package/src/peer-store/persistent/pb/proto-book.proto +0 -5
@@ -8,7 +8,7 @@ const log = Object.assign(debug('libp2p:auto-relay'), {
8
8
  const { fromString: uint8ArrayFromString } = require('uint8arrays/from-string')
9
9
  const { toString: uint8ArrayToString } = require('uint8arrays/to-string')
10
10
  const { Multiaddr } = require('multiaddr')
11
- const PeerId = require('peer-id')
11
+ const all = require('it-all')
12
12
 
13
13
  const { relay: multicodec } = require('./multicodec')
14
14
  const { canHop } = require('./circuit/hop')
@@ -22,7 +22,8 @@ const {
22
22
 
23
23
  /**
24
24
  * @typedef {import('libp2p-interfaces/src/connection').Connection} Connection
25
- * @typedef {import('../peer-store/address-book').Address} Address
25
+ * @typedef {import('../peer-store/types').Address} Address
26
+ * @typedef {import('peer-id')} PeerId
26
27
  */
27
28
 
28
29
  /**
@@ -91,7 +92,7 @@ class AutoRelay {
91
92
 
92
93
  // If no protocol, check if we were keeping the peer before as a listenRelay
93
94
  if (!hasProtocol && this._listenRelays.has(id)) {
94
- this._removeListenRelay(id)
95
+ await this._removeListenRelay(id)
95
96
  return
96
97
  } else if (!hasProtocol || this._listenRelays.has(id)) {
97
98
  return
@@ -113,7 +114,7 @@ class AutoRelay {
113
114
  const supportsHop = await canHop({ connection })
114
115
 
115
116
  if (supportsHop) {
116
- this._peerStore.metadataBook.set(peerId, HOP_METADATA_KEY, uint8ArrayFromString(HOP_METADATA_VALUE))
117
+ await this._peerStore.metadataBook.setValue(peerId, HOP_METADATA_KEY, uint8ArrayFromString(HOP_METADATA_VALUE))
117
118
  await this._addListenRelay(connection, id)
118
119
  }
119
120
  } catch (/** @type {any} */ err) {
@@ -125,7 +126,6 @@ class AutoRelay {
125
126
  * Peer disconnects.
126
127
  *
127
128
  * @param {Connection} connection - connection to the peer
128
- * @returns {void}
129
129
  */
130
130
  _onPeerDisconnected (connection) {
131
131
  const peerId = connection.remotePeer
@@ -136,7 +136,9 @@ class AutoRelay {
136
136
  return
137
137
  }
138
138
 
139
- this._removeListenRelay(id)
139
+ this._removeListenRelay(id).catch(err => {
140
+ log.error(err)
141
+ })
140
142
  }
141
143
 
142
144
  /**
@@ -148,27 +150,35 @@ class AutoRelay {
148
150
  * @returns {Promise<void>}
149
151
  */
150
152
  async _addListenRelay (connection, id) {
151
- // Check if already listening on enough relays
152
- if (this._listenRelays.size >= this.maxListeners) {
153
- return
154
- }
155
-
156
- // Get peer known addresses and sort them per public addresses first
157
- const remoteAddrs = this._peerStore.addressBook.getMultiaddrsForPeer(
158
- connection.remotePeer, this._addressSorter
159
- )
160
-
161
- if (!remoteAddrs || !remoteAddrs.length) {
162
- return
163
- }
164
-
165
- const listenAddr = `${remoteAddrs[0].toString()}/p2p-circuit`
166
- this._listenRelays.add(id)
167
-
168
- // Attempt to listen on relay
169
153
  try {
170
- await this._transportManager.listen([new Multiaddr(listenAddr)])
171
- // Announce multiaddrs will update on listen success by TransportManager event being triggered
154
+ // Check if already listening on enough relays
155
+ if (this._listenRelays.size >= this.maxListeners) {
156
+ return
157
+ }
158
+
159
+ // Get peer known addresses and sort them per public addresses first
160
+ const remoteAddrs = await this._peerStore.addressBook.getMultiaddrsForPeer(
161
+ connection.remotePeer, this._addressSorter
162
+ )
163
+
164
+ // Attempt to listen on relay
165
+ const result = await Promise.all(
166
+ remoteAddrs.map(async addr => {
167
+ try {
168
+ // Announce multiaddrs will update on listen success by TransportManager event being triggered
169
+ await this._transportManager.listen([new Multiaddr(`${addr.toString()}/p2p-circuit`)])
170
+ return true
171
+ } catch (/** @type {any} */ err) {
172
+ this._onError(err)
173
+ }
174
+
175
+ return false
176
+ })
177
+ )
178
+
179
+ if (result.includes(true)) {
180
+ this._listenRelays.add(id)
181
+ }
172
182
  } catch (/** @type {any} */ err) {
173
183
  this._onError(err)
174
184
  this._listenRelays.delete(id)
@@ -180,12 +190,11 @@ class AutoRelay {
180
190
  *
181
191
  * @private
182
192
  * @param {string} id - peer identifier string.
183
- * @returns {void}
184
193
  */
185
- _removeListenRelay (id) {
194
+ async _removeListenRelay (id) {
186
195
  if (this._listenRelays.delete(id)) {
187
196
  // TODO: this should be responsibility of the connMgr
188
- this._listenOnAvailableHopRelays([id])
197
+ await this._listenOnAvailableHopRelays([id])
189
198
  }
190
199
  }
191
200
 
@@ -197,7 +206,6 @@ class AutoRelay {
197
206
  * 3. Search the network.
198
207
  *
199
208
  * @param {string[]} [peersToIgnore]
200
- * @returns {Promise<void>}
201
209
  */
202
210
  async _listenOnAvailableHopRelays (peersToIgnore = []) {
203
211
  // TODO: The peer redial issue on disconnect should be handled by connection gating
@@ -207,31 +215,37 @@ class AutoRelay {
207
215
  }
208
216
 
209
217
  const knownHopsToDial = []
218
+ const peers = await all(this._peerStore.getPeers())
210
219
 
211
220
  // Check if we have known hop peers to use and attempt to listen on the already connected
212
- for (const [id, metadataMap] of this._peerStore.metadataBook.data.entries()) {
221
+ for await (const { id, metadata } of peers) {
222
+ const idStr = id.toB58String()
223
+
213
224
  // Continue to next if listening on this or peer to ignore
214
- if (this._listenRelays.has(id) || peersToIgnore.includes(id)) {
225
+ if (this._listenRelays.has(idStr)) {
215
226
  continue
216
227
  }
217
228
 
218
- const supportsHop = metadataMap.get(HOP_METADATA_KEY)
229
+ if (peersToIgnore.includes(idStr)) {
230
+ continue
231
+ }
232
+
233
+ const supportsHop = metadata.get(HOP_METADATA_KEY)
219
234
 
220
235
  // Continue to next if it does not support Hop
221
236
  if (!supportsHop || uint8ArrayToString(supportsHop) !== HOP_METADATA_VALUE) {
222
237
  continue
223
238
  }
224
239
 
225
- const peerId = PeerId.createFromB58String(id)
226
- const connection = this._connectionManager.get(peerId)
240
+ const connection = this._connectionManager.get(id)
227
241
 
228
242
  // If not connected, store for possible later use.
229
243
  if (!connection) {
230
- knownHopsToDial.push(peerId)
244
+ knownHopsToDial.push(id)
231
245
  continue
232
246
  }
233
247
 
234
- await this._addListenRelay(connection, id)
248
+ await this._addListenRelay(connection, idStr)
235
249
 
236
250
  // Check if already listening on enough relays
237
251
  if (this._listenRelays.size >= this.maxListeners) {
@@ -258,7 +272,7 @@ class AutoRelay {
258
272
  }
259
273
 
260
274
  const peerId = provider.id
261
- this._peerStore.addressBook.add(peerId, provider.multiaddrs)
275
+ await this._peerStore.addressBook.add(peerId, provider.multiaddrs)
262
276
 
263
277
  await this._tryToListenOnRelay(peerId)
264
278
 
package/src/config.js CHANGED
@@ -13,6 +13,7 @@ const { FaultTolerance } = require('./transport-manager')
13
13
 
14
14
  /**
15
15
  * @typedef {import('multiaddr').Multiaddr} Multiaddr
16
+ * @typedef {import('./types').ConnectionGater} ConnectionGater
16
17
  * @typedef {import('.').Libp2pOptions} Libp2pOptions
17
18
  * @typedef {import('.').constructorOptions} constructorOptions
18
19
  */
@@ -27,6 +28,7 @@ const DefaultConfig = {
27
28
  connectionManager: {
28
29
  minConnections: 25
29
30
  },
31
+ connectionGater: /** @type {ConnectionGater} */ {},
30
32
  transportManager: {
31
33
  faultTolerance: FaultTolerance.FATAL_ALL
32
34
  },
@@ -4,6 +4,10 @@ const debug = require('debug')
4
4
  const mergeOptions = require('merge-options')
5
5
  // @ts-ignore retimer does not have types
6
6
  const retimer = require('retimer')
7
+ const all = require('it-all')
8
+ const { pipe } = require('it-pipe')
9
+ const filter = require('it-filter')
10
+ const sort = require('it-sort')
7
11
 
8
12
  const log = Object.assign(debug('libp2p:connection-manager:auto-dialler'), {
9
13
  error: debug('libp2p:connection-manager:auto-dialler:err')
@@ -50,7 +54,7 @@ class AutoDialler {
50
54
  /**
51
55
  * Starts the auto dialer
52
56
  */
53
- start () {
57
+ async start () {
54
58
  if (!this._options.enabled) {
55
59
  log('not enabled')
56
60
  return
@@ -86,22 +90,30 @@ class AutoDialler {
86
90
  return
87
91
  }
88
92
 
89
- // Sort peers on wether we know protocols of public keys for them
90
- const peers = Array.from(this._libp2p.peerStore.peers.values())
91
- .sort((a, b) => {
93
+ // Sort peers on whether we know protocols of public keys for them
94
+ // TODO: assuming the `peerStore.getPeers()` order is stable this will mean
95
+ // we keep trying to connect to the same peers?
96
+ const peers = await pipe(
97
+ this._libp2p.peerStore.getPeers(),
98
+ (source) => filter(source, (peer) => !peer.id.equals(this._libp2p.peerId)),
99
+ (source) => sort(source, (a, b) => {
92
100
  if (b.protocols && b.protocols.length && (!a.protocols || !a.protocols.length)) {
93
101
  return 1
94
102
  } else if (b.id.pubKey && !a.id.pubKey) {
95
103
  return 1
96
104
  }
97
105
  return -1
98
- })
106
+ }),
107
+ (source) => all(source)
108
+ )
99
109
 
100
110
  for (let i = 0; this._running && i < peers.length && this._libp2p.connections.size < minConnections; i++) {
101
- if (!this._libp2p.connectionManager.get(peers[i].id)) {
102
- log('connecting to a peerStore stored peer %s', peers[i].id.toB58String())
111
+ const peer = peers[i]
112
+
113
+ if (!this._libp2p.connectionManager.get(peer.id)) {
114
+ log('connecting to a peerStore stored peer %s', peer.id.toB58String())
103
115
  try {
104
- await this._libp2p.dialer.connectToPeer(peers[i].id)
116
+ await this._libp2p.dialer.connectToPeer(peer.id)
105
117
  } catch (/** @type {any} */ err) {
106
118
  log.error('could not connect to peerStore stored peer', err)
107
119
  }
@@ -87,14 +87,22 @@ class ConnectionManager extends EventEmitter {
87
87
  *
88
88
  * @type {Map<string, number>}
89
89
  */
90
- this._peerValues = trackedMap(METRICS_COMPONENT, METRICS_PEER_VALUES, this._libp2p.metrics)
90
+ this._peerValues = trackedMap({
91
+ component: METRICS_COMPONENT,
92
+ metric: METRICS_PEER_VALUES,
93
+ metrics: this._libp2p.metrics
94
+ })
91
95
 
92
96
  /**
93
97
  * Map of connections per peer
94
98
  *
95
99
  * @type {Map<string, Connection[]>}
96
100
  */
97
- this.connections = trackedMap(METRICS_COMPONENT, METRICS_PEER_CONNECTIONS, this._libp2p.metrics)
101
+ this.connections = trackedMap({
102
+ component: METRICS_COMPONENT,
103
+ metric: METRICS_PEER_CONNECTIONS,
104
+ metrics: this._libp2p.metrics
105
+ })
98
106
 
99
107
  this._started = false
100
108
  this._timer = null
@@ -104,6 +112,9 @@ class ConnectionManager extends EventEmitter {
104
112
  latencyCheckIntervalMs: this._options.pollInterval,
105
113
  dataEmitIntervalMs: this._options.pollInterval
106
114
  })
115
+
116
+ // This emitter gets listened to a lot
117
+ this.setMaxListeners(Infinity)
107
118
  }
108
119
 
109
120
  /**
@@ -187,19 +198,22 @@ class ConnectionManager extends EventEmitter {
187
198
  *
188
199
  * @private
189
200
  */
190
- _checkMetrics () {
201
+ async _checkMetrics () {
191
202
  if (this._libp2p.metrics) {
192
- const movingAverages = this._libp2p.metrics.global.movingAverages
193
- // @ts-ignore moving averages object types
194
- const received = movingAverages.dataReceived[this._options.movingAverageInterval].movingAverage()
195
- this._checkMaxLimit('maxReceivedData', received)
196
- // @ts-ignore moving averages object types
197
- const sent = movingAverages.dataSent[this._options.movingAverageInterval].movingAverage()
198
- this._checkMaxLimit('maxSentData', sent)
199
- const total = received + sent
200
- this._checkMaxLimit('maxData', total)
201
- log('metrics update', total)
202
- this._timer = retimer(this._checkMetrics, this._options.pollInterval)
203
+ try {
204
+ const movingAverages = this._libp2p.metrics.global.movingAverages
205
+ // @ts-ignore moving averages object types
206
+ const received = movingAverages.dataReceived[this._options.movingAverageInterval].movingAverage()
207
+ await this._checkMaxLimit('maxReceivedData', received)
208
+ // @ts-ignore moving averages object types
209
+ const sent = movingAverages.dataSent[this._options.movingAverageInterval].movingAverage()
210
+ await this._checkMaxLimit('maxSentData', sent)
211
+ const total = received + sent
212
+ await this._checkMaxLimit('maxData', total)
213
+ log('metrics update', total)
214
+ } finally {
215
+ this._timer = retimer(this._checkMetrics, this._options.pollInterval)
216
+ }
203
217
  }
204
218
  }
205
219
 
@@ -207,9 +221,8 @@ class ConnectionManager extends EventEmitter {
207
221
  * Tracks the incoming connection and check the connection limit
208
222
  *
209
223
  * @param {Connection} connection
210
- * @returns {void}
211
224
  */
212
- onConnect (connection) {
225
+ async onConnect (connection) {
213
226
  const peerId = connection.remotePeer
214
227
  const peerIdStr = peerId.toB58String()
215
228
  const storedConn = this.connections.get(peerIdStr)
@@ -222,13 +235,13 @@ class ConnectionManager extends EventEmitter {
222
235
  this.connections.set(peerIdStr, [connection])
223
236
  }
224
237
 
225
- this._libp2p.peerStore.keyBook.set(peerId, peerId.pubKey)
238
+ await this._libp2p.peerStore.keyBook.set(peerId, peerId.pubKey)
226
239
 
227
240
  if (!this._peerValues.has(peerIdStr)) {
228
241
  this._peerValues.set(peerIdStr, this._options.defaultPeerValue)
229
242
  }
230
243
 
231
- this._checkMaxLimit('maxConnections', this.size)
244
+ await this._checkMaxLimit('maxConnections', this.size)
232
245
  }
233
246
 
234
247
  /**
@@ -296,6 +309,9 @@ class ConnectionManager extends EventEmitter {
296
309
  */
297
310
  _onLatencyMeasure (summary) {
298
311
  this._checkMaxLimit('maxEventLoopDelay', summary.avgMs)
312
+ .catch(err => {
313
+ log.error(err)
314
+ })
299
315
  }
300
316
 
301
317
  /**
@@ -305,12 +321,12 @@ class ConnectionManager extends EventEmitter {
305
321
  * @param {string} name - The name of the field to check limits for
306
322
  * @param {number} value - The current value of the field
307
323
  */
308
- _checkMaxLimit (name, value) {
324
+ async _checkMaxLimit (name, value) {
309
325
  const limit = this._options[name]
310
326
  log('checking limit of %s. current value: %d of %d', name, value, limit)
311
327
  if (value > limit) {
312
328
  log('%s: limit exceeded: %s, %d', this._peerId, name, value)
313
- this._maybeDisconnectOne()
329
+ await this._maybeDisconnectOne()
314
330
  }
315
331
  }
316
332
 
@@ -320,7 +336,7 @@ class ConnectionManager extends EventEmitter {
320
336
  *
321
337
  * @private
322
338
  */
323
- _maybeDisconnectOne () {
339
+ async _maybeDisconnectOne () {
324
340
  if (this._options.minConnections < this.connections.size) {
325
341
  const peerValues = Array.from(new Map([...this._peerValues.entries()].sort((a, b) => a[1] - b[1])))
326
342
  log('%s: sorted peer values: %j', this._peerId, peerValues)
@@ -331,7 +347,11 @@ class ConnectionManager extends EventEmitter {
331
347
  log('%s: closing a connection to %j', this._peerId, peerId)
332
348
  for (const connections of this.connections.values()) {
333
349
  if (connections[0].remotePeer.toB58String() === peerId) {
334
- connections[0].close()
350
+ connections[0].close().catch(err => {
351
+ log.error(err)
352
+ })
353
+ // TODO: should not need to invoke this manually
354
+ this.onDisconnect(connections[0])
335
355
  break
336
356
  }
337
357
  }
@@ -14,12 +14,12 @@ const take = require('it-take')
14
14
  * Store the multiaddrs from every peer in the passed peer store
15
15
  *
16
16
  * @param {AsyncIterable<{ id: PeerId, multiaddrs: Multiaddr[] }>} source
17
- * @param {import('../peer-store')} peerStore
17
+ * @param {import('../peer-store/types').PeerStore} peerStore
18
18
  */
19
- function storeAddresses (source, peerStore) {
20
- return map(source, (peer) => {
19
+ async function * storeAddresses (source, peerStore) {
20
+ yield * map(source, async (peer) => {
21
21
  // ensure we have the addresses for a given peer
22
- peerStore.addressBook.add(peer.id, peer.multiaddrs)
22
+ await peerStore.addressBook.add(peer.id, peer.multiaddrs)
23
23
 
24
24
  return peer
25
25
  })
@@ -63,7 +63,10 @@ class DialRequest {
63
63
  tokens.forEach(token => tokenHolder.push(token))
64
64
  const dialAbortControllers = this.addrs.map(() => {
65
65
  const controller = new AbortController()
66
- setMaxListeners && setMaxListeners(Infinity, controller.signal)
66
+ try {
67
+ // fails on node < 15.4
68
+ setMaxListeners && setMaxListeners(Infinity, controller.signal)
69
+ } catch {}
67
70
 
68
71
  return controller
69
72
  })
@@ -1,6 +1,9 @@
1
1
  'use strict'
2
2
 
3
3
  const debug = require('debug')
4
+ const all = require('it-all')
5
+ const filter = require('it-filter')
6
+ const { pipe } = require('it-pipe')
4
7
  const log = Object.assign(debug('libp2p:dialer'), {
5
8
  error: debug('libp2p:dialer:err')
6
9
  })
@@ -30,15 +33,17 @@ const METRICS_PENDING_DIAL_TARGETS = 'pending-dial-targets'
30
33
  /**
31
34
  * @typedef {import('libp2p-interfaces/src/connection').Connection} Connection
32
35
  * @typedef {import('peer-id')} PeerId
33
- * @typedef {import('../peer-store')} PeerStore
34
- * @typedef {import('../peer-store/address-book').Address} Address
36
+ * @typedef {import('../peer-store/types').PeerStore} PeerStore
37
+ * @typedef {import('../peer-store/types').Address} Address
35
38
  * @typedef {import('../transport-manager')} TransportManager
39
+ * @typedef {import('../types').ConnectionGater} ConnectionGater
36
40
  */
37
41
 
38
42
  /**
39
43
  * @typedef {Object} DialerProperties
40
44
  * @property {PeerStore} peerStore
41
45
  * @property {TransportManager} transportManager
46
+ * @property {ConnectionGater} connectionGater
42
47
  *
43
48
  * @typedef {(addr:Multiaddr) => Promise<string[]>} Resolver
44
49
  *
@@ -70,6 +75,7 @@ class Dialer {
70
75
  constructor ({
71
76
  transportManager,
72
77
  peerStore,
78
+ connectionGater,
73
79
  addressSorter = publicAddressesFirst,
74
80
  maxParallelDials = MAX_PARALLEL_DIALS,
75
81
  maxAddrsToDial = MAX_ADDRS_TO_DIAL,
@@ -78,6 +84,7 @@ class Dialer {
78
84
  resolvers = {},
79
85
  metrics
80
86
  }) {
87
+ this.connectionGater = connectionGater
81
88
  this.transportManager = transportManager
82
89
  this.peerStore = peerStore
83
90
  this.addressSorter = addressSorter
@@ -88,10 +95,18 @@ class Dialer {
88
95
  this.tokens = [...new Array(maxParallelDials)].map((_, index) => index)
89
96
 
90
97
  /** @type {Map<string, PendingDial>} */
91
- this._pendingDials = trackedMap(METRICS_COMPONENT, METRICS_PENDING_DIALS, metrics)
98
+ this._pendingDials = trackedMap({
99
+ component: METRICS_COMPONENT,
100
+ metric: METRICS_PENDING_DIALS,
101
+ metrics
102
+ })
92
103
 
93
104
  /** @type {Map<string, { resolve: (value: any) => void, reject: (err: Error) => void}>} */
94
- this._pendingDialTargets = trackedMap(METRICS_COMPONENT, METRICS_PENDING_DIAL_TARGETS, metrics)
105
+ this._pendingDialTargets = trackedMap({
106
+ component: METRICS_COMPONENT,
107
+ metric: METRICS_PENDING_DIAL_TARGETS,
108
+ metrics
109
+ })
95
110
 
96
111
  for (const [key, value] of Object.entries(resolvers)) {
97
112
  Multiaddr.resolvers.set(key, value)
@@ -128,6 +143,12 @@ class Dialer {
128
143
  * @returns {Promise<Connection>}
129
144
  */
130
145
  async connectToPeer (peer, options = {}) {
146
+ const { id } = getPeer(peer)
147
+
148
+ if (await this.connectionGater.denyDialPeer(id)) {
149
+ throw errCode(new Error('The dial request is blocked by gater.allowDialPeer'), codes.ERR_PEER_DIAL_INTERCEPTED)
150
+ }
151
+
131
152
  const dialTarget = await this._createCancellableDialTarget(peer)
132
153
 
133
154
  if (!dialTarget.addrs.length) {
@@ -192,10 +213,16 @@ class Dialer {
192
213
  const { id, multiaddrs } = getPeer(peer)
193
214
 
194
215
  if (multiaddrs) {
195
- this.peerStore.addressBook.add(id, multiaddrs)
216
+ await this.peerStore.addressBook.add(id, multiaddrs)
196
217
  }
197
218
 
198
- let knownAddrs = this.peerStore.addressBook.getMultiaddrsForPeer(id, this.addressSorter) || []
219
+ let knownAddrs = await pipe(
220
+ await this.peerStore.addressBook.getMultiaddrsForPeer(id, this.addressSorter),
221
+ (source) => filter(source, async (multiaddr) => {
222
+ return !(await this.connectionGater.denyDialMultiaddr(id, multiaddr))
223
+ }),
224
+ (source) => all(source)
225
+ )
199
226
 
200
227
  // If received a multiaddr to dial, it should be the first to use
201
228
  // But, if we know other multiaddrs for the peer, we should try them too.
@@ -215,7 +242,7 @@ class Dialer {
215
242
  const supportedAddrs = addrs.filter(a => this.transportManager.transportForMultiaddr(a))
216
243
 
217
244
  if (supportedAddrs.length > this.maxAddrsToDial) {
218
- this.peerStore.delete(id)
245
+ await this.peerStore.delete(id)
219
246
  throw errCode(new Error('dial with more addresses than allowed'), codes.ERR_TOO_MANY_ADDRESSES)
220
247
  }
221
248
 
@@ -259,7 +286,10 @@ class Dialer {
259
286
 
260
287
  // this signal will potentially be used while dialing lots of
261
288
  // peers so prevent MaxListenersExceededWarning appearing in the console
262
- setMaxListeners && setMaxListeners(Infinity, signal)
289
+ try {
290
+ // fails on node < 15.4
291
+ setMaxListeners && setMaxListeners(Infinity, signal)
292
+ } catch {}
263
293
 
264
294
  const pendingDial = {
265
295
  dialRequest,
package/src/errors.js CHANGED
@@ -12,6 +12,8 @@ exports.codes = {
12
12
  PUBSUB_NOT_STARTED: 'ERR_PUBSUB_NOT_STARTED',
13
13
  DHT_NOT_STARTED: 'ERR_DHT_NOT_STARTED',
14
14
  CONN_ENCRYPTION_REQUIRED: 'ERR_CONN_ENCRYPTION_REQUIRED',
15
+ ERR_PEER_DIAL_INTERCEPTED: 'ERR_PEER_DIAL_INTERCEPTED',
16
+ ERR_CONNECTION_INTERCEPTED: 'ERR_CONNECTION_INTERCEPTED',
15
17
  ERR_INVALID_PROTOCOLS_FOR_STREAM: 'ERR_INVALID_PROTOCOLS_FOR_STREAM',
16
18
  ERR_CONNECTION_ENDED: 'ERR_CONNECTION_ENDED',
17
19
  ERR_CONNECTION_FAILED: 'ERR_CONNECTION_FAILED',
@@ -0,0 +1,36 @@
1
+ libp2p-fetch JavaScript Implementation
2
+ =====================================
3
+
4
+ > Libp2p fetch protocol JavaScript implementation
5
+
6
+ ## Overview
7
+
8
+ An implementation of the Fetch protocol as described here: https://github.com/libp2p/specs/tree/master/fetch
9
+
10
+ The fetch protocol is a simple protocol for requesting a value corresponding to a key from a peer.
11
+
12
+ ## Usage
13
+
14
+ ```javascript
15
+ const Libp2p = require('libp2p')
16
+
17
+ /**
18
+ * Given a key (as a string) returns a value (as a Uint8Array), or null if the key isn't found.
19
+ * All keys must be prefixed my the same prefix, which will be used to find the appropriate key
20
+ * lookup function.
21
+ * @param key - a string
22
+ * @returns value - a Uint8Array value that corresponds to the given key, or null if the key doesn't
23
+ * have a corresponding value.
24
+ */
25
+ async function my_subsystem_key_lookup(key) {
26
+ // app specific callback to lookup key-value pairs.
27
+ }
28
+
29
+ // Enable this peer to respond to fetch requests for keys that begin with '/my_subsystem_key_prefix/'
30
+ const libp2p = Libp2p.create(...)
31
+ libp2p.fetchService.registerLookupFunction('/my_subsystem_key_prefix/', my_subsystem_key_lookup)
32
+
33
+ const key = '/my_subsystem_key_prefix/{...}'
34
+ const peerDst = PeerId.parse('Qmfoo...') // or Multiaddr instance
35
+ const value = await libp2p.fetch(peerDst, key)
36
+ ```
@@ -0,0 +1,6 @@
1
+ 'use strict'
2
+
3
+ module.exports = {
4
+ // https://github.com/libp2p/specs/tree/master/fetch#wire-protocol
5
+ PROTOCOL: '/libp2p/fetch/0.0.1'
6
+ }