Skip to content

Commit

Permalink
Add architecture.md and module-level documentation (#1556)
Browse files Browse the repository at this point in the history
* Add arch doc with mention of flex-error

* Add module-level documentation

* Add some more module-level documentation

* Add some more module-level documentation

* Add more module-level documentation

* Add Fungible Token Transfer section to arch.md

* Fix broken markdown link

* Add changelog entry

* Run cargo fmt

* Incorporate PR feedback

* Replace `ibc-rs-layout` image

* Fix broken markdown link

* Fix broken markdown links

* Replace layout image

* Change header ordering
  • Loading branch information
seanchen1991 committed Nov 19, 2021
1 parent 17a1978 commit 9160dce
Show file tree
Hide file tree
Showing 18 changed files with 174 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .changelog/unreleased/improvements/1556-arch-doc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Add architecture.md doc that gives a high-level overview of the structure of the codebase.
- Add some module-level documentation
([#1556][1556])

[1556]: https://github.com/informalsystems/ibc-rs/pulls/1556
130 changes: 130 additions & 0 deletions docs/architecture/architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Architecture

This document describes the architecture of `ibc-rs`. If you're looking for a high-level overview of the code base, you've come to the right place!

## Terms

Some important terms and acronyms that are commonly used include:

* **IBC**: Refers to the **I**nter**B**lockchain **C**ommunication protocol, a distributed protocol that allows different sovereign blockchains to communicate with one another. The protocol has both on-chain and off-chain components.
* **ICS**: Refers to **I**nter**C**hain **S**tandards, which are stadardization documents that capture the specifications of the IBC protocol across multiple documents. For example, ICS02 captures the client abstraction of the IBC protocol.
* **IBC module**: Refers to a piece of on-chain logic on an IBC-enabled chain.
* **Relayer**: Refers to an off-chain process that is responsible for relaying packets between chains.
* **Hermes**: Refers to the `ibc-rs` crate's particular relayer implementation.

## Bird's Eye View

![][layout-image]

At its highest level, `ibc-rs` implements the InterBlockchain Communication protocol which is captured in [specifications in a separate repository][ibc-specs]. `ibc-rs` exposes modules that implement the specified protocol logic. The IBC protocol can be understood as having two separate components: on-chain and off-chain logic. The relayer, which is the main off-chain component, is a standalone process, of which Hermes is an implementation. On-chain components can be thought of as modules or smart contracts that run as part of a chain. The main on-chain components deal with the abstractions of clients, connections, and channels.

## Code Map

This section talks briefly about the various directories and modules in `ibc-rs`.

### `modules`/`ibc`

> Note: While the name of the directory is `modules`, the name of the crate is `ibc`.
This crate contains the main data structures and on-chain logic of the IBC protocol; the fundamental pieces. There is the conceptual notion of 'handlers', which are pieces of code that each handle a particular type of message. The most notable handlers are the [client][ibc-client], [connection][ibc-connection], and [channel][ibc-channel] handlers.

> Note: The naming of directories in the `ibc` crate follow a slightly different convention compared to the other crates in `ibc-rs`. This is because this crate implements the [ICS standards][ics-standards]. Modules in the `ibc` crate that implement a piece of the ICS standard are prefixed with the standard's designation. For example, the `modules/src/ics02_client` implements [ICS 02][ics02], which specifies the Client abstraction. These prefixes may be removed in the future.
#### Core

Consists of the designs and logic pertaining to the transport, authentication, and ordering layers of the IBC protocol, the fundamental pieces.

##### ICS 02 - Client

Clients encapsulate all of the verification methods of another IBC-enabled chain in order to ensure that the other chain adheres to the IBC protocol and does not exhibit misbehaviour. Clients "track" the metadata of the other chain's blocks, and each chain has a client for every other chain that it communicates with.

##### ICS 03 - Connection

Connections associate a chain with another chain by connecting a client on the local chain with a client on the remote chain. This association is pair-wise unique and is established between two chains following a 4-step handshake process.

##### ICS 04 - Channel

Channels are an abstraction layer that facilitate communication between applications and the chains those applications are built upon. One important function that channels can fulfill is guaranteeing that data packets sent between an application and its chain are well-ordered.

##### ICS 05 - Port

The port standard specifies an allocation scheme by which modules can bind to uniquely-named ports allocated by the IBC handler in order to facilitate module-to-module traffic. These ports are used to open channels and can be transferred or released by the module which originally bound them.

##### ICS 23 - Commitment

Commitments (sometimes called _vector commitments_) define an efficient cryptographic construction to prove inclusion or non-inclusion of values in at particular paths in state. This scheme provides a guarantee of a particular state transition that has occurred on one chain which can be verified on another chain.

#### Applications

Consists of various packet encoding and processing semantics which underpin the various types of transactions that users can perform on any IBC-compliant chain.

##### ICS 20 - Fungible Token Transfer

Specifies the packet data structure, state machine handling logic, and encoding details used for transferring fungible tokens between IBC chains. This process preserves asset fungibility and ownership while limiting the impact of Byzantine faults.

#### Clients

Consists of implementations of client verification algorithms (following the base client interface that is defined in `Core`) for specific types of chains. A chain uses these verification algorithms to verify the state of a remote chain.

##### ICS 07 - Tendermint

The Tendermint client implements a client verification algorithm for blockchains which use the Tendermint consensus algorithm. This enables state machines of various sorts replicated using the Tendermint consensus algorithm to interface with other replicated state machines or solo machines over IBC.

#### Relayer

Contains utilities for testing the `ibc` crate against the Hermes IBC relayer. It acts as scaffolding for gluing the `ibc` crate with Hermes for testing purposes.

##### ICS 18 - Relayer

Relayer algorithms are the "physical" connection layer of IBC — off-chain processes responsible for relaying data between two chains running the IBC protocol by scanning the state of each chain, constructing appropriate datagrams, and executing them on the opposite chain as allowed by the protocol.

### `relayer`

This crate provides the logic for relaying datagrams between chains. The process of relaying packets is an off-chain process that is kicked off by submitting transactions to read from or write to an IBC-enabled chain's state. More broadly, a relayer enables a chain to ascertain another chain's state by accessing its clients, connections, channels, or anything that is IBC-related.

### `relayer-cli`

A CLI wrapper around the `relayer` crate for running and issuing commands to a chain via a relayer. This crate exposes the Hermes binary.

### `relayer-rest`

An add-on to the CLI mainly for exposing some internal runtime details of Hermes for debugging and observability reasons.

### `proto`

Depends on the `proto-compiler` crate's generated proto files.

Consists of protobuf-generated Rust types which are necessary for interacting with the Cosmos SDK. Also contains client and server methods that the relayer library includes for accessing the gRPC calls of a chain.

### `proto-compiler`

CLI tool to automate the compilation of proto buffers, which allows Hermes developers to go from a type specified in proto files to generate client gRPC code or server gRPC code.

### `telemetry`

Used by Hermes to gather telemetry data and expose it via a Prometheus endpoint.

## Cross-Cutting Concerns

### Testing

Most of the components in the `ibc` crate (i.e. the `modules` directory) have basic unit testing coverage. These unit tests make use of mocked up chain components in order to ensure that message payloads are being sent and received as expected.

We also run end-to-end tests to more thoroughly test IBC modules in a more heterogenous fashion.

### Error Handling

Most errors occur within the relayer as a result of either I/O operations or user misconfiguration. I/O-related errors can be sub-categorized into web socket errors and chain RPC errors. The latter occur when full nodes are out of sync with the rest of the network, which result in transactions that are based off of conflicting chain states. Such errors are usually either resolved by retrying the transaction, or might require operator intervention in order to flush the transaction from the mempool in conjunction with restarting the full node.

The [flex-error][flex-error] library is the main tool used to handle errors in the code. This [demo][flex-error-demo] showcases some of the main patterns of how `flex-error` is used. For a more real-world example, [this][relayer-errors] file defines all of the possible errors for the relayer.

[flex-error]: https://github.com/informalsystems/flex-error
[flex-error-demo]: https://github.com/informalsystems/flex-error/blob/master/flex-error-demo-full/src/main.rs
[ibc-specs]: https://github.com/cosmos/ibc#interchain-standards
[ics-standards]: https://github.com/cosmos/ibc#standardisation
[ibc-client]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/core/ics02_client
[ibc-connection]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/core/ics03_connection
[ibc-channel]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/core/ics04_channel
[ics02]: https://github.com/cosmos/ibc/blob/master/spec/core/ics-002-client-semantics/README.md
[layout-image]: assets/ibc-rs-layout.png
[relayer-errors]: https://github.com/informalsystems/ibc-rs/blob/master/relayer/src/error.rs
Binary file added docs/architecture/assets/ibc-rs-layout.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
//! ICS 20: IBC Transfer implementation
//! ICS 20: Token Transfer implementation allows for multi-chain denomination handling, which
//! constitutes a "fungible token transfer bridge module" between the IBC routing module and an
//! asset tracking module.
pub mod context;
pub mod error;
pub mod msgs;
Expand Down
2 changes: 2 additions & 0 deletions modules/src/applications/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Various packet encoding semantics which underpin the various types of transactions.

pub mod ics20_fungible_token_transfer;

// TODO: These consts should move into the ICS27 namespace
Expand Down
3 changes: 2 additions & 1 deletion modules/src/clients/ics07_tendermint/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! ICS 07: Tendermint Client
//! ICS 07: Tendermint Client implements a client verification algorithm for blockchains which use
//! the Tendermint consensus algorithm.

pub mod client_def;
pub mod client_state;
Expand Down
2 changes: 2 additions & 0 deletions modules/src/clients/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
//! Implementations of client verification algorithms for specific types of chains.

pub mod ics07_tendermint;
2 changes: 1 addition & 1 deletion modules/src/core/ics02_client/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! ICS 02: IBC Client implementation
//! ICS 02: Client implementation for verifying remote IBC-enabled chains.

pub mod client_consensus;
pub mod client_def;
Expand Down
3 changes: 2 additions & 1 deletion modules/src/core/ics03_connection/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! ICS 03: IBC Connection implementation
//! ICS 03: Connection implementation for connecting a client
//! on the local chain with a client on a remote chain.

pub mod connection;
/// Context definitions (dependencies for the protocol).
Expand Down
3 changes: 2 additions & 1 deletion modules/src/core/ics04_channel/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! ICS 04: IBC Channel implementation
//! ICS 04: Channel implementation that facilitates communication between
//! applications and the chains those applications are built upon.

pub mod channel;
pub mod context;
Expand Down
3 changes: 3 additions & 0 deletions modules/src/core/ics05_port/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//! ICS 05: Port implementation specifies the allocation scheme used by modules to
//! bind to uniquely named ports.

pub mod capabilities;
pub mod context;
pub mod error;
3 changes: 3 additions & 0 deletions modules/src/core/ics23_commitment/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//! ICS 23: Commitment implementation of a cryptographic scheme that verifies
//! state transitions between chains.

pub mod commitment;
pub mod error;
pub mod merkle;
Expand Down
3 changes: 2 additions & 1 deletion modules/src/core/ics24_host/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! ICS 24: Host Requirements
//! ICS 24: Host defines the minimal set of interfaces that a
//! state machine hosting an IBC-enabled chain must implement.

pub use path::{ClientUpgradePath, Path, IBC_QUERY_PATH, SDK_UPGRADE_QUERY_PATH};

Expand Down
3 changes: 2 additions & 1 deletion modules/src/core/ics26_routing/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! ICS 26: Routing module implementation
//! ICS 26: Routing module keeps a lookup table of modules for looking
//! the appropriate module to relay to when a packet is received.

pub mod context;
pub mod error;
Expand Down
3 changes: 3 additions & 0 deletions modules/src/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//! The designs and logic pertaining to the transport, authentication, and
//! ordering layers of the IBC protocol.

pub mod ics02_client;
pub mod ics03_connection;
pub mod ics04_channel;
Expand Down
13 changes: 7 additions & 6 deletions modules/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)]
#![forbid(unsafe_code)]

//! This library implements the _I_nter_B_lockchain _C_ommunication (IBC) protocol in Rust. IBC is
//! This library implements the InterBlockchain Communication (IBC) protocol in Rust. IBC is
//! a distributed protocol that enables communication between distinct sovereign blockchains.
//! Loose analogies may be drawn between the IBC protocol and the TCP/UDP protocols that enable
//! communication over the internet via packet streaming. Indeed, IBC also encodes the notion of
Expand All @@ -25,24 +25,25 @@
//! Standards][ics-standards]. The classification consists of [Core][core], [Clients][clients],
//! [Applications][applications], and [Relayer][relayer].
//!
//! Core consists of the designs and logic pertaining to the transport, authentication, and
//! `Core` consists of the designs and logic pertaining to the transport, authentication, and
//! ordering layers of the IBC protocol, the fundamental pieces.
//!
//! Clients consists of implementations of client verification algorithms (following the base
//! `Clients` consists of implementations of client verification algorithms (following the base
//! client interface that is defined in `Core`) for specific types of chains. A chain uses these
//! verification algorithms to verify the state of remote chains.
//!
//! Applications consist of various packet encoding and processing semantics which underpin the
//! `Applications` consists of various packet encoding and processing semantics which underpin the
//! various types of transactions that users can perform on any IBC-compliant chain.
//!
//! Relayer contains utilities for testing the `ibc` crate against the Hermes IBC relayer. It acts
//! `Relayer` contains utilities for testing the `ibc` crate against the [Hermes IBC relayer][relayer-repo]. It acts
//! as scaffolding for gluing the `ibc` crate with Hermes for testing purposes.
//!
//! [core]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/core
//! [clients]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/clients
//! [applications]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/applications
//! [relayer]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/relayer
//! [ics-standards]: https://github.com/cosmos/ibc#interchain-standards
//! [relayer]: https://github.com/informalsystems/ibc-rs/tree/master/modules/src/relayer
//! [relayer-repo]: https://github.com/informalsystems/ibc-rs/tree/master/relayer

extern crate alloc;
extern crate std;
Expand Down
2 changes: 1 addition & 1 deletion modules/src/relayer/ics18_relayer/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! ICS 18: Implementation of basic relayer functions.
//! ICS 18: Relayer contains utilities for testing `ibc` against the Hermes relayer.

pub mod context;
pub mod error;
Expand Down
4 changes: 4 additions & 0 deletions modules/src/relayer/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
//! Utilities for testing the `ibc` crate against the [Hermes IBC relayer][relayer-repo].
//!
//! [relayer-repo]: https://github.com/informalsystems/ibc-rs/tree/master/relayer

pub mod ics18_relayer;

0 comments on commit 9160dce

Please sign in to comment.