代写homework | Network作业 | 代做network | thread代做 | C语言代写 | 代做oop | OS代写 | OS操作系统代写 | assignment – CSCI 4210 Operating Systems

CSCI 4210 Operating Systems

C语言代写 | 代写homework | Network作业 | 代做network | thread代做 | 代做oop | OS代写 | OS操作系统代写 | assignment – 这道题目是利用thread进行的编程代写任务, 是有一定代表意义的Network/network/thread/oop等代写方向, 这个项目是assignment代写的代写题目,练习了C多线程和并行的知识,涉及了网络代写的内容

network代写 代写计算机网络

homework 4

network Programming and Multi-Threaded Programming using C

Overview

 This homework is due by 11:59:59 PM on Tuesday, August 13, 2019.
 This homework is to be completedindividually. Do not share your code with anyone else.
 Youmustuse C for this homework assignment, and your codemustsuccessfully compile
viagccwith absolutely no warning messages when the-Wall(i.e., warn all) compiler option
is used. We will also use-Werror, which will treat all warnings as critical errors.
 Your codemustsuccessfully compile and run on Submitty, which uses Ubuntu v18.04.1 LTS.
Note that thegcccompiler is version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1).
 Further, you must use the P thread library. Remember, to compile your code, use-pthread
to link the Pthread library.

Homework Specifications

In this fourth and final homework assignment, you will use C to write server code to implement a multi-threaded chat server using sockets. Clients will be able to send and receive short text messages from one another. Note that all communication between clients must be handled and sent via your server.

Clients communicate with your server via TCP or UDP via the port number specified as the first command-line argument. For TCP, clients connect to this port number (i.e., the TCP listener port). For UDP, clients send datagram(s) to this port number.

To support both TCP and UDP at the same time, you must use theselect()system call in the main thread to poll for incoming TCP connection requests and UDP datagrams.

Your server mustnotbe a single-threaded iterative server. Instead, your server must allocate a child thread for each TCP connection. Further, your server must be parallelized to the extent possible. As such, be sure you handle all potential synchronization issues.

Note that your server must support clients implemented in any language (e.g., Java, C, Python, MIPS, etc.); therefore, only handle streams of bytes as opposed to any language-specific structures.

And though you will only submit your server code for this assignment, plan to create one or more test clients. Test clients willnotbe provided, but feel free to share test clients with others via Submitty. Donotshare server code. Also note that you can usenetcatto test your server; but donotusetelnet. Also remember the-uflag for UDP innetcat.

Simultaneously supporting TCP and UDP

To provide flexibility to clients, clients can either establish a connection via TCP or simply send/receive datagrams via UDP. As noted above, to support both TCP and UDP at the same time, you must use theselect()system call in the main thread to poll for incoming TCP connection requests and UDP datagrams.

Your server must support at least 32 concurrently connected clients (i.e., TCP connections, with each connection corresponding to a child thread).

For TCP, use a dedicated child thread to handle each TCP connection. In other words, after the accept()call, immediately create a child thread to handle that connection, thereby enabling the main thread to l oop back around and callselect()again. For TCP, you are only guaranteed to receive data up to and including the first newline character in the first packet received; therefore, expect to implement multipleread()calls.

Since UDP is connectionless, for UDP, use an iterative approach (i.e., handle incoming UDP data- grams in the main thread, then immediately loop back to theselect()system call).

Application-layer protocol

The application-layer protocol between client and server is a line-based protocol. Streams of bytes (i.e., characters) are transmitted between clients and your server. Note that all commands are specified in upper-case and end with a newline (‘\n’) character, as shown below.

In general, when the server receives a request, it responds with either a four-byte OK!\n response or an error. When an error occurs, the server must respond with:

ERROR <error-message>\n

For any error message not specified below, use a short human-readable description matching the simple one-line format shown above. Expect clients to display these error messages to users.

The following subsections define the application-layer protocol commands.

LOGIN

If a client uses TCP, the user must first log in (though authentication is not required). A user identifies itself as follows:

LOGIN <userid>\n

Note that a validis a string of alphanumeric characters with a length in the range[4,16]. Upon receiving aLOGINrequest, if successful, the server sends the four-byte OK!\n string.

If the givenis already connected via TCP, the server responds with an<error-message> of Already connected; ifis invalid, the server responds with an<error-message>of Invalid userid (and in both cases keeps the TCP connection open).

WHO

A user may send aWHOrequest to obtain a list of all users currently active within the chat server. When your server receives this request, in addition to sending OK!\n to the client, the response should consist of an ASCII-based sorted list of all users, with users delimited by newline (‘\n’) characters.

As an example, the server may respond with the following:

OK!\nMorty\nRick\nShirley\nSummer\nmeme\nqwerty\n

Note that theWHOcommand must be supported for both TCP and UDP.

LOGOUT

A user connected via TCP may send aLOGOUTrequest to ensure the server marks the user as being completely logged out and inactive. Note that this is recommended but not required for TCP, since the client can simply close its connection to indicate it is logging out.

When aLOGOUTcommand is sent, the server is required to send an OK!\n response. And the connection should stay open (until the remote side closes the connection).

SEND

A user connected via TCP may attempt to send a private message to another user via theSEND command. The required format of theSENDcommand is as follows:

SEND <recipient-userid> <msglen>\n<message>

To be a validSENDrequest, the<recipient-userid>must be a currently active user and the (i.e., length of theportion) must be an integer in the range[1,990].

Note that thecan contain any bytes whatsoever. You may assume that the number of bytes will always match the givenvalue.

If the request is valid, the server responds by sending an OK!\n response. Further, the server attempts to send the message to the<recipient-userid>by sending a TCP packet using the following format:

FROM <sender-userid> <msglen> <message>\n

If the request is invalid, send the appropriate error message from among the following:

 Unknown userid
 Invalid msglen
 Invalid SEND format
 SEND not supported over UDP
BROADCAST

If a user wishes to send a message toallactive users, theBROADCASTcommand can be used. This command can also be used via UDP, i.e., without the need to first log in. The format of this command is as follows:

BROADCAST <msglen>\n<message>

Theandparameters match that of theSENDcommand above. For UDP, use a hard-coded UDP-client string for the<sender-userid>that all UDP clients use.

Handling system call errors

In general, if a system call fails, useperror()to display the appropriate error message onstderr, then exit the program and returnEXIT_FAILURE. If a system or library call does not set the globalerrno, usefprintf()instead ofperror()to write an error message tostderr.

Error messages must be one line only and use one of the appropriate formats shown below:

MAIN: ERROR <error-text-here>

Or:

CHILD <tid>: ERROR <error-text-here>

Required Output

Your server is required to output one or more lines describing each request that it receives. Required output is illustrated in the example below. As per usual, output lines may be interleaved as multiple clients interact with the server simultaneously.

bash$ ./a.out 9876
MAIN: Started server
MAIN: Listening for TCP connections on port: 9876
MAIN: Listening for UDP datagrams on port: 9876
...
MAIN: Rcvd incoming TCP connection from: <client-IP-address1>
CHILD <tid1>: Rcvd LOGIN request for userid Rick
...
MAIN: Rcvd incoming TCP connection from: <client-IP-address2>
CHILD <tid2>: Rcvd LOGIN request for userid Morty
CHILD <tid2>: Rcvd WHO request
CHILD <tid2>: Rcvd SEND request to userid Rick
CHILD <tid2>: Rcvd SEND request to userid Summer
CHILD <tid2>: Sent ERROR (Unknown userid)
CHILD <tid2>: Rcvd WHO request
MAIN: Rcvd incoming UDP datagram from: <client-IP-address>
MAIN: Rcvd BROADCAST request
CHILD <tid1>: Client disconnected
CHILD <tid2>: Rcvd LOGOUT request
CHILD <tid2>: Client disconnected
...
MAIN: Rcvd incoming TCP connection from: <client-IP-address3>
CHILD <tid3>: Rcvd LOGIN request for userid Rick
CHILD <tid3>: Rcvd WHO request
CHILD <tid3>: Rcvd SEND request to userid Rick
CHILD <tid3>: Rcvd SEND request to userid Rick
CHILD <tid3>: Rcvd SEND request to userid Morty
MAIN: Rcvd incoming UDP datagram from: <client-IP-address>
MAIN: Rcvd WHO request
CHILD <tid3>: Rcvd SEND request to userid Morty
CHILD <tid3>: Rcvd BROADCAST request
CHILD <tid3>: Client disconnected
...

Note that the required output above is certainly different than the specific data sent and received via the application-layer protocol. On Submitty, test clients will connect to your server and test whether you have correctly implemented all aspects of the application-layer protocol.

Submission instructions

To submit your assignment (and also perform final testing of your code), please use Submitty, the homework submission server.

Note that this assignment will be available on Submitty a minimum of three days before the due date. Please do not ask when Submitty will be available, as you should perform adequate testing on your own Ubuntu platform.

That said, to make sure that your program does execute properly everywhere, including Submitty, use the techniques below.

First, as discussed in class (on 5/20), use theDEBUG_MODEtechnique to make sure you do not submit any debugging code. Here is an example:

#ifdef DEBUG_MODE
printf( "the value of x is %d\n", x );
printf( "the value of q is %d\n", q );
printf( "why is my program crashing here?!" );
fflush( stdout );
#endif

And to compile this code in debug mode, use the-Dflag as follows:

bash$ gcc -Wall -Werror -D DEBUG_MODE hw4.c -pthread

Second, as discussed in class (on 5/23), output to standard output (stdout) is buffered. To disable buffered output for grading on Submitty, usesetvbuf()as follows:

setvbuf( stdout, NULL, _IONBF, 0 );

You would not generally do this in practice, as this can substantially slow down your program, but to ensure correctness on Submitty, this is a good technique to use.