Coder Social home page Coder Social logo

mp2p's Introduction

mp2p - Multicast Peer to Peer

Objective: "I want to be able to send encrypted data between devices, regardless of NAT and firewalls, and without an intermediate server"

Problem:

  • NAT prevents peer-to-peer communication for ipv4
  • Firewalls prevent peer-to-peer communication for ipv6

Premise:

  1. A node can listen on a multicast address
  2. A node can send to any multicast address
  3. Nodes can identify themselves with public keys

Theory:

  • Nodes can communicate by sending to each other's self-chosen multicast address, identifying themselves with their public keys.
  • Nodes can communicate securely by performing diffie hellman key exchanges even though they are using addresses that can be listened to by any other node.

Proof Of Concept

I wrote two scripts, one behaving like a client, and one behaving like a server. The client must know the multicast address of the server and the server's public key. The client can then send the server a signed address declaration, initiate a session where they perform a diffie hellman key exchange, and then send messages back and forth.

This could be shifted in the network stack to work more similarly to tls, but this is a POC.

Running the server

$ go run examples/server/main.go
my addr: ff1e:92a8:3287:fe8b:9103:a9e6:26f:73c6
my publ: afb8b2676fde0ec8b64aa1ff7db5c591605191ec48e3baba791e57884085f6bd

The server can also take the -ipv4 flag and use an ipv4 address. The client can take an ipv4 address and generates its own ipv4 listening address. (That's my machines ipv6 address and key, my ipv4 address is 224.0.245.100)

Running the client

$ cd examples/client
$ go build
$ ./client -addr ff1e:92a8:3287:fe8b:9103:a9e6:26f:73c6 -publ afb8b2676fde0ec8b64aa1ff7db5c591605191ec48e3baba791e57884085f6bd
my addr: ff1e:7837:c8de:baf8:88e9:7051:6056:c140
my publ: 5bb97343a7b97e17f8944bf6f7a3cf36946be2928ad6270b14e854de802ee68a

Results

This is working on my local network, but I haven't gotten a chance to test it outside of my network. If you ping my server ^^ and it works, definitely reach out! (my ipv4 address is 224.0.245.100)

Annecdotally, it works better to build the go client than to use go run. This generally requires a bunch of retrying... I'm working on making it more robust. I'm not sure why, but there seems to be a problem with actually joining the multicast group, or a problem staying in the group, idk...

I've come across a number of resources that say multicast isn't supported across the entire internet so this probably won't work in all cases, but it's a cool theory...

Addresses

The ipv6 spec has a range of globally routable, transient ipv6 multicast addresses that are essentially meant for use cases like this (prefix with ff1e), as well as a spec for unicast-prefixed multicast addresses (prefix with ff3e, and include unicast prefix). The ipv4 spec doesn't have quite the same intentional setup for self-assigned multicast addresses, so I approximately picked addresses from 224.0.224.0-224.0.249.255 (designated as unassigned by IANA).

I just set up a raspberry pi running the example server with:

  • ipv4 address: 224.0.247.161
  • ipv6 address: ff1e:4d1f:c255:1806:a036:db6e:77d:26f6 (using port 1024)
  • prefix6 addr: ff3e:80:2602:47:2243:bf02:8a39:de81 (using port 1026)
  • public key: 24b35b5e7d86fcf5a1348e023c794e081608b239c32d13cb65c51cb2a910f854

Cheers. Jack

mp2p's People

Contributors

jreamy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.