BARRE

TReX's Examples


The Alternating Bit Protocol


BARRE

Description of the example

A producer wants to send messages in a reliable manner to a consumer through an unreliable channel. For this, they use a reliable transport protocol which implements a reliable channel above the unreliable (physical) channel.

fig_prod_cons.gif

The Alternating Bit Protocol is a reliable transport protocol of stop-and-wait family. It uses positive acknowledgement (ACK) and additional information of one bit to each message exchanged. The additional bit is used to identify a message in the sequence of messages sent. Only one bit suffices because no new data message is sent before the acknowledgement for the previous data message sent is not arrived (stop-and-wait).

The model we consider for this protocol is build from two automata (for sender and receiver) which exchange messages through two fifo lossy channels M (for messages sent from sender to receiver) and A (for acknowledgements sent from receiver to sender). The sender reads each message of the producer and sends it through M to the receiver with its additional bit. Then, it waits for an acknowledgement of this message (with the same bit) through A. If the acknowledgement does not arrive, the sender resends the message (with the same bit). When it receives the acknowledgement, the sender sends the next message read from the producer with an incremented bit.

In our model, the channels M and A are unbounded because the resent of data or acknowledgement messages is not bounded (see states s1, s3, r0, r2 in automata below). The following figures give the automata of the sender and receiver. In these automata, M!m0 means the sending of a message of data with bit 0 through channel M, M?m0 means the reception of data message with bit 0 through M, and nop means that the transition has no effect on channels.


Experimental results

We run TReX on these automata using a Sparc Ultra 10 in 0.07 s. We have obtained the reachable configurations set abp.scf resumed in the following table.
state
M
A
s0 r0
m1*
a1*
 s1 r0  m1*m0*  a1*
 s1 r1  m0*  a1*
 s1 r2  m0*  a1*a0*
 s2 r2  m0*  a0*
 s3 r0  m1*  a0*a1*
 s3 r2  m0*m1*  a0*
 s3 r3  m1*  a0*

The symbolic graph obtained is abp.aut. After reduction of internal actions (sending and receiving through unreliable channels) by weak-bisimulation, we obtain the graph below which corresponds to a reliable transport of data between producer and consumer.


Back to TReX's Home Page