Paul Frazee

I work on a peer-to-peer browser called Beaker. I live in Austin TX and work at a company called Blue Link Labs. We run a public-peer service called Hashbase.

RSS Feed

<-- home

Announcing Hyperswarm

TL;DR: The Beaker browser team is releasing a new DHT-based toolset for connecting peers called Hyperswarm.

You may or may not be surprised to hear that connecting two computers over the Internet is difficult. Software needs to negotiate NATs, firewalls, and limited IPv4 addresses. This is one of many reasons why cloud services are so entrenched: they accept connections more reliably than home or mobile computers.

This is a challenge for Dat and the Beaker browser. Dat is a peer-to-peer network which needs to reliably connect users over the Internet and over LANs. Beaker uses Dat to serve websites without needing servers.

We currently rely on a tracker to get users connected. This is a tracker that we run, which isn’t ideal because we want Dat to be decentralized. We tried using BitTorrent’s Mainline DHT but the results just weren’t very good. Mainline doesn’t have the tools to hole-punch so the connections frequently failed, and live tests tended to give a lot of false-positives with few good hits.

So mafintosh decided to solve this by creating a new DHT which fits our needs.

Announcing the Hyperswarm preview

Hyperswarm is a stack of networking modules for finding peers and creating reliable connections. Users join the swarm for a “topic” and query periodically for other peers who are in the topic. When ready to connect, Hyperswarm helps create a socket between them using either UTP or TCP.

Hyperswarm uses a Kademlia DHT to track peers and arrange connections. The DHT itself includes mechanisms to holepunch NATs. For LAN-based discovery, we currently use multicast DNS.

const network = require('@hyperswarm/network')
const crypto = require('crypto')

const net = network()

// look for peers listed under this topic
const topic = crypto.createHash('sha256')
  .update('my-hyperswarm-topic')
  .digest()

net.join(topic, {
  lookup: true, // find & connect to peers
  announce: true // optional- announce self as a connection target
})

net.on('connection', (socket, details) => {
  console.log('new connection!', details)

  // you can now use the socket as a stream, eg:
  process.stdin.pipe(socket).pipe(process.stdout)
})

This is a preview release of Hyperswarm. We’re still ironing out the bugs, but we wanted to share the project now so that anybody that’s interested could get involved and try the code.

A few notes

Iterating on security

DHTs have a number of known denial-of-service vectors, including the “eclipse” and sybil attacks on the routing tables. There are some known mitigations which involve trust systems or crypto-puzzles, but they have tradeoffs.

We’re still thinking through the tradeoffs and haven’t implemented any mitigations yet. We’re going to iterate on this over time.

Hyperswarm is not anonymous

This is important to make clear:

Hyperswarm is not anonymous. It does not hide users’ IPs or attempt to mask metadata. Devices join topics by listing their IP so that other devices can establish connections.

The Dat protocol takes some steps to hide what the topics’ contents are. When downloading a dat, the protocol hashes the dat’s key in order to create the swarm topic. Only people who know the dat’s key can access the dat’s data or create new connections to people in the topic. That said, the members of the topics are still public.

The deployment strategy

To make the deployment backwards compatible, we’re going to update the tracker server to participate in the DHT. This will make it possible for old Dat clients to connect using the tracker, while new clients can connect using the DHT. The network won’t be split!

Getting started

If you want to try hyperswarm (and see if it really works) run these commands using the latest node:

npx @hyperswarm/connect-test

You should see output like:

★   ★   ★   ★   ★   ★
  ★   ★   ★   ★   ★
Hyperswarm Connect-Test
  ★   ★   ★   ★   ★
★   ★   ★   ★   ★   ★

▶ Testing hole-punchability...
✔ Your network is hole-punchable

▶ Joining hyperswarm under the sha256('connect-test') topic
ℹ Waiting for connections...

› New connection!
› New connection!
› New connection!

That’s all it does! It joins the hyperswarm under the ‘connect-test’ topic (hashed by sha256) and then arranges connections. (The connections aren’t used at all.)

Hyperswarm is MIT licensed open-source. You can find it in the following repositories:

  • network. The high-level interface for joining swarm topics and making connections.
  • discovery. The peer-discovery toolset used by the network module.
  • dht. The distributed hash-table implementation.

-pfrazee



Tweets: twitter.com/pfrazee

Code: github.com/pfrazee

Creating a peer-to-peer Web: beakerbrowser.com