Lab 8: Server Roulette
In this lab you'll modify your database server to be part of a networked group of servers, then you will randomly connect to one of your classmates and try to find out whose it is.
When you're done with this lab you will have done the following things:
- Update your server to load a database when it starts
- Update your server to register with a central database "tracker"
- Modify your client to get a random database server
- Update your client to perform a search on a remote server
Pull your Git repository on your Linux. Do all your work for this lab in the
lab8
directory in your repository. When you're finished, check in your code.
Testing: the automated tests will not test the work you do in this lab. For this lab, you'll have to verify your server and client work using your partner's computer, the instructor's Tracker, and by working with other teams.
Part 0: Make sure your Linux can talk to each other
In Your WSL2 terminal, launch a server using port 20000 (the -l is a lowercase L for 'listen')
nc -l 20000
Have your partner try to connect to your computer
nc <your_ip> 20000
Replace
<your_ip>
here with the IP on your computer (useipconfig
in Windows PowerShell to find your IP address).
If your server can not be connected, do the following setup (from prelab 07).
Network Setup
Launch your Ubuntu in WSL2 (and do nothing yet). Then Back to Windows, go the search bar and search the keyword "powershell", and you should see the app "Windows PowerShell" pop up. Then you can find the option to run as Administrator.
Once you have the PowerShell open, copy and paste this command into the PowerShell and hit enter to run it:
netsh interface portproxy add v4tov4 listenport=20000 listenaddress=0.0.0.0 connectport=20000 connectaddress=$(bash -c "ip -4 addr show eth0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}'")
Test again
Use nc
to test the connection between you and your partner again. If it still doesn't connect, ask your instructor for help. Otherwise, process with the following instructions.
Before starting to code, change the TRACKER_ADDR
at the beginning of both server.c
and client.c
to the IP given by your instructor (it has the form 137.112.___.___
). The TRACKER_PORT
should be 22222
.
Part 1: Importing on startup and Kill
As your first step, make your server import a file when it starts up. Right now, when you start the server it has an empty database. You will now specify a file to import when you run the server:
$ ./server data.txt
- Add code to
server.c
so when it starts, it imports a file. - Create a file that can be imported. Practice your creativity to generate a unique file that people may identify you (I love ASCII art). For example, I created a file with this content:
bob => notme alice => notme csse => rocks
Part 2: Using the Tracker from your server
Your instructor will provide you with the IP address for the tracker. The tracker responds to the command from the server:REGISTER
-- tells the tracker your server is online.
Note that the double quotes are *not* a part of the messages.Server <-----"Hi, this is TRACKER, what can I do for you?\n"---- Tracker Server --------------------"REGISTER"--------------------------> Tracker Server <--------------"HELLO <IP address>\n"-------------------- Tracker (disconnect)
Implement sendTrackerCommand
Finish the function `sendTrackerCommand` in `server.c` to:
- Connect to the tracker (HINT: use
TRACKER_ADDR
andTRACKER_PORT
; make sure you are using theTRACKER_ADDR
given by your instructor) - Send to the tracker the command string in the argument
- Print out any response from the tracker to stdout
- Disconnect from the tracker
See the comments in server.c
for more details. You'll use this function for
the remainder of the lab.
Register with the tracker
- Update the
main
function to register with the tracker beforerunServer
. - Be sure to test your registration. Ask your instructor if you want to see if the registration succeeded.
- Launch your server and then print out the instructor verification sheet. Show your instructor and have them verify that registration worked.
Part 3: Connecting your Client to a Random Server
Keep your server running for the rest of this lab. If it crashes or is killed, re-launch it. Other students may try to connect to it!
Now it's time to update your client to pick a random server for connecting. The tracker responds to the command from the client:
RANDOM
-- asks the server for a randomly chosen online server address.
The communication protocol between the tracker and the server is described below:
Client <----"Hi, this is TRACKER, what can I do for you?\n"----- Tracker Client --------------------"RANDOM"----------------------------> Tracker Client <------------"TALKTO <IP address>\n"--------------------- Tracker (disconnect)
Note that the double quotes are not part of the messages.
To implement this, make the following changes:
- Finish
getRandomServer
. This function connects to the tracker, gets a random server from it, and then stores the IP address inrandomIP
. See comments in client.c for details. This is very similar tosendTrackerCommand
in the server. - Add the
'r'
command to the client's runloop. It is almost exactly like'c'
, but will get the IP address from the tracker instead of the user input. - Verify that you can connect to a remote server! Try it out. Identify whose server it is by looking at the server's contents.
- Get your instructor's signature on your instructor verification sheet!
Finishing the Lab
- Scan and upload the signed instructor verification sheet to Gradescope.