Under the Hood — Message Transport

In a previous post I explained how peers in Swaptacular’s network can establish authenticated SSL/TLS connections between themselves.

In this post, I will continue this thread, and will explain how the servers use the authenticated connections between the peers to send messages to each other.

But before we dive deeper into message transport protocols, let me clarify how two random Swaptacular network nodes that are not peers (for example, an accounting authority node, and a creditors agent node), can become peers.

Info-bundle files

Every Swaptacular network node should publish an info-bundle file, which all potential peers can obtain. The info-bundle file contains:

Using the info-bundle files, the process of obtaining technical and contact information about the other node, and issuing and exchanging peer certificates, is streamlined into 4 simple steps:

The 4 steps of issuing and exchanging peer certificates

Note: The above 4 steps can be performed in a slightly different order, and the final result will be the same.

The STOMP protocol

Now that we know how Swaptacular nodes issue peer certificates to each other, and how they can use them to establish authenticated SSL/TLS connections, we can talk in more detail about message transport protocols.

The main purpose of every message transport protocol is to facilitate the reliable delivery of messages from one computer to another. This is a quite generic problem, with a lot of already existing solutions, many of which fit the Swaptacular’s use case very well (AMQP 0-9-1, AMQP 1.0, STOMP, MQTT etc.).

Therefore, any two Swaptacular peer nodes should be free to agree to use any message transport protocol that suits their needs. However, because interoperability is of huge importance, there must be at least one protocol that all Swaptacular nodes understand. The chosen protocol is the Simple Text Oriented Messaging Protocol (STOMP). The big advantages that STOMP has over most other protocols is its simplicity, and its crystal clear specification. And contrary to what the “STOMP” abbreviation suggests, the protocol supports binary messages as well.

In fact, in order to be fully interoperable with all other nodes, each Swaptacular node must support only a subset of the STOMP protocol. Each node’s info-bundle file, in its included directory of files, should contain a stomp.toml file at the directory root. This file incorporates all the necessary technical information about the STOMP servers that the node runs.

Message serialization

The messages that peers send to each other are Swaptacular Messaging Protocol (SMP) messages. In the SMP specification, every SMP message is abstractly defined as a set of fields, holding values of some abstract types.

However, to be sent over the network, each SMP message must be converted into raw bytes. This is called “serialization”. Again, this is a quite generic problem, with a lot of already existing solutions (JSON, ASN.1, Protobuf, Cap’n Proto, etc.).

In their stomp.toml file, Swaptacular nodes should specify the serialization methods which they support, so that connecting peers can choose the optimal serialization method supported by both nodes. But again, in the name of interoperability, there must be at least one message serialization method, which all Swaptacular nodes understand. Not surprisingly, the blessed serialization method is the simplest one: JavaScript Object Notation (JSON).

In further posts, I will try to explain in broad strokes, how the Swaptacular Messaging Protocol works.