rfc/waku.md

434 lines
21 KiB
Markdown
Raw Normal View History

Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
# Waku Whisper Specification
> Version 0.1.0 (Initial release)
>
> Authors: Oskar Thorén oskar@status.im, Dean Eigenmann dean@status.im
## Table of Contents
- [Abstract](#abstract)
- [Motivation](#motivation)
- [Specification](#specification)
- [Use of RLPx transport protocol](#use-of-rlpx-transport-protocol)
- [ABNF specification](#abnf-specification)
- [Packet Codes](#packet-codes)
- [Packet usage](#packet-usage)
- [Whisper Envelope data field (Optional)](#whisper-envelope-data-field-optional)
- [Payload Encryption](#payload-encryption)
- [Packet code Rationale](#packet-code-rationale)
- [Additional capabilities](#additional-capabilities)
- [Light node](#light-node)
- [Mailserver and client](#mailserver-and-client)
- [Backwards Compatibility](#backwards-compatibility)
- [Waku-Whisper bridging](#waku-whisper-bridging)
- [Forwards Compatibility](#forwards-compatibility)
- [Security considerations](#security-considerations)
- [Implementation Notes](#implementation-notes)
2019-11-26 03:40:04 +00:00
- [Implementation Matrix](#implementation-matrix)
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
- [Footnotes](#footnotes)
- [Changelog](#changelog)
- [Differences between shh/6 waku/0](#differences-between-shh6-waku0)
- [Acknowledgements](#acknowledgements)
- [Copyright](#copyright)
## Abstract
This specification describes the format of Waku messages within the ÐΞVp2p Wire Protocol. This spec substitutes [EIP- 627](https://eips.ethereum.org/EIPS/eip-627). Waku is a fork of the original Whisper protocol that enables better usability for resource restricted devices, such as mostly-offline bandwidth-constrained smartphones. It does this primarily through (a) light node support and (b) historic messages (with a mailserver). Additionally, other experimental features for better scalability and DDoS resistance are under development and will be part of future versions.
<!-- TODO: Add waku mode in v1, it isn't in the spec yet:
> Waku is a fork of the original Whisper protocol that enables better scalability and offline messaging, at the cost of some metadata protection guarantees. It does this through (a) light node support (b) historic messages (through a mailserver) (d) basic rate limiting.
-->
## Motivation
Waku was created to incrementally improve in areas that Whisper is lacking in, with special attention to resource restricted devices. We specify the standard for Waku messages in order to ensure forward compatibility of different Waku clients, backwards compatibility with Whisper clients, as well as to allow multiple implementations of Waku and its capabilities. We also modify the language to be more unambiguous, concise and consistent.
## Specification
### Use of RLPx transport protocol
2019-11-22 00:37:05 +00:00
All Waku messages are sent as devp2p RLPx transport protocol, version 5<sup>[1](https://github.com/ethereum/devp2p/blob/master/rlpx.md)</sup> packets. These packets MUST be RLP-encoded arrays of data containing two objects: packet code followed by another object (whose type depends on the packet code). See [informal RLP spec](https://github.com/ethereum/wiki/wiki/RLP) and the [Ethereum Yellow Paper, appendix B](https://ethereum.github.io/yellowpaper/paper.pdf) for more details on RLP.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
Waku is a RLPx subprotocol called `waku` with version `0`. The version number corresponds to the major version in the header spec.
### ABNF specification
Using [Augmented Backus-Naur form (ABNF)](https://tools.ietf.org/html/rfc5234) we have the following format:
<!-- TODO: This needs to be run through ABNF validator -->
<!-- TODO: packet-format / packet rules, compact into one somehow? -->
<!-- TOOD: ABNF floating point rep for pow? https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node19.html -->
```
2019-11-22 04:10:34 +00:00
bytes = [repeat] OCTET
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; Packet codes 0 - 127 are reserved for Waku protocol
2019-11-21 21:57:41 +00:00
packet-code = 0 / 1 / 2 / 3 / [ x4-127 ]
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
packet-format = "[" packet-code packet-format "]"
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
; packet-format needs to be paired with its corresponding packet-format
packet = "[" required-packet / [ optional-packet ] "]"
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
required-packet = 0 status / 1 messages / 2 pow-requirement / 3 bloom-filter
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
optional-packet = 126 p2p-request / 127 p2p-message
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
packet-format = "[" packet-code packet-format "]"
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
status = "[" version pow-requirement [ bloom-filter ] [ light-node ] "]"
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; version is "an integer (as specified in RLP)"
2019-11-22 04:10:34 +00:00
version = DIGIT
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-23 19:24:28 +00:00
messages = *waku-envelope
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; pow is "a single floating point value of PoW. This value is the IEEE 754 binary representation of 64-bit floating point number. Values of qNAN, sNAN, INF and -INF are not allowed. Negative values are also not allowed."
2019-11-21 21:57:41 +00:00
pow-requirement = pow
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; bloom filter is "a byte array"
2019-11-21 21:57:41 +00:00
bloom-filter = bytes
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-22 04:10:34 +00:00
light-node = BIT
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-23 19:24:28 +00:00
p2p-request = waku-envelope
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-23 19:24:28 +00:00
p2p-message = waku-envelope
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-21 21:57:41 +00:00
whisper-envelope = "[" expiry ttl topic data nonce "]"
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; 4 bytes (UNIX time in seconds)
2019-11-21 21:57:41 +00:00
expiry = bytes
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; 4 bytes (time-to-live in seconds)
2019-11-21 21:57:41 +00:00
ttl = bytes
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; 4 bytes of arbitrary data
2019-11-21 21:57:41 +00:00
topic = bytes
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; byte array of arbitrary size (contains encrypted message)
2019-11-21 21:57:41 +00:00
data = bytes
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
; 8 bytes of arbitrary data (used for PoW calculation)
2019-11-21 21:57:41 +00:00
nonce = bytes
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
```
All primitive types are RLP encoded. Note that, per RLP specification, integers are encoded starting from `0x00`.
### Packet Codes
The message codes reserved for Waku protocol: 0 - 127.
2019-11-22 04:40:18 +00:00
Messages with unknown codes MUST be ignored without generating any error, for forward compatibility of future versions.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
The Waku sub-protocol MUST support the following packet codes:
| Name | Int Value |
|----------------------------|-----------|
| Status | 0 |
| Messages | 1 |
| PoW Requirement | 2 |
| Bloom Filter | 3 |
The following message codes are optional, but they are reserved for specific purpose.
| Name | Int Value |
|----------------------------|-----------|
| P2P Request | 126 |
| P2P Message | 127 |
<!-- TODO: There are more packet codes we use in practice - see Adam's list -->
### Packet usage
**Status**
The bloom filter paramenter is optional; if it is missing or nil, the node is considered to be full node (i.e. accepts all messages).
The Status message serves as a Waku handshake and peers MUST exchange this
message upon connection. It MUST be sent after the RLPx handshake and prior to
any other Waku messages.
2019-11-26 18:29:40 +00:00
A Waku node MUST await the Status message from a peer before engaging in other Waku protocol activity with that peer.g
When a node does not receive the Status message from a peer, before a configurable timeout, it SHOULD disconnect from that peer.
Upon retrieval of the Status message, the node SHOULD validate the message
content and decide whether it is compatible with the Waku version and mode
its peer is advertising. The handshake is completed when the node has sent,
received and validated the Status message. Note that its peer might not be in
the same state.
When a node is receiving other Waku messages from a peer before a Status
message is received, the node MUST ignore these messages and SHOULD disconnect
from that peer.
Status messages received after the handshake is completed MUST also be ignored.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
**Messages**
2019-11-23 19:24:28 +00:00
This packet is used for sending the standard Waku envelopes.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
**PoW Requirement**
2019-11-23 19:24:28 +00:00
This packet is used by Waku nodes for dynamic adjustment of their individual PoW requirements. Recipient of this message should no longer deliver the sender messages with PoW lower than specified in this message.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
PoW is defined as average number of iterations, required to find the current BestBit (the number of leading zero bits in the hash), divided by message size and TTL:
PoW = (2**BestBit) / (size * TTL)
PoW calculation:
fn short_rlp(envelope) = rlp of envelope, excluding env_nonce field.
fn pow_hash(envelope, env_nonce) = sha3(short_rlp(envelope) ++ env_nonce)
fn pow(pow_hash, size, ttl) = 2**leading_zeros(pow_hash) / (size * ttl)
where size is the size of the RLP-encoded envelope, excluding env_nonce field (size of `short_rlp(envelope)`).
**Bloom Filter**
2019-11-23 19:24:28 +00:00
This packet is used by Waku nodes for sharing their interest in messages with specific topics.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
The Bloom filter is used to identify a number of topics to a peer without compromising (too much) privacy over precisely what topics are of interest. Precise control over the information content (and thus efficiency of the filter) may be maintained through the addition of bits.
Blooms are formed by the bitwise OR operation on a number of bloomed topics. The bloom function takes the topic and projects them onto a 512-bit slice. At most, three bits are marked for each bloomed topic.
The projection function is defined as a mapping from a 4-byte slice S to a 512-bit slice D; for ease of explanation, S will dereference to bytes, whereas D will dereference to bits.
LET D[*] = 0
FOREACH i IN { 0, 1, 2 } DO
LET n = S[i]
IF S[3] & (2 ** i) THEN n += 256
D[n] = 1
END FOR
OPTIONAL
**P2P Request**
2019-11-23 19:24:28 +00:00
This packet is used for sending Dapp-level peer-to-peer requests, e.g. Waku Mail Client requesting old messages from the Waku Mail Server.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
**P2P Message**
2019-11-23 19:24:28 +00:00
This packet is used for sending the peer-to-peer messages, which are not supposed to be forwarded any further. E.g. it might be used by the Waku Mail Server for delivery of old (expired) messages, which is otherwise not allowed.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
### Whisper Envelope data field (Optional)
<!-- TODO: ABNF this and make language more strong -->
2019-11-22 04:16:36 +00:00
This section outlines the OPTIONAL description of Data Field to set up an example.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
It is only relevant if you want to decrypt the incoming message, but if you only want to send a message, any other format would be perfectly valid and must be forwarded to the peers.
Data field contains encrypted message of the Envelope. In case of symmetric encryption, it also contains appended Salt (a.k.a. AES Nonce, 12 bytes). Plaintext (unencrypted) payload consists of the following concatenated fields: flags, auxiliary field, payload, padding and signature (in this sequence).
flags: 1 byte; first two bits contain the size of auxiliary field, third bit indicates whether the signature is present.
auxiliary field: up to 4 bytes; contains the size of payload.
payload: byte array of arbitrary size (may be zero).
padding: byte array of arbitrary size (may be zero).
signature: 65 bytes, if present.
salt: 12 bytes, if present (in case of symmetric encryption).
Those unable to decrypt the message data are also unable to access the signature. The signature, if provided, is the ECDSA signature of the Keccak-256 hash of the unencrypted data using the secret key of the originator identity. The signature is serialised as the concatenation of the `R`, `S` and `V` parameters of the SECP-256k1 ECDSA signature, in that order. `R` and `S` are both big-endian encoded, fixed-width 256-bit unsigned. `V` is an 8-bit big-endian encoded, non-normalised and should be either 27 or 28.
The padding field was introduced in order to align the message size, since message size alone might reveal important metainformation. Padding can be arbitrary size. However, it is recommended that the size of Data Field (excuding the Salt) before encryption (i.e. plain text) should be factor of 256 bytes.
### Payload Encryption
Asymmetric encryption uses the standard Elliptic Curve Integrated Encryption Scheme with SECP-256k1 public key.
Symmetric encryption uses AES GCM algorithm with random 96-bit nonce.
### Packet code Rationale
2019-11-23 19:24:28 +00:00
Packet codes `0x00` and `0x01` are already used in all Waku / Whisper versions.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-22 00:27:03 +00:00
Packet code `0x02` will be necessary for the future development of Whisper. It will provide possiblitity to adjust the PoW requirement in real time. It is better to allow the network to govern itself, rather than hardcode any specific value for minimal PoW requirement.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-22 00:27:03 +00:00
Packet code `0x03` will be necessary for scalability of the network. In case of too much traffic, the nodes will be able to request and receive only the messages they are interested in.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-23 19:24:28 +00:00
Packet codes `0x7E` and `0x7F` may be used to implement Waku Mail Server and Client. Without P2P messages it would be impossible to deliver the old messages, since they will be recognized as expired, and the peer will be disconnected for violating the Whisper protocol. They might be useful for other purposes when it is not possible to spend time on PoW, e.g. if a stock exchange will want to provide live feed about the latest trades.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
## Additional capabilities
Waku supports multiple capabilities. These include light node, rate limting, mailserver (client and server) and bridging of traffic. Here we list these capabilities, how they are identified, what properties they have and what invariants they must maintain.
### Light node
The rationale for light nodes is to allow for interaction with waku on resource restricted devices as bandwidth can often be an issue.
Light nodes MUST NOT forward any incoming messages, they MUST only send their own messages. When light nodes happen to connect to each other, they SHOULD disconnect. As this would result in messages being dropped between the two.
Light nodes are identified by the `light_node` value in the status message.
2019-11-22 00:28:46 +00:00
<!-- TODO: Add details on handshake -->
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
### Mailserver and client
2019-11-25 05:21:53 +00:00
Mailservers are waku nodes that can archive messages and delivering them to its peers on-demand. A node which wants to provide mailserver functionality MUST store envelopes from incoming message packets (Waku packet-code 0x01). The envelopes can be stored in any format, however they MUST be serialized and deserialized to the Waku envelope format.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-25 05:21:53 +00:00
A mailserver SHOULD store envelopes for all topics to be generally useful for any peer, however for specific use cases it MAY store envelopes for a subset of topics.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
2019-11-25 05:21:53 +00:00
#### Requesting messages
2019-11-25 05:22:57 +00:00
In order to request historic messages, a node MUST send a packet P2P Request (`0x7e`) to a peer providing mailserver functionality. This packet requires one argument which MUST be a Waku envelope.
2019-11-25 05:21:53 +00:00
2019-11-25 05:22:57 +00:00
In the Waku envelope's payload section, there MUST be RLP-encoded information about the details of the request:
2019-11-25 05:21:53 +00:00
```
[ Lower, Upper, Bloom, Limit, Cursor ]
```
`Lower`: 4-byte wide unsigned integer (UNIX time in seconds; oldest requested envelope's creation time)
`Upper`: 4-byte wide unsigned integer (UNIX time in seconds; newest requested envelope's creation time)
2019-11-25 05:22:57 +00:00
`Bloom`: 64-byte wide array of Waku topics encoded in a bloom filter to filter envelopes
2019-11-25 05:21:53 +00:00
`Limit`: 4-byte wide unsigned integer limiting the number of returned envelopes
`Cursor`: 32-byte wide array of a cursor returned from the previous request (optional)
The `Cursor` field SHOULD be filled in if a number of envelopes between `Lower` and `Upper` is greater than `Limit` so that the requester can send another request using the obtained `Cursor` value. What exactly is in the `Cursor` is up to the implementation. The requester SHOULD NOT use a `Cursor` obtained from one mailserver in a request to another mailserver because the format or the result MAY be different.
The envelope MUST be signed with a symmetric key agreed between the requester and Mailserver.
#### Receiving historic messages
2019-11-25 05:22:57 +00:00
Historic messages MUST be sent to a peer as a packet with a P2P Message code (`0x7f`) followed by an array of Waku envelopes. It is incompatible with the original Whisper spec (EIP-627) because it allows only a single envelope, however, an array of envelopes is much more performant. In order to stay compatible with EIP-627, a peer receiving historic message MUST handle both cases.
2019-11-25 05:21:53 +00:00
In order to receive historic messages from a mailserver, a node MUST trust the selected mailserver, that is allow to receive packets with the P2P Message code. By default, such packets are discarded.
2019-11-25 05:22:57 +00:00
Received envelopes MUST be passed through the Waku envelopes pipelines so that they are picked up by registered filters and passed to subscribers.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
## Backwards Compatibility
Waku is a different subprotocol from Whisper so it isn't directly compatible. However, the data format is the same, so compatibility can be achieved by the use of a bridging mode as described below. Any client which does not implement certain packet codes should gracefully ignore the packets with those codes. This will ensure the forward compatibility.
<!-- TODO: Elaborate on waku/1 would be directly compatible with waku/0 if version don't match -->
### Waku-Whisper bridging
`waku/0` and `shh/6` are different DevP2P subprotocols. In order to achieve backwards compatibility, bridging is required. It works as follows.
**Roles:**
- Waku client A, only Waku capability
- Whisper client B, only Whisper capability
- WakuWhisper bridge C, both Waku and Whisper capability
**Flow:**
1. A posts message; B posts message.
2. C picks up message from A and B and relays them both to Waku and Whisper.
3. A receives message on Waku; B on Whisper.
**Note**: This flow means if another bridge C1 is active, we might get duplicate relaying for a message between C1 and C2. I.e. Whisper(<>Waku<>Whisper)<>Waku, A-C1-C2-B. Theoretically this bridging chain can get as long as TTL permits.
## Forwards Compatibility
It is desirable to have a strategy for maintaining forward compatibility between `waku/0` and future version of waku. Here we outline some concerns and strategy for this.
<!-- TODO: Outline difference between _bridging_ and data format -->
<!-- TODO: Think about how to maintain forwards capability for waku/v0 -> v1 -> v2, etc. -->
<!-- Example user story: changing version number to 1; moving to libp2p; changing routing to PSS style; remove PoW; replacing PoW with zkSNARKs; adding packet codes for rate limit / accounting for resources feedback; additional disconnect features -->
<!-- TODO: Right now we have
if m.protocolVersion == wakuVersion:
debug "Waku peer", peer, wakuVersion
else:
raise newException(UselessPeerError, "Incompatible Waku version")
Is this what we want? Decide!
-->
<!-- TODO: Leave room for RECOMMENDATIONS FOR CLIENTS and DEPRECATION NOTICE when relevant -->
## Security considerations
2019-11-22 00:34:27 +00:00
There are several security considerations to take into account when running Waku. Chief among them are: scalability, DDoS-resistance and privacy. These also vary depending on what capabilities are used, such as mailserver, light node, and so on.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
<!-- TODO: elaborate on security considerations -->
<!-- TODO: Light node security considerations
> Running a node as a light node mode impacts privacy due to the fact that it becomes identifiable what nodes care about if they aren't relaying traffic.
Replace with:
> I think the main privacy concern with light nodes is that the directly connected peers will know that a message originates from them (as it are the only ones it sends). And yes, based on that they can make some assumptions on which messages (topics) they are interested in also.
-->
## Implementation Notes
2019-11-26 03:40:04 +00:00
### Implementation Matrix
| Client | Version |
| ------ | ------- |
| go-ethereum (geth) | [v1.9.7](https://github.com/ethereum/go-ethereum/tree/v1.9.7) |
| status whisper | [25321](https://github.com/status-im/whisper/tree/25321b2c035b6e03dbae85a2f54cf89f9f873dd9) |
| nimbus | [9c19f](https://github.com/status-im/nim-eth/tree/9c19f1e5b17b36ebcf1c7513428818f585a3cb16) |
| status-go | [ed5a5](https://github.com/status-im/status-go/commit/ed5a5c154daf5362cdf0c35fd1bc204e6a6d49ae) |
| | Light mode | Mailserver client | Mailserver server | shh/6 | waku/0 |
| -: | :--------: | :----------------: | :--------------: | :-: | :-: |
| **geth** | x | x | x | x | - |
| **status whisper** | x | x | - | x | - |
| **nimbus** | x | - | - | x | - |
| **status-go** | x | x | x |x | - |
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
Notes useful for implementing Waku mode.
<!-- TODO: Implementation notes, possibly link to matrix and have something similar but lightweight to https://tools.ietf.org/html/rfc8446#appendix-C
Alt, break this out into issue for enhancement -->
<!-- TODO(Dean): Break out into Status spec and remove this section
2019-11-22 00:27:03 +00:00
The golang implementation of Whisper (v.6) already uses packet codes `0x00` - `0x03`. Parity's implementation of v.6 will also use codes `0x00` - `0x03`. Codes `0x7E` and `0x7F` are reserved, but still unused and left for custom implementation of Whisper Mail Server.
Waku version 0 - initial (#28) * Init with EIP-627 * Header and abstract * WIP * Update waku.md * Update waku.md * Inline comments * add Dean and toc * document rlpx subprotocol * Rename waku.md to waku/README.md * reworded * light-node (#31) * added * sections * changelog * updated * updates * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update RLPx subprotocol based on nim-eth changes * Add section on backwards compatibility * changelog and todo * update toc * update rlpx section * specify rlpx version number * add differences shh6 waku 0 * generalize light node section to additional capabilities * add mock security considerations section * mock section of forwards comp * bump mini version * fix typo * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: Adam Babik <a.babik@designfortress.com> * Update README.md * Update README.md * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update waku/README.md Co-Authored-By: kdeme <kim.demey@gmail.com> * Update README.md (#42) * Move back to waku.md KISS * try footnote link * rlp detail links * add ABNF spec * moar abnf, and remove superfluous data format descriptions * modify abstract and motivation * abnf whisper envelope * move security consider * clarify duplication * some backwards compatibility notes and move things a bit * version 0.1.0 prepare for merge; toc; ack section * tweak acks
2019-11-21 15:15:40 +00:00
-->
## Footnotes
1. https://github.com/ethereum/devp2p/blob/master/rlpx.md
## Changelog
| Version | Comment |
| :-----: | ------- |
| 0.1.0 (current) | Initial Release |
### Differences between shh/6 waku/0
Summary of main differences between this spec and Whisper v6, as described in [EIP-627](https://eips.ethereum.org/EIPS/eip-627):
- RLPx subprotocol is changed from `shh/6` to `waku/0`
- Light node capability
- Whisper Mail Server and Whisper Mail Client implemented
<!-- TODO: Document further differences with Whisper v6 -->
## Acknowledgements
- Kim De Mey
- Andrea Maria Piana
- Adam Babik
## Copyright
Copyright and related rights waived via [CC0](https://creativecommons.org/publicdomain/zero/1.0/).
<!-- TODO: Document recommendations for mobile nodes node --->
<!-- TODO: Document spam resistance in practice, rate limiting -->
<!-- TODO: Document accounting for resources, with mention of later settlement -->
<!-- TODO: Consider adding roadmap, or link to -->