Starting from:
$35

$29

Assignment 3: Wherefore Art Thou, File? Solution

In this project you will write a remote file server that is mostly transparent to the user.




You must first complete the 'base program' segment below, but you are then free to choose which other extensions you implement, with one proviso; you can not implement extension D unless you also implement extension C. If you complete all parts, you will receive 160% credit.







Base Program: (+80%)

You will be providing an interface much like the standard file system calls to allow easy use of files across the network. You should write 'netopen', 'netread', 'netwrite' and 'netclose'. All of these calls should use the same syntax and have the same overall functionality as their local counterparts (except where expressly exempted), but they will ship their parameters your file server where the actual file operations will happen. To your client code, it will look like open and netopen, read and netread, write and netwrite and close and netclose work almost identically, except your net commands are working on files on another machine.










netopen(const char *pathname, int flags)

The argument flags must include one of the following access modes: O_RDONLY, O_WRONLY, or O_RDWR. These request opening the file read-only, write-only, or read/write, respectively.




RETURN VALUE

netopen() returns the new file descriptor, or -1 in the caller's contenxt if an error occurred (in which case, errno is set appropriately). In order to avoid error and disambiguate your file descriptors from the system's, make your file descriptors negative (but not -1!).







ERRORS (check open manpage for definition)

reqiured:

EACCES

EINTR

EISDIR

ENOENT

EROFS

optional (you may want/need)

ENFILE

EWOULDBLOCK

EPERM







ssize_t netread(int fildes, void *buf, size_t nbyte)




RETURN VALUE

Upon successful completion, netread() should return a non-negative integer indicating the number of bytes actually read. Otherwise, the function should return -1 and set errno in the caller's context to indicate the error.




ERRORS (check manpage for definition)

required:

ETIMEDOUT

EBADF

ECONNRESET







ssize_t netwrite(int fildes, const void *buf, size_t nbyte)




RETURN VALUE

Upon successful completion, netwrite() should return the number of bytes actually written to the file associated with fildes. This number should never be greater than nbyte. Otherwise, -1 should be returned and errno set to indicate the error.




ERRORS

required:

EBADF

ETIMEOUT

ECONNRESET







int netclose(int fd)




RETURN VALUE

netclose() returns zero on success. On error, -1 is returned, and errno is set appropriately.




ERRORS

EBADF

netserverinit(char * hostname)

netserverinit(char * hostname, int filemode) (for ext. A only)




RETURN

0 on success, -1 on error and h_errnor set correctly




ERRORS

required:

HOST_NOT_FOUND

optional (if you do extension A)

INVALID_FILE_MODE (be sure to include #define of this error code in your .h if you implement it)







Your file server will be a separate program you write that runs on an iLab machine other than the one your client code runs on. When a net file command in your library is run, the library function should open a connection to your file server and send it a message telling it which function was invoked along with the necessary parameters to run it. Your file server will, based on the message sent to it, run a command on its local file system and send the result back to your library code. These responses may be success, and data, or error code and errno (or h_errno) values to set. On error, your library should take the error code from your file server's response and set the same errno (or h_errno, for network errors) in the calling code's context. You are free to design the messaging protocol however you like.







You should have your file server listening for connections on a port that is greater than 8k (2^13), but less than 64k (2^16). This port can be hard coded in your library. The IP address of the iLab machine that is running your file server must be not be hard-coded, however. Instead, your library should include a function called 'netserverinit' that takes a hostname as an argument and a file connection mode and verifies that the host exists. 'netserverinit' should return -1 on failure and 0 on success. If a net file command is called when 'netserverinit' either has not been run, or has been run on a host name that does not exist, the net file command should return '-1' and set h_errno to HOST_NOT_FOUND. 'netserverinit' is also responsible for making sure your library attaches the file connection mode to every net file command a library sends.




Your file server must also assign remote clients a 'network file descriptor' so that it can tell different clients' requests apart. File descriptors are normally positive, but these are special file descriptors that should never EVER work on the local machine if the user accidentally forgot and tried to use them with regular read() and write(), so your network FDs should be negative.




Your file server only needs to support the flags: O_RDONLY, O_WRONLY and O_RDWR. Any other flag should result in an error.




Your file server should use multiple kernel threads. It should have its server socket in one thread, and on receiving a connection request, should spawn a worker thread to handle the connection and pass it the newly-constructed client connection. The new worker thread will receive the request, decode it, run the appropriate local command and send back its output.

Extension A: (+30%)

Your file server should provide three types of file connections:




0. unrestricted mode

In unrestricted mode, your fileserver will allow any number of clients to have the same file open with any permissions. If three different clients want to have the file open in write mode, as long as they all open in unrestricted mode, your file server should allow it.




1. exclusive mode

In exclusive mode, your fileserver will allow any number of clients to have the same file open in read mode, but only at most one to have it open in write mode. If the file can not be opened with write permission due to another client having it open for writing already, your fileserver should report that the permissions are not allowed in such a case (with an open error and appropriate errno).




2. transaction mode

In transaction mode your file server should allow only one distinct client to have a given file open at a time, for any reason. If any other client wants to open the same file for any reason, it should fail with a lack of permission error code. If some other clients have a file open already in any other mode and another client wants to open the file in transaction mode, its open should fail with a lack of permission error code.







Be sure to create #define codes for these file modes in your .h and modify your netinit function to include a parameter for file mode.




Different clients can have the same file open in different modes simultaneously, so long as all modes allow all permissions. Client 0 may open the file in unrestricted mode, but only ask for read permission. If Client 1 wants to open the same file in exclusive mode with write permission, it should be able to do so without error, since exclusive mode is fine with multiple read connections. If Client 0 instead had the file open in unrestricted mode with read and write permission and Client 1 tried to open the file in write mode, that open request should fail since exclusive mode requires only one client have write permission at a time. If Client 1 got there first and had the file open in exclusive mode with write access and Client 0 tried to open the file with read and write permission in unrestricted mode, that open should fail. It should fail because, even though Client 0 is fine with Client 1's write access, Client 1 expects the file was opened in exclusive mode and that it alone has write access, and that should not ever change until Client 1 closes the file.




Example:




Library side:

netserverinit("basic.cs.rutgers.edu", "exclusive");

--- checks that hostname "basic.cs.rutgers.edu" exists...
- it does!, return 0, do not set errno

int netfd = netopen("/.autofs/ilab/ilab_users/deymious/test.c", O_RDWR) //inside netopen function:

- make a socket

- connect to file server

File server:




//--- got a connection request

//--- new worker thread

// –- give new socket to worker thread




got a socket connected to the file server!

sends "exclusive,/.autofs/ilab/ilab_users/deymious/test.c,O_RDWR" to file server ---



--- worker thread gets message
--- worker thread decodes message
--- worker thread checks global state:

file exists
file isn't open yet
file can be read and written to
--- worker thread modifies global state:

this file is open
this file is in exclusive mode
this file has read and write accesses



--- worker thread sends return value & error code
<--- sends "-92, " to library over socket---///

// –- worker thread exits

- netopen returns -92 and does not set errno













int bytesread = netread(netfd, &buf, 100)

//inside netread function:

make a socket
connect to file server
//--- got a connection request

//--- new worker thread

// –- give new socket to worker thread




- got a socket connected to the file server!

//--- sends "-92,read,100" to file server ---

// --- worker thread gets message

// --- worker thread decodes message

// --- worker thread checks global state:

- client #-92 has read/write access

… request is OK!

// --- worker thread reads 100 byes from file

// --- worker thread packs return value and

bytes into message

<--- sends "100, QUASIFLAPDOODLE ... “ to library

// –- worker thread exits

copy bytes into &buf
returns 100 and does not set errno



Your file server must keep state for all clients and all files, so that global state must be synchronized across all connections (and threads).










Extension B: (+20%)

In order to provide greater bandwidth for 'large' file transfers, your file server will multiplex 'large' reads and writes over multiple connections. For these purposes, we'll consider 'large' to be any operation that requires more than 2K (2^11) bytes. For instance, doing a 8K read would result in a 4-connection multiplex, with 2K segments of the file being processed by 4 different fileserver threads and going over 4 different sockets from the file server to your client library.




To handle 'large' reads, your fileserver should send a configuration message, instead of a data response, to your library informing it how many multi-read connections will be made, which ports the connections will come in on, and which segment of the file will be sent over each port (i.e. port 9123 will get the first 2K, 9124 the second, 9125 the third and 9126 the last).




You shouldn't have more than 10 sockets open over all multiplexed connections. If a client asks to do a 1MB write, it will have at most 10 multiplexed sockets. If a client asks to do a 1MB write and 9 of the multiplexed sockets are in use, it still gets only one socket to send its entire 1MB write over.










Extension C: (+15%)

Your fileserver should queue up operations per file. There should be one queue of operations that is shared between all your fileserver's worker threads for each file that is being currently accessed. Any request that can not currently be serviced does not result in a error, but is reinserted at the front of the queue so that it is serviced as soon as possible.




For instance, if a client wants to open a file in transaction mode that is already open, your file server should requeue that request and the thread that is handling that request should periodically check to see if that file is closed (or it should block on the command, and be informed when the file is closed). Once the file has been closed, the transaction mode request is next in the queue, and should succeed.




Only requests that can not be serviced due to policy rules (opening in transaction mode twice, opening with write permission in exclusive mode twice, etc.) should be requeued because they might eventually succeed. If a request results in a filesystem error, for instance trying to open a file that does not exist, that request can not ever be successful, and should not be requeued. It should immediately send a message to the the library with an appropriate error code.

Extension D: (+15%)

In order to keep from holding open queued connections around forever, you should implement a monitor thread. Once every three seconds, you should have a monitor thread wake up and, for each file service queue, lock it and examine its contents. If any request has been waiting for more than 2 seconds, the monitor thread should invalidate it. The worker thread hosting the request should dequeue the it and send an appropriate error status and errno to the client library (e.g. a 'would block' errno and 'timeout' h_errno is appropriate).










Please submit:

libnetfiles.h

libnetfiles.c

netfileserver.c

Makefile

readme.pdf

More products