From 6ab2f6a4640f0403833a36ad092ccc0abee6fcfa Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Mon, 29 Mar 2021 17:18:19 +0800 Subject: [PATCH] 11/WAKU-RELAY: Import --- content/docs/rfcs/11/README.md | 189 +++++++++++++++++++++++++++++++++ 1 file changed, 189 insertions(+) diff --git a/content/docs/rfcs/11/README.md b/content/docs/rfcs/11/README.md index e69de29..fa33a96 100644 --- a/content/docs/rfcs/11/README.md +++ b/content/docs/rfcs/11/README.md @@ -0,0 +1,189 @@ +--- +title: Waku Relay +version: 2.0.0-beta2 +status: Draft +authors: Oskar Thorén , Sanaz Taheri +--- + +# Table of Contents + +- [Abstract](#abstract) +- [Security Requirements](#security-requirements) + - [Terminology](#terminology) +- [Adversarial Model](#adversarial-model) +- [Wire Specification](#wire-specification) + - [Protobuf](#protobuf) + - [RPC](#rpc) + - [Message](#message) + - [SubOpts](#subopts) + - [Signature Policy](#signature-policy) +- [Security Analysis](#security-analysis) +- [Future work](#future-work) +- [Changelog](#changelog) + - [Next](#next) + - [2.0.0-beta2](#200-beta2) + - [2.0.0-beta1](#200-beta1) +- [Copyright](#copyright) +- [References](#references) + +# Abstract + +`WakuRelay` is part of the gossip domain for Waku. It is a thin layer on top of GossipSub. + +**Protocol identifier***: `/vac/waku/relay/2.0.0-beta2` + +# Security Requirements + +The `WakuRelay` protocol is designed to provide the following security properties under a static [Adversarial Model](#adversarial-model). Note that data confidentiality, integrity, and authenticity are currently considered out of the scope of the `WakuRelay` protocol and must be handled by the upper-level protocols such as [WakuMessage](https://github.com/vacp2p/specs/blob/master/specs/waku/v2/waku-message.md). + + + + +- **Publisher-Message Unlinkability**: This property indicates that no adversarial entity can link a published `Message` to its publisher. This feature also implies the unlinkability of the publisher to its published topic ID as the `Message` embodies the topic IDs. + +- **Subscriber-Topic Unlinkability**: This feature stands for the inability of any adversarial entity from linking a subscriber to its subscribed topic IDs. + + + + + +## Terminology +The term Personally identifiable information (PII) refers to any piece of data that can be used to uniquely identify a user. For example, the signature verification key, and the hash of one's static IP address are unique for each user and hence count as PII. + +# Adversarial Model +- Any entity running the `WakuRelay` protocol is considered an adversary. This includes publishers, subscribers, and all the peers' direct connections. Furthermore, we consider the adversary as a passive entity that attempts to collect information from others to conduct an attack but it does so without violating protocol definitions and instructions. For example, under the passive adversarial model, no malicious subscriber hides the messages it receives from other subscribers as it is against the description of the `WakuRelay` protocol. However, a malicious subscriber may learn which topics are subscribed to by which peers. +- The following are **not** considered as part of the adversarial model: + - An adversary with a global view of all the peers and their connections. + - An adversary that can eavesdrop on communication links between arbitrary pairs of peers (unless the adversary is one end of the communication). In specific, the communication channels are assumed to be secure. + + +# Wire Specification + +We are using protobuf RPC messages between peers. Here's what the protobuf messages look like, as defined in the PubSub interface. Please see [PubSub interface spec](https://github.com/libp2p/specs/blob/master/pubsub/README.md) for more details. + +In this section, we specify two things how WakuSub is using these messages. + +## Protobuf + +```protobuf +message RPC { + repeated SubOpts subscriptions = 1; + repeated Message publish = 2; + + message SubOpts { + optional bool subscribe = 1; + optional string topicid = 2; + } + +message Message { + optional string from = 1; + optional bytes data = 2; + optional bytes seqno = 3; + repeated string topicIDs = 4; + optional bytes signature = 5; + optional bytes key = 6; +} +``` + +WakuSub does not currently use the `ControlMessage` defined in GossipSub. +However, later versions will add likely add this capability. + +`TopicDescriptor` as defined in the PubSub interface spec is not currently used. + +## RPC + +These are messages sent to directly connected peers. They SHOULD NOT be +gossiped. See section below on how the fields work. + +## Message + +The `from` field MAY indicate which peer is publishing the message. + +The `data` field MUST be filled out with a `WakuMessage`. See the [Waku Message](waku-message.md) spec for more details. + +The `seqno` field MAY be used to provide a linearly increasing number. See PubSub spec for more details. + +The `topicIDs` field MUST contain the topics that a message is being published on. + +The `signature` field MAY contain the signature of the message, thus providing authentication of the message. See PubSub spec for more details. + +The `key` field MAY be present and relates to signing. See PubSub spec for more details. + + +## SubOpts + +To do topic subscription management, we MAY send updates to our peers. If we do so, then: + +The `subscribe` field MUST contain a boolean, where 1 means subscribe and 0 means unsubscribe to a topic. + +The `topicid` field MUST contain the topic. + +## Signature Policy + +The `StrictNoSign` option MUST be used. + +# Security Analysis + + +- **Publisher-Message Unlinkability**: To address publisher-message unlinkability, one should remove any PII from the published message. As such, `WakuRelay` protocol follows the `StrictNoSign` policy as described in [libp2p PubSub specs](https://github.com/libp2p/specs/tree/master/pubsub#message-signing). As the result of the `StrictNoSign` policy, `Message`s should be built without the `from`, `signature` and `key` fields since each of these three fields individually counts as PII for the author of the message (one can link the creation of the message with libp2p peerId and thus indirectly with the IP address of the publisher). +Note that removing identifiable information from messages cannot lead to perfect unlinkability. The direct connections of a publisher might be able to figure out which `Message`s belong to that publisher by analyzing its traffic. The possibility of such inference may get higher when the `data` field is also not encrypted by the upper-level protocols. + +- **Subscriber-Topic Unlinkability:** To preserve subscriber-topic unlinkability, it is recommended by [Waku v2 specs](https://github.com/vacp2p/specs/blob/master/specs/waku/v2/waku-v2.md#default-pubsub-topic) to use a single PubSub topic in the `WakuRelay` protocol. This allows an immediate subscriber-topic unlinkability where subscribers are not re-identifiable from their subscribed topic IDs as the entire network is linked to the same topic ID. This level of unlinkability / anonymity is known as [k-anonymity](https://www.privitar.com/blog/k-anonymity-an-introduction/) where k is proportional to the system size (number of subscribers). +However, note that the `WakuRelay` supports the use of more than one topic. In that case, the unlinkability should be addressed by the upper-level protocols through e.g., [Partitioned topics technique](https://specs.status.im/spec/10#partitioned-topic) which enables K-anonymity for the peers' subscribed topic ids. + +# Future work + +- **Economic Spam resistant**: In the spam-protected `WakuRelay` protocol, no adversary can flood the system with spam messages (i.e., publishing a large number of messages in a short amount of time). Spam protection is partly provided by GossipSub v1.1 through [scoring mechansim](https://github.com/libp2p/specs/blob/master/pubsub/gossipsub/gossipsub-v1.1.md#spam-protection-measures). At a high level, peers utilize a scoring function to locally score the behavior of their connections and remove peers with a low score. The `WakuRelay` protocol aims at enabling an advanced spam protection mechanism with economic disincentives by utilizing Rate Limiting Nullifiers. In a nutshell, peers must conform to a certain message publishing rate per a system-defined epoch, otherwise, they get financially penalized for exceeding the rate. More details on this new technique can be found in [Waku RLN Relay](https://github.com/vacp2p/specs/blob/master/specs/waku/v2/waku-rln-relay.md). + + + +- Providing **Unlinkability**, **Integrity** and **Authenticity** simultaneously: Integrity and authenticity are typically addressed through digital signatures and Message Authentication Code (MAC) schemes, however, the usage of digital signatures (where each signature is bound to a particular peer) contradicts with the unlinkability requirement (messages signed under a certain signature key are verifiable by a verification key that is bound to a particular publisher). As such, integrity and authenticity are missing features in the `WakuRelay` protocol in the interest of unlinkability. In future work, advanced signature schemes like group signatures can be utilized to enable authenticity, integrity, and unlinkability simultaneously. In a group signature scheme, a member of a group can anonymously sign a message on behalf of the group as such the true signer is indistinguishable from other group members. + + +# Changelog + +### Next +- Added initial threat model and security analysis +### 2.0.0-beta2 + +Next version. Changes: + +- Moved WakuMessage to separate spec and made it mandatory +- StrictNoSign + + +### 2.0.0-beta1 + +Initial draft version. Released [2020-09-17](https://github.com/vacp2p/specs/commit/a57dad2cc3d62f9128e21f68719704a0b358768b) + +# Copyright + +Copyright and related rights waived via +[CC0](https://creativecommons.org/publicdomain/zero/1.0/). + +# References + +1. [PubSub interface for libp2p (r2, + 2019-02-01)](https://github.com/libp2p/specs/blob/master/pubsub/README.md) + +2. [GossipSub + v1.0](https://github.com/libp2p/specs/blob/master/pubsub/gossipsub/gossipsub-v1.0.md) + +3. [GossipSub + v1.1](https://github.com/libp2p/specs/blob/master/pubsub/gossipsub/gossipsub-v1.1.md) + +4. [Waku v1 spec](specs.vac.dev/waku/waku.html) + +5. [Whisper spec (EIP627)](https://eips.ethereum.org/EIPS/eip-627) + + + + +Re topicid: +NOTE: This doesn't appear to be documented in PubSub spec, upstream? +-->