Omega DHT Relay
:test_tube: This project is still experimental. Do not use it in production.
Facilitating the transmission of the Omega DHT through framed streams, this approach aims to make decentralized networking accessible to all.
Installation
npm install @omegajs/dht-relay
Usage
On the relaying side:
import DHT from '@omegajs/gateway'
import { relay } from '@omegajs/dht-relay'
relay(new DHT(), stream)
On the relayed side:
import DHT from '@omegajs/dht-relay'
const dht = new DHT(stream)
From here, the API matches that of the Flock DHT: https://lab.l1fe.tech/omega/gateway#api
Transports
As a convenience, we provide stream wrappers for common transport protocols. These may or may not be appropriate for your particular use case and so your mileage may vary.
TCP
The TCP wrapper is a re-export of https://lab.l1fe.tech/omega/flock-secret-stream which adds both framing and encryption.
On the relaying side:
import net from 'net'
import DHT from '@omegajs/gateway'
import { relay } from '@omegajs/dht-relay'
import Stream from '@omegajs/dht-relay/tcp'
const dht = new DHT()
const server = net.createServer().listen(8080)
server.on('connection', (socket) => {
relay(dht, new Stream(false, socket))
})
On the relayed side:
import net from 'net'
import DHT from '@omegajs/dht-relay'
import Stream from '@omegajs/dht-relay/tcp'
const socket = net.connect(8080)
const dht = new DHT(new Stream(true, socket))
WebSocket
The WebSocket wrapper is a simple Duplex
stream that only adapts the interface of the WebSocket as the WebSocket API already provides its own framing and encryption.
On the relaying side:
import { WebSocketServer } from 'ws'
import DHT from '@omegajs/gateway'
import { relay } from '@omegajs/dht-relay'
import Stream from '@omegajs/dht-relay/ws'
const dht = new DHT()
const server = new WebSocketServer({ port: 8080 })
server.on('connection', (socket) => {
relay(dht, new Stream(false, socket))
})
On the relayed side:
import DHT from '@omegajs/dht-relay'
import Stream from '@omegajs/dht-relay/ws'
const socket = new WebSocket('ws://localhost:8080')
const dht = new DHT(new Stream(true, socket))
CLI
You can start a DHT relay in the command line:
npm install -g @omegajs/dht-relay
Run a DHT relay server:
dht-relay
If running behind a proxy like NGINX then add --behind-proxy
so logging info is correct.
Protocol
A reference implementation of the relay protocol can be found in the lib/protocol.js
module. The protocol is versioned and built on top of https://github.com/mafintosh/protomux.
Messages
All types are specified as their corresponding compact-encoding codec.
handshake
(0
)
uint8
Flags
fixed(32)
The public key of the peer- (if
custodial
is set) fixed(64)
The secret key
ping
(1
)
Empty
pong
(2
)
Empty
connect
(3
)
uint8
Flags
uint32
The alias of the streamfixed(32)
The public key of the peer- (if
custodial
is set) fixed(64)
The secret key fixed(32)
The public key of the remote peer
connection
(4
)
uint8
Flags
uint32
The alias of the streamuint32
The alias of the serverfixed(32)
The public key of the remote peer- (if
custodial
is set) fixed(64)
The Noise handshake hash - (if
custodial
is not set) uint32
The ID of the Noise handshake session
connected
(5
)
uint32
The alias of the streamuint32
The remote alias of the stream
incoming
(6
)
uint32
The ID of the requestuint32
The alias of the serverfixed(32)
The public key of the remote peerbuffer
The Noise handshake payload
deny
(7
)
uint32
The ID of the request
accept
(8
)
uint32
The ID of the request
destroy
(9
)
uint8
Flags
- (if
paired
is set) uint32
The alias of the stream - (if
paired
is not set) uint32
The remote alias of the stream - (if
error
is set) string
The reason the stream was destroyed
listen
(10
)
uint8
Flags
uint32
The alias of the serverfixed(32)
The public key of the server- (if
custodial
is set) fixed(64)
The secret key
listening
(11
)
uint32
The alias of the serveruint32
The remote alias of the serveripv4Address
The address of the server
close
(12
)
uint32
The alias of the server
closed
(13
)
uint32
The alias of the server
open
(14
)
uint8
Flags
uint32
The alias of the streamuint32
The alias of the server- (if
custodial
is set) fixed(64)
The Noise handshake hash - (if
custodial
is not set) uint32
The ID of the Noise handshake session
end
(15
)
uint32
The alias of the stream
data
(16
)
uint32
The alias of the streamarray(buffer)
The data sent
result
(17
)
uint32
The query IDbuffer
The query specific data
finished
(18
)
uint32
The query ID
lookup
(19
)
uint32
The query IDfixed(32)
The topic to look up
announce
(20
)
uint8
Flags
uint32
The query IDfixed(32)
The topic to announcefixed(32)
The public key to announce on- (if
custodial
is set) fixed(64)
The secret key
unannounce
(21
)
uint8
Flags
uint32
The query IDfixed(32)
The topic to unannouncefixed(32)
The public key that was announced on- (if
custodial
is set) fixed(64)
The secret key
signAnnounce
(22
)
uint32
The ID of the requestuint32
The alias of the signeefixed(32)
The roundtrip token of the peerbuffer
The ID of the peerarray(
ipv4Address
)
The addresses that may relay messages
signUnannounce
(23
)
uint32
The ID of the requestuint32
The alias of the signeefixed(32)
The roundtrip token of the peerbuffer
The ID of the peerarray(
ipv4Address
)
The addresses that may relay messages
signature
(24
)
uint32
The ID of the requestbuffer
The signature
noiseSend
(25
)
uint8
Flags
uint32
The ID of the handshake session- (if
isInitiator
is set) The alias of the remote stream buffer
The Noise handshake payload
noiseReceive
(26
)
uint8
Flags
uint32
The ID of the handshake session- (if
isInitiator
is not set) The alias of the server buffer
The Noise handshake payload
noiseReply
(27
)
uint8
Flags
isInitiator
: 1
complete
: 2
uint32
The ID of the handshake sessionbuffer
The Noise handshake payload- (if
isInitiator
and complete
are not set) fixed(32)
The public key of the remote peer - (if
complete
is set) fixed(32)
The ID of the remote stream - (if
complete
is set) fixed(32)
The holepunch secret
License
ISC