In this assignment, you’ll take the server code we supplied and the client code you wrote in lab 9 and combine them to make a command-line 2-party chat program.
Write a single file called schat.c
. Use only C library functions and code you wrote in it: no third-party libraries or C++.
schat.c
should have a main
function that accepts command-line arguments. If given no arguments, it should run in server mode; if given two arguments (the first an IP address, the second a port number) it should run in client mode, connecting to that server.
The server should begin by
accept
only once, unlike the lab server’s accept
loopclose
the listen
er socket before working with the accept
ed socketThe client should begin by
connect
ing to the given IP address and port, like your lab client didBoth should then proceed as follows:
poll
1 to pick either the connected socket (from the server’s accept
or the client’s connect
) or the standard input stream2 to read
3 from. Use a 1-minute4 timeout for poll
.poll
returns a positive number (i.e., it succeeded),
revents
including POLLIN
, read
from standard input and write
what you read to the socket.revents
including POLLIN
, read
from the socket and write
what you read to standard output5. You may assume no single message is more than 4096 bytes, to avoid needing to loop your read
/write
calls.This assignment does not require you to handle the following in any particular way:
poll
call times outYou do need to avoid buffer overflows, use-after-free, and other memory bugs. You are also invited to add sane behaviors for all of the above cases, but are not required to do so.
In a simple implementation, once the client and server connect everything that is typed in one will appear in the other after you press enter.
Server | Client |
---|---|
$.█ |
$ |
As a reminder, you don’t need to be exactly like the above; the initial display, format of output, and behavior of the server after the client ends are all undefined by this assignment.
You will notice all we said about poll
was check the manual page
. This is by design. We hope you now know enough to learn a bit on your own and use it.
It is also possible to look things up online. Except for online man
-pages6, this is a bad idea. In general, online example code is explaining something nuanced within a specific context, and it takes some experience before you are able to tease out the part you can use from the context it is discussed within. I expect if you go to a search engine to find example code, you’ll end up with a lot of code that does not work or meet the required specification in some nuanced way.
The CS department servers (notably including servers portal
redirects you to) all have static IP Addresses meaning tools like host
can learn who they are. Your laptop probably does not.
If your laptop has a C compiler and poll
, socket
, etc., implemented, you can still test locally but you’ll need to use the IP address 127.0.0.1
which always means talk to myself
, running the server and client in two different terminal windows at the same time.
lldb
When you get a segfault, you should
clang -g schat.c
lldb a.out
run
and see the line of code that segfaultedThis will be far easier than trying to locate the segfault without a debugger.
You may also find a debugger useful for other kinds of errors.
We do not currently have plans to offer automated feedback on your code when you submit. We’re also not planning on testing strange cases: if you can carry on a chat conversation with someone else, where either one of you can type several things in a row and it works, you should be good to go.
see man 3 poll
which has some example code in it. There’s also a man 2 poll
; you want man 3 poll
instead↩︎
which is always already open
ed as file descriptor 0
↩︎
Note: this means you’ll need to use POLLIN
as the fds[i].events
instead of the POLLOUT | POLLWRBAND
used in the manual page example.↩︎
60 thousand milliseconds↩︎
which is always already open
ed as file descriptor 1
↩︎
And even those vary a lot in how up-to-date they are…↩︎