Files
rippled/src/ripple/overlay
2014-11-10 12:52:57 -08:00
..
2014-11-10 12:52:57 -08:00
2014-08-20 17:44:00 -07:00
2014-10-15 19:39:30 -04:00
2014-11-06 16:10:00 -08:00
2014-11-07 13:40:43 -08:00
2014-11-06 16:10:00 -08:00

Overlay

Introduction

The Ripple payment network consists of a collection of peers running rippled. Each peer maintains multiple outgoing connections and optional incoming connections to other peers. These connections are made over both the public Internet and private local area networks. This network defines a fully connected directed graph of nodes where vertices are instances of rippled and edges are persistent TCP/IP connections. Peers send and receive messages to other connected peers. This peer to peer network, layered on top of the public and private Internet, forms an overlay network. The contents of the messages and the behavior of peers in response to the messages, plus the information exchanged during the handshaking phase of connection establishment, defines the Ripple peer protocol (protocol in this context).

Overview

Each connection is represented by a Peer object. The Overlay manager establishes, receives, and maintains connections to peers. Protocol messages are exchanged between peers and serialized using Google Protocol Buffers.

Structure

Each connection between peers is identified by its connection type, which affects the behavior of message routing:

  • Leaf

  • Peer

Roles

Depending on the type of connection desired, the peers will modify their behavior according to certain roles:

Leaf or Superpeer

A peer in the leaf role does not route messages. In the superpeer role, a peer accepts incoming connections from other leaves and superpeers up to the configured slot limit. It also routes messages. For a particular connection, the choice of leaf or superpeer is mutually exclusive. However, a peer can operate in both the leaf and superpeer role for different connections. One of the requirements

Client Handler

While not part of the responsibilities of the Overlay module, a peer operating in the Client Handler role accepts incoming connections from clients and services them through the JSON-RPC interface. A peer can operate in either the leaf or superpeer roles while also operating as a client handler.

Handshake

To establish a protocol connection, a peer makes an outgoing TLS encrypted connection to a remote peer, then sends a HTTP request with no message body. The request uses the HTTP/1.1 Upgrade mechanism with some custom fields to communicate protocol specific information:

GET / HTTP/1.1
User-Agent: Ripple-0.26.0
Local-Address: 192.168.0.101:8421
Upgrade: Ripple/1.2, Ripple/1.3
Connection: Upgrade
Connect-As: Leaf, Peer
Content-Length: 0
Accept-Encoding: identity, zlib, snappy
Protocol-Public-Key: aBRoQibi2jpDofohooFuzZi9nEzKw9Zdfc4ExVNmuXHaJpSPh8uJ
Protocol-Session-Cookie: 71ED064155FFADFA38782C5E0158CB26

Upon receipt of a well-formed HTTP request the remote peer will send back a HTTP response indicating the connection status:

HTTP/1.1 101 Switching Protocols
Server: Ripple-0.26.5
Remote-Address: 63.104.209.13
Upgrade: Ripple/1.2
Connection: Upgrade
Connect-As: Leaf
Transfer-Encoding: snappy
Protocol-Public-Key: aBRoQibi2jpDofohooFuzZi9nEzKw9Zdfc4ExVNmuXHaJpSPh8uJ
Protocol-Session-Cookie: 71ED064155FFADFA38782C5E0158CB26

If the remote peer has no available slots, the HTTP status code 503 (Service Unavailable) is returned, with an optional content body in JSON format that may contain additional information such as IP and port addresses of other servers that may have open slots:

HTTP/1.1 503 Service Unavailable
Server: Ripple-0.26.5
Remote-Address: 63.104.209.13
Content-Length: 253
Content-Type: application/json
{"peer-ips":["54.68.219.39:51235","54.187.191.179:51235",
"107.150.55.21:6561","54.186.230.77:51235","54.187.110.243:51235",
"85.127.34.221:51235","50.43.33.236:51235","54.187.138.75:51235"]}

Fields

  • URL

    The URL in the request line must be a single forward slash character ("/"). Requests with any other URL must be rejected. Different URL strings are reserved for future protocol implementations.

  • HTTP Version

    The minimum required HTTP version is 1.1. Requests for HTTP versions earlier than 1.1 must be rejected.

  • User-Agent

    Contains information about the software originating the request. The specification is identical to RFC2616 Section 14.43.

  • Server

    Contains information about the software providing the response. The specification is identical to RFC2616 Section 14.38.

  • Remote-Address (optional)

    This optional field contains the string representation of the IP address of the remote end of the connection as seen by the peer. By observing values of this field from a sufficient number of different servers, a peer making outgoing connections can deduce its own IP address.

  • Upgrade

    This field must be present and for requests consist of a comma delimited list of at least one element where each element is of the form "Ripple/" followed by the dotted major and minor protocol version number. For responses the value must be a single element matching one of the elements provided in the corresponding request field. If the server does not understand any of the requested protocols,

  • Connection

    This field must be present, containing the value 'Upgrade'.

  • Connect-As

    For requests the value consists of a comma delimited list of elements where each element describes a possible connection type. Current connection types are:

    • leaf
    • peer

    If this field is omitted or the value is the empty string, then 'leaf' is assumed.

    For responses, the value must consist of exactly one element from the list of elements specified in the request. If a server does not recognize any of the connection types it must return a HTTP error response.

  • Protocol-Public-Key

    This field value must be present, and contain a Base58 encoded value used as a server public key identifier.

  • Protocol-Session-Proof

    This field must be present (TODO)

  • User Defined

    The rippled operator may specify additional, optional fields and values through the configuration. These headers will be transmitted in the corresponding request or response messages.