The Protocol Stack
The CSP protocol stack includes functionality on all layers of the TCP/IP model:
Layer 1: Drivers
CSP is not designed for any specific processor or hardware peripheral, but yet these drivers are required in order to work. The intention of LibCSP is not to provide CAN, I2C or UART drivers for all platforms, however some drivers has only been included for some specific platforms. If you do not find your driver supported, it is quite simple to add a driver that conforms to the CSP interface. For good stability and performance, interrupt driven drivers are preferred in favor of polled drivers. Where applicable also DMA usage is recommended.
Layer 2: MAC interfaces
CSP has interfaces for I2C, CAN, RS232/RS422 (KISS), ETH, ZMQ (TCP/IP)
and Loopback. The layer 2 protocol software defines a frame-format that
is suitable for the media.
CSP can be easily extended with implementations for even more links, for
example radio-links. The file csp_interface.h
declares the rx and tx
functions needed in order to define a network interface in CSP. During
initialisation of CSP each interface will be inserted into a linked list
of interfaces that is available to the router. In cases where link-layer
addresses are required, such as I2C, the routing table supports specifying
a via
link-layer address directly. This avoids the need to implement an
address resolution protocol to translate CSP addresses to I2C addresses.
Layer 3: Network Router
The router core is the backbone of the CSP implementation. The router works by looking at a 32-bit CSP header which contains the destination and source address together with port numbers for the connection. The router supports both local destination and forwarding to an external destination. Messages will never exit the router on the same interface that they arrived at, this concept is called split horizon, and helps prevent routing loops.
The main purpose of the router is to accept incoming packets and deliver them to the right message queue. Therefore, in order to listen on a port-number on the network, a task must create a socket and call the accept() call. This will make the task block and wait for incoming traffic, just like a web-server or similar. When an incoming connection is opened, the task is woken. Depending on the task-priority, the task can even preempt another task and start execution immediately.
There is no routing protocol for automatic route discovery, all routing
tables are pre-programmed into the subsystems. The table itself contains
a separate route to each of the possible 32 nodes in the network and the
additional default route. This means that the overall topology must be
decided before putting sub-systems together, as explained in the
topology
section. However CSP has an extension on port zero CMP (CSP
management protocol), which allows for over-the-network routing table
configuration. This has the advantage that default routes could be
changed if for example the primary radio fails, and the secondary should
be used instead.
Layer 4: Transport Layer
LibCSP implements two different Transport Layer protocols, they are called UDP (unreliable datagram protocol) and RDP (reliable datagram protocol). The name UDP has not been chosen to be an exact replica of the UDP (user datagram protocol) known from the TCP/IP model, but they have certain similarities.
The most important thing to notice is that CSP is entirely a datagram service. There is no stream based service like TCP. A datagram is a defined block of data with a specified size and structure. This block enters the transport layer as a single datagram and exits the transport layer in the other end as a single datagram. CSP preserves this structure all the way to the physical layer for I2C, KISS and Loopback interfaces. The CAN-bus interface has to fragment the datagram into CAN-frames of 8 bytes, however only a fully completed datagram will arrive at the receiver.
UDP
UDP uses a simple transmission model without implicit hand-shaking dialogues for guaranteeing reliability, ordering, or data integrity. Thus, UDP provides an unreliable service and datagrams may arrive out of order, appear duplicated, or go missing without notice. UDP assumes that error checking and correction is either not necessary or performed in the application, avoiding the overhead of such processing at the network interface level. Time-sensitive applications often use UDP because dropping packets is preferable to waiting for delayed packets, which may not be an option in a real-time system.
UDP is very practical to implement request/reply based communication where a single packet forms the request and a single packet forms the reply. In this case a typical request and wait protocol is used between the client and server, which will simply return an error if a reply is not received within a specified time limit. An error would normally lead to a retransmission of the request from the user or operator which sent the request.
While UDP is very simple, it also has some limitations. Normally a human in the loop is a good thing when operating the satellite over UDP. But when it comes to larger file transfers, the human becomes the bottleneck. When a high-speed file transfer is initiated data acknowledgment should be done automatically in order to speed up the transfer. This is where the RDP protocol can help.
RDP
CSP provides a transport layer extension called RDP (reliable datagram protocol) which is an implementation of RFC908 and RFC1151. RDP provides a few additional features:
Three-way handshake
Flow Control
Data-buffering
Packet re-ordering
Retransmission
Windowing
Extended Acknowledgment (deliberately not supported)
For more information on this, please refer to RFC908 and RFC1151.