mirror of https://github.com/vacp2p/rfc.git
Security analysis of the relay protocol (#268)
* WIP: adds the security analysis file with some initial incomplete writeup * fixes some formatting issue * minor * changes a terminology * adds the outline * Anlysis -> Analysis * removes old changelogs * edits the publisher anonymity * Minor * incorporates the security section into the relay specs * updates authors * deletes the security analysis file * adds the security requirements * adds the adversarial model * adds security analysis and future work * adds a todo * removes an empty item * Update waku-relay.md * adds the terminologies subsection * adds some revisions * adds some todos * adds more todos * mentions the traffic analysis attack * minor edits on the adversarial model * adds some clarification about the adversarial model & some final edits * changes topicID to topic ID * Update waku-relay.md * adds minor clarification * WIP: adds the security analysis file with some initial incomplete writeup * fixes some formatting issue * minor * changes a terminology * adds the outline * Anlysis -> Analysis * removes old changelogs * edits the publisher anonymity * Minor * incorporates the security section into the relay specs * updates authors * deletes the security analysis file * adds the security requirements * adds the adversarial model * adds security analysis and future work * adds a todo * removes an empty item * Update waku-relay.md * adds the terminologies subsection * adds some revisions * adds some todos * adds more todos * mentions the traffic analysis attack * minor edits on the adversarial model * adds some clarification about the adversarial model & some final edits * changes topicID to topic ID * Update waku-relay.md * adds minor clarification * rephrases the PII * itemizes the adversarial model * Update waku-relay.md * restructures, removes unsupported features, adds further clarifications * Update waku-relay.md * fixes some wordings * comments out footnotes * substitutes relay with wakurelay * minor * fixes a notational issue * Update waku-relay.md * WIP: addresses some of the comments * WIP: clarifies upper level protocols WIP: fixes headings issue WIP: adds scoring function minor edits updates the subscriber-topic unlinkability * Update specs/waku/v2/waku-relay.md Co-authored-by: Dean Eigenmann <7621705+decanus@users.noreply.github.com> Co-authored-by: Dean Eigenmann <7621705+decanus@users.noreply.github.com>
This commit is contained in:
parent
c030ee6920
commit
eaac5b9946
|
@ -2,18 +2,27 @@
|
|||
title: Waku Relay
|
||||
version: 2.0.0-beta2
|
||||
status: Draft
|
||||
authors: Oskar Thorén <oskar@status.im>
|
||||
authors: Oskar Thorén <oskar@status.im>, Sanaz Taheri <sanaz@status.im>
|
||||
---
|
||||
|
||||
# Table of Contents
|
||||
|
||||
- [Abstract](#abstract)
|
||||
* [Wire Specification](#wire-specification)
|
||||
* [Protobuf](#protobuf)
|
||||
* [RPC](#rpc)
|
||||
* [Message](#message)
|
||||
* [SubOpts](#subopts)
|
||||
* [Signature Policy](#signature-policy)
|
||||
- [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)
|
||||
|
||||
|
@ -23,11 +32,39 @@ authors: Oskar Thorén <oskar@status.im>
|
|||
|
||||
**Protocol identifier***: `/vac/waku/relay/2.0.0-beta2`
|
||||
|
||||
## Wire Specification
|
||||
# Security Requirements
|
||||
|
||||
We are using protobuf RPC messages between peers. Here's what the protobuf messages looks 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.
|
||||
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).
|
||||
|
||||
In this section we specify two things how WakuSub is using these messages.
|
||||
<!-- May add the definition of the unsupported feature:
|
||||
Confidentiality indicates that an adversary should not be able to learn the data carried by the `WakuRelay` protocol.
|
||||
Integrity indicates that the data transferred by the `WakuRelay` protocol can not be tampered with by an adversarial entity without being detected.
|
||||
Authenticity no adversary can forge data on behalf of a targeted publisher and make it accepted by other subscribers as if the origin is the target. -->
|
||||
|
||||
|
||||
- **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.
|
||||
|
||||
|
||||
<!-- TODO: more requirements can be added, but that needs further and deeper investigation-->
|
||||
|
||||
|
||||
## 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
|
||||
|
||||
|
@ -88,8 +125,28 @@ The `topicid` field MUST contain the topic.
|
|||
|
||||
The `StrictNoSign` option MUST be used.
|
||||
|
||||
## Changelog
|
||||
# Security Analysis
|
||||
<!-- TODO: realized that the prime security objective of the `WakuRelay` protocol is to provide peers unlinkability as such this feature is prioritized over other features e.g., unlinkability is preferred over authenticity and integrity. It might be good to motivate unlinkability and its impact on the relay protocol or other protocols invoking relay protocol.-->
|
||||
|
||||
- **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. <!-- TODO: more investigation on traffic analysis attacks and their success probability-->
|
||||
|
||||
- **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).
|
||||
<!-- TODO havn't checked if all the measures in libp2p GossipSub v1.1 are taken in the nim-libp2p as well, may need to audit the code -->
|
||||
|
||||
|
||||
- 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. <!-- TODO: shall I add a reference for group signatures?-->
|
||||
|
||||
|
||||
# Changelog
|
||||
|
||||
### Next
|
||||
- Added initial threat model and security analysis
|
||||
### 2.0.0-beta2
|
||||
|
||||
Next version. Changes:
|
||||
|
|
Loading…
Reference in New Issue