Code Monkey home page Code Monkey logo

cmu-tcp's Introduction

15-441/641 Project 2: TCP in the Wild

Welcome to Project 2! Please read the handout and starter code thoroughly before you begin. This README contains a quick summary to get your testing environment set up.

Setting up the development environment

You can use Vagrant and Docker to automatically setup the development environment. This should work both on Linux as well as on macOS (including Apple Silicon macs). However, you should not use Docker for the experimental component of CP2. Those experiments should be run on AWS using separate instances for sending and receiving.

Start by downloading and installing Vagrant and Docker. For macOS, you may use homebrew to install Vagrant but do not use homebrew to install Docker. Instead, download Docker Desktop from the link above.

Once you have both Vagrant and Docker Desktop installed, navigate inside this repo and run:

vagrant up --provider=docker  # builds the server and client containers using Docker.
vagrant ssh {client | server}   # connects to either the client or server using SSH.

Vagrant keeps all files synchronized between your host machine and the two containers. In other words, the code will update automatically on the containers as you edit it on your computer. Similarly, debugging files and other files generated on the containers will automatically appear on your host machine.

Files

The following files have been provided for you:

  • backend.c: This file contains the backend code that will run in a separate thread from the application. This is where most of your logic should go. The backend should deal with most of the TCP functionality, including the state machine, timeouts, retransmissions, buffering, congestion control, etc.

  • cmu_tcp.c: This contains the main socket functions required of your TCP socket including reading, writing, opening and closing. Since TCP needs to works asynchronously with the application, these functions are relatively simple and interact with the backend running in a separate thread.

  • Vagrantfile: Defines the structure, IP addresses, and dependencies in the containers. Feel free to modify this file to add any additional testing tools as you see fit. Remember to document your changes in tests.txt!

  • README.md: A description of your files, as well as your algorithm, if you choose to implement it in CP2.

  • tests.txt: A brief writeup describing your testing strategy, and any tools you used in the process of testing.

  • gen_graph.py: Takes in a PCAP file and generates a graph. Feel free to modify this file to profile Reno and your own algorithm in CP2.

  • capture_packets.sh: Captures packets from the server and client containers and saves them to a PCAP file.

  • tcp.lua: A Lua plugin that allows Wireshark to decode CMU-TCP headers. Copy the file to the directory described in https://www.wireshark.org/docs/wsug_html_chunked/ChPluginFolders.html to use the plugin.

  • test_cp1.py: Test script for CP1 that is executed with make test. You should add your own tests to this file.

  • test_cp2.py: Test script for CP2 that can be executed with make test. You should add your own tests to this file.

  • grading.h: These are variables that we will use to test your implementation. We will be replacing this file when running tests, and hence you should test your implementation with different values.

  • server.c: An application using the server side of your transport protocol. We will test your code using a different server program, so do not keep any variables or functions here that your protocol uses.

  • client.c: An application using the client side of your transport protocol. We will test your code using a different client application, so do not keep any variables or functions here that your protocol uses.

  • cmu_packet.h: This file describes the basic packet format and header and provides helper functions that will help you handle packets. You are not allowed to modify this file! The scripts that we provide to help you graph your packet traces rely on this file being unchanged. All the communication between your server and client will use UDP as the underlying protocol. All packets will begin with the common header described as follows:

    • Course Number [4 bytes]
    • Source Port [2 bytes]
    • Destination Port [2 bytes]
    • Sequence Number [4 bytes]
    • Acknowledgement Number [4 bytes]
    • Header Length [2 bytes]
    • Packet Length [2 bytes]
    • Flags [1 byte]
    • Advertised Window [2 bytes]
    • Extension length [2 bytes]
    • Extension Data [You may use it when designing your own congestion control algorithm]

Manual test

You can manually test your code by running the server and client applications in the containers while also capturing packets using capture_packets.sh. You can then use the same script or Wireshark to view the packets.

Open two terminals. One will be used to access the server container and the other will be used to access the client container.

On the server terminal:

# Access the server container and navigate to the project directory.
vagrant ssh server
cd /vagrant/project-2_15-441/

# Compile.
make

# Start packet capture.
./utils/capture_packets.sh start cap.pcap

# Start the server.
./server

On the client terminal:

# Access the client container and navigate to the project directory.
vagrant ssh client
cd /vagrant/project-2_15-441/

# Note that you don't need to recompile the code here as we already did it on the server and the code is synchronized between the two containers.

# Start the client.
./client

Once the server is done. Stop the packet capture and analyze the packets. In the server terminal:

# Stop the packet capture.
./utils/capture_packets.sh stop cap.pcap

# Analyze the packets.
./utils/capture_packets.sh analyze cap.pcap

You can also access the capture file (cap.pcap in this example) from your host machine and open it with Wireshark. You should use the utils/tcp.lua plugin to decode CMU-TCP headers. To do so, copy the file to the directory described in https://www.wireshark.org/docs/wsug_html_chunked/ChPluginFolders.html.

Automatic tests

You should also run automatic tests. On either the client or server container, navigate to /vagrant/project-2_15-441/ and run:

make test

Note that the test files are incomplete! You are expected to build upon them and write more extensive tests (doing so will help you write better code and save you grief during debugging)!

Submission

To submit your code to Gradescope, make sure that all the files that should be included are committed and then run:

./utils/prepare_submission.sh

This will generate a file called handin.tar.gz at the repository's root directory. Upload this file to Gradescope.

[Optional] Automatic code formatting and analysis

We provided a pre-commit configuration file that you can use to automatically format and statically check your code whenever you commit. Either use the pre-commit already installed in one of the containers or install it in your local machine:

pip3 install pre-commit

And then run the following command in the root directory of this repo to install the pre-commit hook:

pre-commit install

Now, pre-commit will automatically run whenever you commit. If you want to run it manually, you can run:

make format

cmu-tcp's People

Contributors

hsadok avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.