@libp2p/circuit-relay-v2 0.0.0-05b52d69c
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.
- package/LICENSE +4 -0
- package/README.md +69 -0
- package/dist/index.min.js +45 -0
- package/dist/src/constants.d.ts +55 -0
- package/dist/src/constants.d.ts.map +1 -0
- package/dist/src/constants.js +61 -0
- package/dist/src/constants.js.map +1 -0
- package/dist/src/index.d.ts +56 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +39 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/pb/index.d.ts +93 -0
- package/dist/src/pb/index.d.ts.map +1 -0
- package/dist/src/pb/index.js +425 -0
- package/dist/src/pb/index.js.map +1 -0
- package/dist/src/server/advert-service.d.ts +46 -0
- package/dist/src/server/advert-service.d.ts.map +1 -0
- package/dist/src/server/advert-service.js +72 -0
- package/dist/src/server/advert-service.js.map +1 -0
- package/dist/src/server/index.d.ts +67 -0
- package/dist/src/server/index.d.ts.map +1 -0
- package/dist/src/server/index.js +313 -0
- package/dist/src/server/index.js.map +1 -0
- package/dist/src/server/reservation-store.d.ts +49 -0
- package/dist/src/server/reservation-store.d.ts.map +1 -0
- package/dist/src/server/reservation-store.js +65 -0
- package/dist/src/server/reservation-store.js.map +1 -0
- package/dist/src/server/reservation-voucher.d.ts +18 -0
- package/dist/src/server/reservation-voucher.d.ts.map +1 -0
- package/dist/src/server/reservation-voucher.js +36 -0
- package/dist/src/server/reservation-voucher.js.map +1 -0
- package/dist/src/transport/discovery.d.ts +48 -0
- package/dist/src/transport/discovery.d.ts.map +1 -0
- package/dist/src/transport/discovery.js +97 -0
- package/dist/src/transport/discovery.js.map +1 -0
- package/dist/src/transport/index.d.ts +58 -0
- package/dist/src/transport/index.d.ts.map +1 -0
- package/dist/src/transport/index.js +279 -0
- package/dist/src/transport/index.js.map +1 -0
- package/dist/src/transport/listener.d.ts +11 -0
- package/dist/src/transport/listener.d.ts.map +1 -0
- package/dist/src/transport/listener.js +66 -0
- package/dist/src/transport/listener.js.map +1 -0
- package/dist/src/transport/reservation-store.d.ts +74 -0
- package/dist/src/transport/reservation-store.d.ts.map +1 -0
- package/dist/src/transport/reservation-store.js +209 -0
- package/dist/src/transport/reservation-store.js.map +1 -0
- package/dist/src/utils.d.ts +14 -0
- package/dist/src/utils.d.ts.map +1 -0
- package/dist/src/utils.js +106 -0
- package/dist/src/utils.js.map +1 -0
- package/package.json +83 -0
- package/src/constants.ts +79 -0
- package/src/index.ts +64 -0
- package/src/pb/index.proto +67 -0
- package/src/pb/index.ts +539 -0
- package/src/server/advert-service.ts +109 -0
- package/src/server/index.ts +446 -0
- package/src/server/reservation-store.ts +116 -0
- package/src/server/reservation-voucher.ts +51 -0
- package/src/transport/discovery.ts +138 -0
- package/src/transport/index.ts +399 -0
- package/src/transport/listener.ts +98 -0
- package/src/transport/reservation-store.ts +312 -0
- package/src/utils.ts +134 -0
@@ -0,0 +1,313 @@
|
|
1
|
+
import { TypedEventEmitter, setMaxListeners } from '@libp2p/interface/events';
|
2
|
+
import { peerIdFromBytes } from '@libp2p/peer-id';
|
3
|
+
import { RecordEnvelope } from '@libp2p/peer-record';
|
4
|
+
import { multiaddr } from '@multiformats/multiaddr';
|
5
|
+
import { pbStream } from 'it-protobuf-stream';
|
6
|
+
import pDefer from 'p-defer';
|
7
|
+
import { CIRCUIT_PROTO_CODE, DEFAULT_HOP_TIMEOUT, MAX_CONNECTIONS, RELAY_SOURCE_TAG, RELAY_V2_HOP_CODEC, RELAY_V2_STOP_CODEC } from '../constants.js';
|
8
|
+
import { HopMessage, Status, StopMessage } from '../pb/index.js';
|
9
|
+
import { createLimitedRelay } from '../utils.js';
|
10
|
+
import { AdvertService } from './advert-service.js';
|
11
|
+
import { ReservationStore } from './reservation-store.js';
|
12
|
+
import { ReservationVoucherRecord } from './reservation-voucher.js';
|
13
|
+
const isRelayAddr = (ma) => ma.protoCodes().includes(CIRCUIT_PROTO_CODE);
|
14
|
+
const defaults = {
|
15
|
+
maxOutboundStopStreams: MAX_CONNECTIONS
|
16
|
+
};
|
17
|
+
class CircuitRelayServer extends TypedEventEmitter {
|
18
|
+
registrar;
|
19
|
+
peerStore;
|
20
|
+
addressManager;
|
21
|
+
peerId;
|
22
|
+
connectionManager;
|
23
|
+
connectionGater;
|
24
|
+
reservationStore;
|
25
|
+
advertService;
|
26
|
+
started;
|
27
|
+
hopTimeout;
|
28
|
+
shutdownController;
|
29
|
+
maxInboundHopStreams;
|
30
|
+
maxOutboundHopStreams;
|
31
|
+
maxOutboundStopStreams;
|
32
|
+
log;
|
33
|
+
/**
|
34
|
+
* Creates an instance of Relay
|
35
|
+
*/
|
36
|
+
constructor(components, init = {}) {
|
37
|
+
super();
|
38
|
+
this.log = components.logger.forComponent('libp2p:circuit-relay:server');
|
39
|
+
this.registrar = components.registrar;
|
40
|
+
this.peerStore = components.peerStore;
|
41
|
+
this.addressManager = components.addressManager;
|
42
|
+
this.peerId = components.peerId;
|
43
|
+
this.connectionManager = components.connectionManager;
|
44
|
+
this.connectionGater = components.connectionGater;
|
45
|
+
this.started = false;
|
46
|
+
this.hopTimeout = init?.hopTimeout ?? DEFAULT_HOP_TIMEOUT;
|
47
|
+
this.shutdownController = new AbortController();
|
48
|
+
this.maxInboundHopStreams = init.maxInboundHopStreams;
|
49
|
+
this.maxOutboundHopStreams = init.maxOutboundHopStreams;
|
50
|
+
this.maxOutboundStopStreams = init.maxOutboundStopStreams ?? defaults.maxOutboundStopStreams;
|
51
|
+
setMaxListeners(Infinity, this.shutdownController.signal);
|
52
|
+
if (init.advertise != null && init.advertise !== false) {
|
53
|
+
this.advertService = new AdvertService(components, init.advertise === true ? undefined : init.advertise);
|
54
|
+
this.advertService.addEventListener('advert:success', () => {
|
55
|
+
this.safeDispatchEvent('relay:advert:success', {});
|
56
|
+
});
|
57
|
+
this.advertService.addEventListener('advert:error', (evt) => {
|
58
|
+
this.safeDispatchEvent('relay:advert:error', { detail: evt.detail });
|
59
|
+
});
|
60
|
+
}
|
61
|
+
this.reservationStore = new ReservationStore(init.reservations);
|
62
|
+
}
|
63
|
+
isStarted() {
|
64
|
+
return this.started;
|
65
|
+
}
|
66
|
+
/**
|
67
|
+
* Start Relay service
|
68
|
+
*/
|
69
|
+
async start() {
|
70
|
+
if (this.started) {
|
71
|
+
return;
|
72
|
+
}
|
73
|
+
// Advertise service if HOP enabled and advertising enabled
|
74
|
+
this.advertService?.start();
|
75
|
+
await this.registrar.handle(RELAY_V2_HOP_CODEC, (data) => {
|
76
|
+
void this.onHop(data).catch(err => {
|
77
|
+
this.log.error(err);
|
78
|
+
});
|
79
|
+
}, {
|
80
|
+
maxInboundStreams: this.maxInboundHopStreams,
|
81
|
+
maxOutboundStreams: this.maxOutboundHopStreams,
|
82
|
+
runOnTransientConnection: true
|
83
|
+
});
|
84
|
+
this.reservationStore.start();
|
85
|
+
this.started = true;
|
86
|
+
}
|
87
|
+
/**
|
88
|
+
* Stop Relay service
|
89
|
+
*/
|
90
|
+
async stop() {
|
91
|
+
this.advertService?.stop();
|
92
|
+
this.reservationStore.stop();
|
93
|
+
this.shutdownController.abort();
|
94
|
+
await this.registrar.unhandle(RELAY_V2_HOP_CODEC);
|
95
|
+
this.started = false;
|
96
|
+
}
|
97
|
+
async onHop({ connection, stream }) {
|
98
|
+
this.log('received circuit v2 hop protocol stream from %p', connection.remotePeer);
|
99
|
+
const hopTimeoutPromise = pDefer();
|
100
|
+
const timeout = setTimeout(() => {
|
101
|
+
hopTimeoutPromise.reject('timed out');
|
102
|
+
}, this.hopTimeout);
|
103
|
+
const pbstr = pbStream(stream);
|
104
|
+
try {
|
105
|
+
const request = await Promise.race([
|
106
|
+
pbstr.pb(HopMessage).read(),
|
107
|
+
hopTimeoutPromise.promise
|
108
|
+
]);
|
109
|
+
if (request?.type == null) {
|
110
|
+
throw new Error('request was invalid, could not read from stream');
|
111
|
+
}
|
112
|
+
this.log('received', request.type);
|
113
|
+
await Promise.race([
|
114
|
+
this.handleHopProtocol({
|
115
|
+
connection,
|
116
|
+
stream: pbstr,
|
117
|
+
request
|
118
|
+
}),
|
119
|
+
hopTimeoutPromise.promise
|
120
|
+
]);
|
121
|
+
}
|
122
|
+
catch (err) {
|
123
|
+
this.log.error('error while handling hop', err);
|
124
|
+
await pbstr.pb(HopMessage).write({
|
125
|
+
type: HopMessage.Type.STATUS,
|
126
|
+
status: Status.MALFORMED_MESSAGE
|
127
|
+
});
|
128
|
+
stream.abort(err);
|
129
|
+
}
|
130
|
+
finally {
|
131
|
+
clearTimeout(timeout);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
async handleHopProtocol({ stream, request, connection }) {
|
135
|
+
this.log('received hop message');
|
136
|
+
switch (request.type) {
|
137
|
+
case HopMessage.Type.RESERVE:
|
138
|
+
await this.handleReserve({ stream, request, connection });
|
139
|
+
break;
|
140
|
+
case HopMessage.Type.CONNECT:
|
141
|
+
await this.handleConnect({ stream, request, connection });
|
142
|
+
break;
|
143
|
+
default: {
|
144
|
+
this.log.error('invalid hop request type %s via peer %p', request.type, connection.remotePeer);
|
145
|
+
await stream.pb(HopMessage).write({ type: HopMessage.Type.STATUS, status: Status.UNEXPECTED_MESSAGE });
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
async handleReserve({ stream, request, connection }) {
|
150
|
+
const hopstr = stream.pb(HopMessage);
|
151
|
+
this.log('hop reserve request from %p', connection.remotePeer);
|
152
|
+
if (isRelayAddr(connection.remoteAddr)) {
|
153
|
+
this.log.error('relay reservation over circuit connection denied for peer: %p', connection.remotePeer);
|
154
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.PERMISSION_DENIED });
|
155
|
+
return;
|
156
|
+
}
|
157
|
+
if ((await this.connectionGater.denyInboundRelayReservation?.(connection.remotePeer)) === true) {
|
158
|
+
this.log.error('reservation for %p denied by connection gater', connection.remotePeer);
|
159
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.PERMISSION_DENIED });
|
160
|
+
return;
|
161
|
+
}
|
162
|
+
const result = this.reservationStore.reserve(connection.remotePeer, connection.remoteAddr);
|
163
|
+
if (result.status !== Status.OK) {
|
164
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: result.status });
|
165
|
+
return;
|
166
|
+
}
|
167
|
+
try {
|
168
|
+
// tag relay target peer
|
169
|
+
// result.expire is non-null if `ReservationStore.reserve` returns with status == OK
|
170
|
+
if (result.expire != null) {
|
171
|
+
const ttl = (result.expire * 1000) - Date.now();
|
172
|
+
await this.peerStore.merge(connection.remotePeer, {
|
173
|
+
tags: {
|
174
|
+
[RELAY_SOURCE_TAG]: { value: 1, ttl }
|
175
|
+
}
|
176
|
+
});
|
177
|
+
}
|
178
|
+
await hopstr.write({
|
179
|
+
type: HopMessage.Type.STATUS,
|
180
|
+
status: Status.OK,
|
181
|
+
reservation: await this.makeReservation(connection.remotePeer, BigInt(result.expire ?? 0)),
|
182
|
+
limit: this.reservationStore.get(connection.remotePeer)?.limit
|
183
|
+
});
|
184
|
+
this.log('sent confirmation response to %s', connection.remotePeer);
|
185
|
+
}
|
186
|
+
catch (err) {
|
187
|
+
this.log.error('failed to send confirmation response to %p', connection.remotePeer, err);
|
188
|
+
this.reservationStore.removeReservation(connection.remotePeer);
|
189
|
+
}
|
190
|
+
}
|
191
|
+
async makeReservation(remotePeer, expire) {
|
192
|
+
const addrs = [];
|
193
|
+
for (const relayAddr of this.addressManager.getAddresses()) {
|
194
|
+
if (relayAddr.toString().includes('/p2p-circuit')) {
|
195
|
+
continue;
|
196
|
+
}
|
197
|
+
addrs.push(relayAddr.bytes);
|
198
|
+
}
|
199
|
+
const voucher = await RecordEnvelope.seal(new ReservationVoucherRecord({
|
200
|
+
peer: remotePeer,
|
201
|
+
relay: this.peerId,
|
202
|
+
expiration: Number(expire)
|
203
|
+
}), this.peerId);
|
204
|
+
return {
|
205
|
+
addrs,
|
206
|
+
expire,
|
207
|
+
voucher: voucher.marshal()
|
208
|
+
};
|
209
|
+
}
|
210
|
+
async handleConnect({ stream, request, connection }) {
|
211
|
+
const hopstr = stream.pb(HopMessage);
|
212
|
+
if (isRelayAddr(connection.remoteAddr)) {
|
213
|
+
this.log.error('relay reservation over circuit connection denied for peer: %p', connection.remotePeer);
|
214
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.PERMISSION_DENIED });
|
215
|
+
return;
|
216
|
+
}
|
217
|
+
this.log('hop connect request from %p', connection.remotePeer);
|
218
|
+
let dstPeer;
|
219
|
+
try {
|
220
|
+
if (request.peer == null) {
|
221
|
+
this.log.error('no peer info in hop connect request');
|
222
|
+
throw new Error('no peer info in request');
|
223
|
+
}
|
224
|
+
request.peer.addrs.forEach(multiaddr);
|
225
|
+
dstPeer = peerIdFromBytes(request.peer.id);
|
226
|
+
}
|
227
|
+
catch (err) {
|
228
|
+
this.log.error('invalid hop connect request via peer %p %s', connection.remotePeer, err);
|
229
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.MALFORMED_MESSAGE });
|
230
|
+
return;
|
231
|
+
}
|
232
|
+
if (!this.reservationStore.hasReservation(dstPeer)) {
|
233
|
+
this.log.error('hop connect denied for destination peer %p not having a reservation for %p with status %s', dstPeer, connection.remotePeer, Status.NO_RESERVATION);
|
234
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.NO_RESERVATION });
|
235
|
+
return;
|
236
|
+
}
|
237
|
+
if ((await this.connectionGater.denyOutboundRelayedConnection?.(connection.remotePeer, dstPeer)) === true) {
|
238
|
+
this.log.error('hop connect for %p to %p denied by connection gater', connection.remotePeer, dstPeer);
|
239
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.PERMISSION_DENIED });
|
240
|
+
return;
|
241
|
+
}
|
242
|
+
const connections = this.connectionManager.getConnections(dstPeer);
|
243
|
+
if (connections.length === 0) {
|
244
|
+
this.log('hop connect denied for destination peer %p not having a connection for %p as there is no destination connection', dstPeer, connection.remotePeer);
|
245
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.NO_RESERVATION });
|
246
|
+
return;
|
247
|
+
}
|
248
|
+
const destinationConnection = connections[0];
|
249
|
+
const destinationStream = await this.stopHop({
|
250
|
+
connection: destinationConnection,
|
251
|
+
request: {
|
252
|
+
type: StopMessage.Type.CONNECT,
|
253
|
+
peer: {
|
254
|
+
id: connection.remotePeer.toBytes(),
|
255
|
+
addrs: []
|
256
|
+
}
|
257
|
+
}
|
258
|
+
});
|
259
|
+
if (destinationStream == null) {
|
260
|
+
this.log.error('failed to open stream to destination peer %p', destinationConnection?.remotePeer);
|
261
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.CONNECTION_FAILED });
|
262
|
+
return;
|
263
|
+
}
|
264
|
+
await hopstr.write({ type: HopMessage.Type.STATUS, status: Status.OK });
|
265
|
+
const sourceStream = stream.unwrap();
|
266
|
+
this.log('connection from %p to %p established - merging streams', connection.remotePeer, dstPeer);
|
267
|
+
const limit = this.reservationStore.get(dstPeer)?.limit;
|
268
|
+
// Short circuit the two streams to create the relayed connection
|
269
|
+
createLimitedRelay(sourceStream, destinationStream, this.shutdownController.signal, limit, {
|
270
|
+
log: this.log
|
271
|
+
});
|
272
|
+
}
|
273
|
+
/**
|
274
|
+
* Send a STOP request to the target peer that the dialing peer wants to contact
|
275
|
+
*/
|
276
|
+
async stopHop({ connection, request }) {
|
277
|
+
this.log('starting circuit relay v2 stop request to %s', connection.remotePeer);
|
278
|
+
const stream = await connection.newStream([RELAY_V2_STOP_CODEC], {
|
279
|
+
maxOutboundStreams: this.maxOutboundStopStreams,
|
280
|
+
runOnTransientConnection: true
|
281
|
+
});
|
282
|
+
const pbstr = pbStream(stream);
|
283
|
+
const stopstr = pbstr.pb(StopMessage);
|
284
|
+
await stopstr.write(request);
|
285
|
+
let response;
|
286
|
+
try {
|
287
|
+
response = await stopstr.read();
|
288
|
+
}
|
289
|
+
catch (err) {
|
290
|
+
this.log.error('error parsing stop message response from %p', connection.remotePeer);
|
291
|
+
}
|
292
|
+
if (response == null) {
|
293
|
+
this.log.error('could not read response from %p', connection.remotePeer);
|
294
|
+
await stream.close();
|
295
|
+
return;
|
296
|
+
}
|
297
|
+
if (response.status === Status.OK) {
|
298
|
+
this.log('stop request to %p was successful', connection.remotePeer);
|
299
|
+
return pbstr.unwrap();
|
300
|
+
}
|
301
|
+
this.log('stop request failed with code %d', response.status);
|
302
|
+
await stream.close();
|
303
|
+
}
|
304
|
+
get reservations() {
|
305
|
+
return this.reservationStore.reservations;
|
306
|
+
}
|
307
|
+
}
|
308
|
+
export function circuitRelayServer(init = {}) {
|
309
|
+
return (components) => {
|
310
|
+
return new CircuitRelayServer(components, init);
|
311
|
+
};
|
312
|
+
}
|
313
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/server/index.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import { PeerMap } from '@libp2p/peer-collections';
|
2
|
+
import { type Limit, Status } from '../pb/index.js';
|
3
|
+
import type { RelayReservation } from '../index.js';
|
4
|
+
import type { RecursivePartial } from '@libp2p/interface';
|
5
|
+
import type { PeerId } from '@libp2p/interface/peer-id';
|
6
|
+
import type { Startable } from '@libp2p/interface/startable';
|
7
|
+
import type { Multiaddr } from '@multiformats/multiaddr';
|
8
|
+
export type ReservationStatus = Status.OK | Status.PERMISSION_DENIED | Status.RESERVATION_REFUSED;
|
9
|
+
export interface ReservationStoreInit {
|
10
|
+
maxReservations?: number;
|
11
|
+
reservationClearInterval?: number;
|
12
|
+
applyDefaultLimit?: boolean;
|
13
|
+
/**
|
14
|
+
* reservation ttl, default: 2 hours
|
15
|
+
*/
|
16
|
+
reservationTtl?: number;
|
17
|
+
/**
|
18
|
+
* The maximum time a relayed connection can be open for
|
19
|
+
*/
|
20
|
+
defaultDurationLimit?: number;
|
21
|
+
/**
|
22
|
+
* The maximum amount of data allowed to be transferred over a relayed connection
|
23
|
+
*/
|
24
|
+
defaultDataLimit?: bigint;
|
25
|
+
}
|
26
|
+
export type ReservationStoreOptions = RecursivePartial<ReservationStoreInit>;
|
27
|
+
export declare class ReservationStore implements Startable {
|
28
|
+
readonly reservations: PeerMap<RelayReservation>;
|
29
|
+
private _started;
|
30
|
+
private interval;
|
31
|
+
private readonly maxReservations;
|
32
|
+
private readonly reservationClearInterval;
|
33
|
+
private readonly applyDefaultLimit;
|
34
|
+
private readonly reservationTtl;
|
35
|
+
private readonly defaultDurationLimit;
|
36
|
+
private readonly defaultDataLimit;
|
37
|
+
constructor(options?: ReservationStoreOptions);
|
38
|
+
isStarted(): boolean;
|
39
|
+
start(): void;
|
40
|
+
stop(): void;
|
41
|
+
reserve(peer: PeerId, addr: Multiaddr, limit?: Limit): {
|
42
|
+
status: ReservationStatus;
|
43
|
+
expire?: number;
|
44
|
+
};
|
45
|
+
removeReservation(peer: PeerId): void;
|
46
|
+
hasReservation(dst: PeerId): boolean;
|
47
|
+
get(peer: PeerId): RelayReservation | undefined;
|
48
|
+
}
|
49
|
+
//# sourceMappingURL=reservation-store.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"reservation-store.d.ts","sourceRoot":"","sources":["../../../src/server/reservation-store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AAElD,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAA;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAA;AACzD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAA;AACvD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAC5D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAExD,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,EAAE,GAAG,MAAM,CAAC,iBAAiB,GAAG,MAAM,CAAC,mBAAmB,CAAA;AAEjG,MAAM,WAAW,oBAAoB;IAInC,eAAe,CAAC,EAAE,MAAM,CAAA;IAIxB,wBAAwB,CAAC,EAAE,MAAM,CAAA;IAIjC,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAC1B;AAED,MAAM,MAAM,uBAAuB,GAAG,gBAAgB,CAAC,oBAAoB,CAAC,CAAA;AAE5E,qBAAa,gBAAiB,YAAW,SAAS;IAChD,SAAgB,YAAY,4BAAkC;IAC9D,OAAO,CAAC,QAAQ,CAAQ;IACxB,OAAO,CAAC,QAAQ,CAAK;IACrB,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAQ;IACxC,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAQ;IACjD,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAS;IAC3C,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAQ;IACvC,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAQ;IAC7C,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAQ;gBAE5B,OAAO,GAAE,uBAA4B;IASlD,SAAS,IAAK,OAAO;IAIrB,KAAK,IAAK,IAAI;IAkBd,IAAI,IAAK,IAAI;IAIb,OAAO,CAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,KAAK,GAAG;QAAE,MAAM,EAAE,iBAAiB,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE;IAkBtG,iBAAiB,CAAE,IAAI,EAAE,MAAM,GAAG,IAAI;IAItC,cAAc,CAAE,GAAG,EAAE,MAAM,GAAG,OAAO;IAIrC,GAAG,CAAE,IAAI,EAAE,MAAM,GAAG,gBAAgB,GAAG,SAAS;CAGjD"}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
import { PeerMap } from '@libp2p/peer-collections';
|
2
|
+
import { DEFAULT_DATA_LIMIT, DEFAULT_DURATION_LIMIT, DEFAULT_MAX_RESERVATION_CLEAR_INTERVAL, DEFAULT_MAX_RESERVATION_STORE_SIZE, DEFAULT_MAX_RESERVATION_TTL } from '../constants.js';
|
3
|
+
import { Status } from '../pb/index.js';
|
4
|
+
export class ReservationStore {
|
5
|
+
reservations = new PeerMap();
|
6
|
+
_started = false;
|
7
|
+
interval;
|
8
|
+
maxReservations;
|
9
|
+
reservationClearInterval;
|
10
|
+
applyDefaultLimit;
|
11
|
+
reservationTtl;
|
12
|
+
defaultDurationLimit;
|
13
|
+
defaultDataLimit;
|
14
|
+
constructor(options = {}) {
|
15
|
+
this.maxReservations = options.maxReservations ?? DEFAULT_MAX_RESERVATION_STORE_SIZE;
|
16
|
+
this.reservationClearInterval = options.reservationClearInterval ?? DEFAULT_MAX_RESERVATION_CLEAR_INTERVAL;
|
17
|
+
this.applyDefaultLimit = options.applyDefaultLimit !== false;
|
18
|
+
this.reservationTtl = options.reservationTtl ?? DEFAULT_MAX_RESERVATION_TTL;
|
19
|
+
this.defaultDurationLimit = options.defaultDurationLimit ?? DEFAULT_DURATION_LIMIT;
|
20
|
+
this.defaultDataLimit = options.defaultDataLimit ?? DEFAULT_DATA_LIMIT;
|
21
|
+
}
|
22
|
+
isStarted() {
|
23
|
+
return this._started;
|
24
|
+
}
|
25
|
+
start() {
|
26
|
+
if (this._started) {
|
27
|
+
return;
|
28
|
+
}
|
29
|
+
this._started = true;
|
30
|
+
this.interval = setInterval(() => {
|
31
|
+
const now = (new Date()).getTime();
|
32
|
+
this.reservations.forEach((r, k) => {
|
33
|
+
if (r.expire.getTime() < now) {
|
34
|
+
this.reservations.delete(k);
|
35
|
+
}
|
36
|
+
});
|
37
|
+
}, this.reservationClearInterval);
|
38
|
+
}
|
39
|
+
stop() {
|
40
|
+
clearInterval(this.interval);
|
41
|
+
}
|
42
|
+
reserve(peer, addr, limit) {
|
43
|
+
if (this.reservations.size >= this.maxReservations && !this.reservations.has(peer)) {
|
44
|
+
return { status: Status.RESERVATION_REFUSED };
|
45
|
+
}
|
46
|
+
const expire = new Date(Date.now() + this.reservationTtl);
|
47
|
+
let checkedLimit;
|
48
|
+
if (this.applyDefaultLimit) {
|
49
|
+
checkedLimit = limit ?? { data: this.defaultDataLimit, duration: this.defaultDurationLimit };
|
50
|
+
}
|
51
|
+
this.reservations.set(peer, { addr, expire, limit: checkedLimit });
|
52
|
+
// return expiry time in seconds
|
53
|
+
return { status: Status.OK, expire: Math.round(expire.getTime() / 1000) };
|
54
|
+
}
|
55
|
+
removeReservation(peer) {
|
56
|
+
this.reservations.delete(peer);
|
57
|
+
}
|
58
|
+
hasReservation(dst) {
|
59
|
+
return this.reservations.has(dst);
|
60
|
+
}
|
61
|
+
get(peer) {
|
62
|
+
return this.reservations.get(peer);
|
63
|
+
}
|
64
|
+
}
|
65
|
+
//# sourceMappingURL=reservation-store.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"reservation-store.js","sourceRoot":"","sources":["../../../src/server/reservation-store.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import type { PeerId } from '@libp2p/interface/peer-id';
|
2
|
+
import type { Record } from '@libp2p/interface/record';
|
3
|
+
export interface ReservationVoucherOptions {
|
4
|
+
relay: PeerId;
|
5
|
+
peer: PeerId;
|
6
|
+
expiration: number;
|
7
|
+
}
|
8
|
+
export declare class ReservationVoucherRecord implements Record {
|
9
|
+
readonly domain = "libp2p-relay-rsvp";
|
10
|
+
readonly codec: Uint8Array;
|
11
|
+
private readonly relay;
|
12
|
+
private readonly peer;
|
13
|
+
private readonly expiration;
|
14
|
+
constructor({ relay, peer, expiration }: ReservationVoucherOptions);
|
15
|
+
marshal(): Uint8Array;
|
16
|
+
equals(other: Record): boolean;
|
17
|
+
}
|
18
|
+
//# sourceMappingURL=reservation-voucher.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"reservation-voucher.d.ts","sourceRoot":"","sources":["../../../src/server/reservation-voucher.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAA;AACvD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAA;AAEtD,MAAM,WAAW,yBAAyB;IACxC,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAAa,wBAAyB,YAAW,MAAM;IACrD,SAAgB,MAAM,uBAAsB;IAC5C,SAAgB,KAAK,aAA+B;IAEpD,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAQ;IAC9B,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAQ;IAC7B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAQ;gBAEtB,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,yBAAyB;IAMnE,OAAO,IAAK,UAAU;IAQtB,MAAM,CAAE,KAAK,EAAE,MAAM,GAAG,OAAO;CAkBhC"}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { ReservationVoucher } from '../pb/index.js';
|
2
|
+
export class ReservationVoucherRecord {
|
3
|
+
domain = 'libp2p-relay-rsvp';
|
4
|
+
codec = new Uint8Array([0x03, 0x02]);
|
5
|
+
relay;
|
6
|
+
peer;
|
7
|
+
expiration;
|
8
|
+
constructor({ relay, peer, expiration }) {
|
9
|
+
this.relay = relay;
|
10
|
+
this.peer = peer;
|
11
|
+
this.expiration = expiration;
|
12
|
+
}
|
13
|
+
marshal() {
|
14
|
+
return ReservationVoucher.encode({
|
15
|
+
relay: this.relay.toBytes(),
|
16
|
+
peer: this.peer.toBytes(),
|
17
|
+
expiration: BigInt(this.expiration)
|
18
|
+
});
|
19
|
+
}
|
20
|
+
equals(other) {
|
21
|
+
if (!(other instanceof ReservationVoucherRecord)) {
|
22
|
+
return false;
|
23
|
+
}
|
24
|
+
if (!this.peer.equals(other.peer)) {
|
25
|
+
return false;
|
26
|
+
}
|
27
|
+
if (!this.relay.equals(other.relay)) {
|
28
|
+
return false;
|
29
|
+
}
|
30
|
+
if (this.expiration !== other.expiration) {
|
31
|
+
return false;
|
32
|
+
}
|
33
|
+
return true;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
//# sourceMappingURL=reservation-voucher.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"reservation-voucher.js","sourceRoot":"","sources":["../../../src/server/reservation-voucher.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AAUnD,MAAM,OAAO,wBAAwB;IACnB,MAAM,GAAG,mBAAmB,CAAA;IAC5B,KAAK,GAAG,IAAI,UAAU,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAA;IAEnC,KAAK,CAAQ;IACb,IAAI,CAAQ;IACZ,UAAU,CAAQ;IAEnC,YAAa,EAAE,KAAK,EAAE,IAAI,EAAE,UAAU,EAA6B;QACjE,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;QAClB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAChB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;IAC9B,CAAC;IAED,OAAO;QACL,OAAO,kBAAkB,CAAC,MAAM,CAAC;YAC/B,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE;YAC3B,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACzB,UAAU,EAAE,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC;SACpC,CAAC,CAAA;IACJ,CAAC;IAED,MAAM,CAAE,KAAa;QACnB,IAAI,CAAC,CAAC,KAAK,YAAY,wBAAwB,CAAC,EAAE;YAChD,OAAO,KAAK,CAAA;SACb;QACD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE;YACjC,OAAO,KAAK,CAAA;SACb;QAED,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE;YACnC,OAAO,KAAK,CAAA;SACb;QAED,IAAI,IAAI,CAAC,UAAU,KAAK,KAAK,CAAC,UAAU,EAAE;YACxC,OAAO,KAAK,CAAA;SACb;QAED,OAAO,IAAI,CAAA;IACb,CAAC;CACF"}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import { TypedEventEmitter } from '@libp2p/interface/events';
|
2
|
+
import type { ComponentLogger } from '@libp2p/interface';
|
3
|
+
import type { ContentRouting } from '@libp2p/interface/content-routing';
|
4
|
+
import type { PeerId } from '@libp2p/interface/peer-id';
|
5
|
+
import type { PeerStore } from '@libp2p/interface/peer-store';
|
6
|
+
import type { Startable } from '@libp2p/interface/startable';
|
7
|
+
import type { ConnectionManager } from '@libp2p/interface-internal/connection-manager';
|
8
|
+
import type { Registrar } from '@libp2p/interface-internal/registrar';
|
9
|
+
import type { TransportManager } from '@libp2p/interface-internal/transport-manager';
|
10
|
+
export interface RelayDiscoveryEvents {
|
11
|
+
'relay:discover': CustomEvent<PeerId>;
|
12
|
+
}
|
13
|
+
export interface RelayDiscoveryComponents {
|
14
|
+
peerId: PeerId;
|
15
|
+
peerStore: PeerStore;
|
16
|
+
connectionManager: ConnectionManager;
|
17
|
+
transportManager: TransportManager;
|
18
|
+
contentRouting: ContentRouting;
|
19
|
+
registrar: Registrar;
|
20
|
+
logger: ComponentLogger;
|
21
|
+
}
|
22
|
+
/**
|
23
|
+
* ReservationManager automatically makes a circuit v2 reservation on any connected
|
24
|
+
* peers that support the circuit v2 HOP protocol.
|
25
|
+
*/
|
26
|
+
export declare class RelayDiscovery extends TypedEventEmitter<RelayDiscoveryEvents> implements Startable {
|
27
|
+
private readonly peerId;
|
28
|
+
private readonly peerStore;
|
29
|
+
private readonly contentRouting;
|
30
|
+
private readonly registrar;
|
31
|
+
private started;
|
32
|
+
private topologyId?;
|
33
|
+
private readonly log;
|
34
|
+
constructor(components: RelayDiscoveryComponents);
|
35
|
+
isStarted(): boolean;
|
36
|
+
start(): Promise<void>;
|
37
|
+
stop(): void;
|
38
|
+
/**
|
39
|
+
* Try to listen on available hop relay connections.
|
40
|
+
* The following order will happen while we do not have enough relays:
|
41
|
+
*
|
42
|
+
* 1. Check the metadata store for known relays, try to listen on the ones we are already connected
|
43
|
+
* 2. Dial and try to listen on the peers we know that support hop but are not connected
|
44
|
+
* 3. Search the network
|
45
|
+
*/
|
46
|
+
discover(): Promise<void>;
|
47
|
+
}
|
48
|
+
//# sourceMappingURL=discovery.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"discovery.d.ts","sourceRoot":"","sources":["../../../src/transport/discovery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAA;AAM5D,OAAO,KAAK,EAAE,eAAe,EAAU,MAAM,mBAAmB,CAAA;AAChE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAA;AACvE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAA;AACvD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAC5D,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+CAA+C,CAAA;AACtF,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;AACrE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8CAA8C,CAAA;AAEpF,MAAM,WAAW,oBAAoB;IACnC,gBAAgB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAA;CACtC;AAED,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,SAAS,CAAA;IACpB,iBAAiB,EAAE,iBAAiB,CAAA;IACpC,gBAAgB,EAAE,gBAAgB,CAAA;IAClC,cAAc,EAAE,cAAc,CAAA;IAC9B,SAAS,EAAE,SAAS,CAAA;IACpB,MAAM,EAAE,eAAe,CAAA;CACxB;AAED;;;GAGG;AACH,qBAAa,cAAe,SAAQ,iBAAiB,CAAC,oBAAoB,CAAE,YAAW,SAAS;IAC9F,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAQ;IAC/B,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAW;IACrC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAgB;IAC/C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAW;IACrC,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,UAAU,CAAC,CAAQ;IAC3B,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAQ;gBAEf,UAAU,EAAE,wBAAwB;IAWjD,SAAS,IAAK,OAAO;IAIf,KAAK,IAAK,OAAO,CAAC,IAAI,CAAC;IAkB7B,IAAI,IAAK,IAAI;IAQb;;;;;;;OAOG;IACG,QAAQ,IAAK,OAAO,CAAC,IAAI,CAAC;CA8CjC"}
|