Program 4
On this page
Due Date - April 28, 2023
Objectives
In this project, you are going to build on the first and the second project. You will have a server serves a large file. You will have clients connect to the server and retrive this file. You will use an AIMD congestion control algorithm and compare with your previous assignment. The client and server communications MUST use UDP (SOCK_DGRAM) and NOT TCP.
The objectives are:
– Learn about congestion control
Server Specifications
The server (we name it anonserver) takes two arguments:
$ anonserver -p <PORT> -s <LOG FILE LOCATION> -f <filename>
1.PORT
- The port server listens on.
2.Filename
- file you will be serving
Server’s Functional requirements
- The server must open a UDP socket on the specified port number
- The server should gracefully process incorrect port number and exit with a non-zero error code
- The server should send a FIN after done sending the packet
- The server should serve the file specified by -f. It should serve it from the memory.
- The server runs indefinitely - it does not exit.
- The server accepts connections from multiple clients.
Client Specifications
The client (we name it anonclient) takes four arguments:
$ anonclient -s <SERVER-IP> -p <PORT> -l LOGFILE -f <file_to_write_to>
The client takes three arguments:
1.Server IP
- The IP address of the anonserver.
2.PORT
- The port the server listens on.
2.Log file location
- Where you will keep a record of packets you received.
2.File to write to
- Where you will write the retrieved content.
For example:
$ anonclient -s 192.168.2.1 -p 6543 -l LOGFILE -f test.txt
Packet Specification
The payload of each UDP packet sent by server and client MUST start with the following 16-byte header. All fields are in network order (most significant bit first):
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Acknowledgment Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Window Size |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Not Used |A|S|F|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Where:
Sequence Number (32 bits): The sequence number of the first data octet in this packet (except when SYN is present). If SYN is present the sequence number is the initial sequence number (randomly choosen).
Acknowledgement Number (32 bits): If the ACK control bit is set, this field contains the value of the next sequence number the sender of the segment is expecting to receive. Once a connection is established this is always sent.
The acknowledgement number is given in the unit of bytes (how many bytes you have sent)
The Window size (32 bits): Same as acknowledgement number but denotes the window size.
Not Used (29 bits): Must be zero.
A (ACK, 1 bit): Indicates that there the value of Acknowledgment Number field is valid
S (SYN, 1 bit): Synchronize sequence numbers
F (FIN, 1 bit): Finish, No more data from sender
This is the protocol you will implement
The client opens a UDP socket and initiate 3-way handshake to the specified hostname/ip and port. For an explanation of how a three way handshake works, see the next three steps. Essentially, the client and server will exchange three packets with the following flags sets: (1) SYN (2) SYN|ACK (3)ACK. At the end of the handshake, they will have learned each other’s sequence number.
Handshake Step 1: Anonclient sends a UDP packet with the following parameters:
- src-ip=anonclient_IP, src-port=anonclient_port, dst-ip=anonserver_ip, dst-port=anonserver_port, Sequence Number set to 12345 (or chosen randomly), Window size set to 1, SYN flag set to 1, ACK flag set to 0, FIN flag set to 0.
- Handshake Step 2: Anonserver sends a UDP packet with the following parameters:
- src-ip=anonserver_IP, src-port=anonserver_port, dst-ip=anonclient_ip, dst-port=anonclient_port. Sequence Number set to 100 (or chosen randomly), ACK number set to 12346 (Clients seq number + 1) SYN flag set to 1, ACK flag set to 1, FIN flag set to 0.
- Handshake Step 3: Anonclient sends a UDP packet with the following parameters:
- src-ip=anonclient_IP, src-port=anonclient_port, dst-ip=anonserver_ip, dst-port=anonserver_port, Sequence Number set to 12346 (ACK from server), ACK number set to 101 (Server seq number + 1), Window size set to 1, SYN flag set to 0, ACK flag set to 1, FIN flag set to 0.
- Now both anonclient and anonserver knows each others’ sequence numbers and communication can begin. You only perform this handshake once.
- Server sends 1 byte of data (same as the window size) in an UDP packet as a payload. It also increases the sequence number (seq_to_send = client_seq_received + 1), and sets the ACK flag.
- The Client acknowledges the number of bytes it received by setting the ACK flag, and adding the number of bytes received to the previous client sequence number (seq_to_send = server_seq_received + number of bytes received). It also increases the window size to 2 (linear increase).
- Upon receiving this ACK, the server creates another packet, sets the ACK flag, updates the sequence number, and sends 2 bytes.
- This interaction continues until all data is sent to the client.
- If the client sees a packet loss, it cuts the window in half (minimum window size is 1). It then continues doing linear increase.
- Use the 8 segment display to show the window size. (Need to clarify if the kit has a display).
- The last packet from the server has the FIN bit set.
- The client will send a packet with both FIN and ACK bit set. This completes the data transfer.
- Once the interaction is complete, write the retrieved content to a file (on the client side).
Here is what a sample interaction looks like:
Server Client
| |
| seq=12345, ack=0, Win= 0, SYN |
| <------------------------------------------|
| seq=100, ack=12346, SYN, ACK |
| ----------------------------------------- >|
| seq=12346, ack=101, Win = 1, ACK |
| <----------------------------------------- |####handshake complete, start getting data
|seq=101, ack=12347, ACK, 1 Byte payload |
| -----------------------------------------> |
| seq=12347, ack=103, Win = 2, ACK |
| <----------------------------------------- |
....
| <----------------------------------------- |
|seq=1638, ack=12350, FIN, payload=5bytes |
| -----------------------------------------> |
|seq=12350, ack=1643, FIN, ACK |
| <----------------------------------------- |
Submission:
- Submit your code, packet capture in PCAP format, and your logs as a ZIP file.
Additional requirements:
Code must compile/run on the PIs.
For each packet received, log both at server and receiver in the following format:
"RECV" <Sequence Number> <Acknowledgement Number> ["ACK"] ["SYN"] ["FIN"]
"SEND" <Sequence Number> <Acknowledgement Number> ["ACK"] ["SYN"] ["FIN"]
Hints
def create_packet(**kwargs):
data = struct.pack('!I', s_n) #pack the version
....
data += struct.pack("!c", ack) #pack the ACK
data += struct.pack("!c", syn) #pack the SYN
data += struct.pack("!c", fin) #pack the FIN
....
return data
send_data = create_packet(sequence_number=100, ack_number=0, ack = 'Y', syn = 'N', fin = 'N', payload=data)