Fall 2018 CSE30264 Programming Assignment 2 - File Transportation Protocol (FTP)


Total Points: 100 points
Goal: Program a Prototype of a FTP application using TCP
Assigned: September 17
Due: October 3 by the beginning of class.
Grouping: To be completed by a group


Background

In this programming assignment, you will implement the client and server sides of a simple File Transfer Protocol (FTP) application. The file transfer itself will take place using TCP with the client determining the operation to be performed (requesting/downloading a particular file, uploading a file, deleting a file, creating a new directory, removing a directory, changing to a different directory, obtaining a directory listing, or closing the connection). The server should respond appropriately to the specific command. The specifics of the protocol are detailed in this handout. Note: please refer to appendix A for the port number assigned to you (the same as PG1).

Protocol - Simple File Transfer

  1. Server opens port, and goes into "wait for connection" state.
  2. Client connects to the server on the appropriate port.
  3. Server goes into "wait for operation from client" state and waits for operation command from the client.
  4. Client goes into "prompt user for operation" state and prompts user for operation.
  5. Client passes operation (DL: Download, UP: Upload, LS: List, MKDIR: Make Directory, RMDIR: Remove Directory, CD: Change Directory, RM: Remove File, EXIT: Exit) to server.
  6. Operation is executed as follows:
    1. DL:
      Note: Please test DL with the three test files (i.e., LargeFile.mp4, MediumFile.pdf, SmallFile.txt) discussed in the general notes.
      1. Client sends operation (DL) to download a file from the server.
      2. Client sends the length of the file name (short int) followed by the file name (character string).
      3. Server decodes what it receives, and checks to see if the file exists in its local directory.
        1. If the file exists:
          1. Server first calculates the md5 hash of the file using md5sum system utility and returns the md5 hash to the client. (Please refer to the general notes for more details about MD5 hash.)
          2. Serve also returns the size of the file to the client as a 32-bit int in another message.
        2. If the file does not exist, server will return a negative 1 (32-bit int). After that, the server should return to the "wait for operation from client" state.
      4. Client receives 32-bit file length from server.
        1. Client should decode the 32-bit value.
          1. If the value is negative one, user should be informed that the file does not exist on the server. Client should return to "prompt user for operation" state.
          2. If the value is not a negative 1, save the value as the file size for later use.
      5. Server sends the file to client.
        1. Client reads md5 hash from server.
        2. Client reads "file size" bytes from server.
        3. The client saves the file to disk as "file name"
        4. The client calculates the md5 hash of the file received (using the md5sum system utility), compares it to the hash the server sent, and displays a confirmation if they match or an error if they do not.
        5. Inform user that the transfer was successful, and return to "prompt user for operation" state. The client displays throughput results and MD5 hash for the transfer.

    2. UP:
      1. Client sends operation (UP) to upload a local file to a server.
      2. Client sends the length of the file name which will be sent (short int) followed by the file name (character string). Note: you can create a local file called "upload.txt" with random strings to test the UP operation.
      3. Server receives the above information, decodes file name size and file name, and acknowledges that it is ready to receive (it is up to you how to do the acknowledgment).
      4. Client replies with a 32-bit value which is the size of the file (in bytes).
      5. Server receives and decodes the 32 bit value.
        1. Server enters the loop to receive file
        2. Client sends file to server. Server reads "file size" bytes from client and saves them to disk as "filename".
        3. Server computes throughput results for the transfer and the md5 hash of the file.
        4. Server sends the throughput results and hash to the client. This information should be used by the client to inform user that the transfer was successful or not (i.e., if the hash from the server matches the hash of the local file). If the transfer was successful, client displays the throughput information and MD5 hash of the transfer. Otherwise, client informs the user the transfer failed. Finally, client returns to "prompt user for operation" state.

    3. RM:
      1. Client sends operation (RM) to delete a file from the server. Note: you can create a test file called "delete.txt" with random strings in the server directory to test the RM operation.
      2. Client sends the length of the file name which will be sent (short int) followed by the file name (character string).
      3. Server receives the above information, decodes file name size and file name, and checks if the file to be deleted exists or not.
        1. If the file exists, the server sends a positive confirm (integer value 1) back to the client.
        2. If the file does not exit, the server sends a negative confirm (integer value -1) back to the client.
      4. Client receives the confirm from the server.
        1. If the confirm is negative, it prints out "The file does not exist on server" and returns to "prompt user for operation" state.
        2. If the confirm is positive, the client further asks user to confirm if she/he wants to delete the file: "Yes" to delete, "No" to ignore. The client then sends the user's confirm (i.e., "Yes" or "No") back to the server.
          1. If the user's confirm is "Yes", the client waits for the server to send the confirm of file deletion.
          2. If the user's confirm is "No", the client prints out "Delete abandoned by the user!" and returns to "prompt user for operation" state.
      5. The server waits for the delete confirm sent by the client.
        1. If the confirm is "Yes", the server deletes the requested file and returns an acknowledgement to the client to indicate the success or failure of file deletion operation.
        2. If the confirm is "No", the server returns to "wait for operation from client" state.

    4. LS:
      1. Client sends operation (LS) to list the directory at the server.
      2. Server obtains listing of it's directory, including both the permission settings and the name of each file (e.g. "-rwxr-xr-x 1 netid dip 21K Aug 22 12:58 test.txt" or simply "-rwxr-xr-x test.txt" )
      3. Server computes the size of directory listing and sends the size to client as a 32 bit int.
        1. Client receives the size, and goes into a loop to read directory listing.
        2. Once listing is received, client displays listing to user.
        3. Client and server return to "prompt user for operation" and "wait for operation from client" state respectively.

    5. MKDIR:
      1. Client sends operation (MKDIR) to make a directory at the server.
      2. Client sends the length of the directory name which will be sent (short int) followed by the directory name (character string).
      3. Server receives the above information, decodes directory name size and directory name, and checks if the directory to be created exists or not.
        1. If the directory exists, the server sends a negative confirm (integer value -2) back to the client.
        2. If the directory does not exit, the server sends a positive confirm (integer value 1) back to the client if the directory is successfully created; otherwise, the server sends a negative confirm (integer value -1) back to the client.
      4. Client receives the confirm from the server.
        1. If the confirm is negative (-2), it prints out "The directory already exists on server" and returns to "prompt user for operation/wait for operation" state.
        2. If the confirm is negative (-1), it prints out "Error in making directory" and returns to "prompt user for operation/wait for operation" state.
        3. If the confirm is positive, the client prints out "The directory was successfully made" and returns to "prompt user for operation/wait for operation" state.

    6. RMDIR:
      1. Client sends operation (RMDIR) to remove a directory at the server. Note: Directory must be empty for RMDIR to work.
      2. Client sends the length of the directory name which will be sent (short int) followed by the directory name (character string).
      3. Server receives the above information, decodes directory name size and directory name, and checks if the directory to be deleted exists or not.
        1. If the directory exists and is empty, the server sends a positive confirm (integer value 1) back to the client.
        2. If the directory does not exit, the server sends a negative confirm (integer value -1) back to the client.
        3. If the directory exists and is not empty, the server sends a negative confirm (integer value -2) back to the client.
      4. Client receives the confirm from the server.
        1. If the confirm is negative (-1), it prints out "The directory does not exist on server" and returns to "prompt user for operation/wait for operation" state.
        2. If the confirm is negative (-2), it prints out "The directory is not empty" and returns to "prompt user for operation/wait for operation" state.
        3. If the confirm is positive, the client further asks user to confirm if she/he wants to delete the directory: "Yes" to delete, "No" to ignore. The client then sends the user's confirm (i.e., "Yes" or "No") back to the server.
          1. If the user's confirm is "Yes" the client waits for the server to send the confirm of directory deletion.
          2. If the user's confirm is "No" the client prints out "Delete abandoned by the user!" and returns to prompt user for operation/wait for operation state.
      5. The server waits for the delete confirm sent by the client.
        1. If the confirm is "Yes" the server deletes the requested directory and returns an acknowledgement to the client to indicate the success or failure of file deletion operation. (Directory must be empty in order for deletion to occur).
          1. If the acknowledgement is positive, the client prints out "Directory deleted" and returns to "prompt user for operation" state.
          2. If the acknowledgement is negative, the client prints out "Failed to delete directory" and returns to "prompt user for operation" state.
        2. If the confirm is "No" the server returns to "wait for operation" state.

    7. CD:
      1. Client sends operation (CD) to change to a different directory on the server. Note: You can use CD followed by LS to verify that CD worked successfully.
      2. Client sends the length of the directory name which will be sent (short int) followed by the directory name (character string).
      3. Server receives the above information, decodes directory name size and directory name, and checks if the directory to be changed to exists or not.
        1. If the directory exists, the server sends a positive confirm (integer value 1) back to the client if it successfully changed directories; otherwise, the server sends a negative confirm (integer value -1) back to the client.
        2. If the directory does not exist, the server sends a negative confirm (integer value -2) back to the client.
      4. Client receives the confirm from the server.
        1. If the confirm is negative (-2), it prints out "The directory does not exist on server" and returns to "prompt user for operation/wait for operation" state.
        2. If the confirm is negative (-1), it prints out "Error in changing directory" and returns to "prompt user for operation/wait for operation" state.
        3. If the confirm is positive, the client prints out "Changed current directory" and returns to "prompt user for operation/wait for operation" state.

    8. EXIT:
      1. Client sends operation (EXIT) to exit.
      2. Client closes socket, and exits.
      3. Server closes socket and goes back to "wait for connection" state.
      4. Client informs user that session has been closed.

    Note: If it is not explicitly specified, the client and server will return to "prompt user for operation" and "wait for operation from client" state respectively after a successful operation and wait for the next operation.
Important Hint: When uploading and downloading large files, make sure to take into consideration the return value from reading the socket. The system may not provide the same number of bytes as you requested to fill the buffer!

General Notes

Server Side Design

The server is responsible for handling the connection request from a single client, processing the request, then looping back to handle further requests. For this particular assignment, your code only needs to handle one client at a time. The server binary should be named myftpd.

The server should listen on the specified port number [the port number assigned to any of your group members] that is given by command line argument. Your server should bind to the port and then listen for incoming client connections. You may decide if you would like to allow timeouts for better responsiveness but any sort of a timeout is purely optional. You may want to allow for port reuse for quicker recovery after a crash.

Once a new client request arrives, your server should use the accept function to create a new client socket. Once the file has been transmitted, return to the state where your server is waiting for a new command. Your server should be invoked as follows:
./myftpd [Port]

Client Side Design

The client is responsible for initiating a connection to a server. Once connected, the client code should prompt the user for an operation (DL, UP, RM, LS, MKDIR, RMDIR, CD, EXIT), and should transmit the operation to the server. Your client binary should be named myftp. Your client should be invoked as follows:
./myftp Server_Name [Port]

The first argument is the hostname of the server to connect to (this will depend on what machine you start your server code on). The second argument is the port number.

Once a transfer completes successfully, you need to display the throughput and MD5 hash for the transfer. You should display information similar to the following for each file transfer (DL/UP).

44033979 bytes transferred in 1.248041 seconds: 35.282475 Megabytes/sec
MD5 hash: 16f75377518f102f939a531313a2f3a4 (matches)

Demo


Note: Please set the quality of the video to be 720p by clicking the gear in the lower right of the video.


Download the Demo.

Submission

Submit a gzipped tar file of your entire assignment package to your dropbox/program2 directory. The archive must include the following:

Evaluation Rubric


Appendix A

Table 1. Port Assignments
TCP Port to UseName
41001Abrar Ahmed
41002Sam Alptekin
41003Alejandro Rafael Ayala
41004Jacob Beiter
41005James Bodeau
41006James Bonadonna
41007Patrick Bouchon
41008Elisabetta Caldesi
41009Meghan Cullen
41010Joseph DiMaria
41011Kevin Dingens
41012Quang Do
41013Steven Eisemann
41014Brandon Fite
41015Angelica Franco
41016William Fritz
41017Michelle Galbavy
41018Justin Garrard
41019Maria Gund
41020Jessica Hardey
41021Libertad Heredia
41022Sarah Hynds
41023Joshua Johnson
41024Grace Kopp
41025Kendyll Kraus
41026Sophie Lancaster
41027Jose Leon
41028Ale Lopez
41029Anthony Luc
41030Donald Luc
41031Kelly Malecki
41032Ryker McIntyre
41033Stephen Meisenbacher
41034John Meyer
41035Grace Milton
41036Josefa Osorio
41037Molly Pierce
41038Thomas Plummer
41039Allison Raines
41040Marcus Schimizzi
41041Madalyn Schulte
41042Benjamin Shadid
41043Abigail Shirey
41044Rita Shultz
41045Anna Smith
41046Kwan Ho Herman Tong
41047John Villaflor
41048Michael Wang
41049Daniel Wilborn
41050Roann Yanes