[SOLVED] 代写 data structure CMPSC 473 Project 4 Extended Attributes

30 $

File Name: 代写_data_structure_CMPSC_473__Project_4__Extended_Attributes.zip
File Size: 593.46 KB

SKU: 2928298436 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


CMPSC 473Project 4Extended Attributes
Due Date: December 13, 2019 11:59pm. 60 points
Single person project. Do your own work!
In this project, you will extend a provided RAM disk file system with extended attributes that are used to store ad hoc metadata with files. While this code is not based directly on any OS implementation, it does share the common concepts from a UNIX file system.
The File System
The provided RAM disk file system stores its disk configuration in memory when you run the project. That is, the layout of the disk is exactly the layout in memory. You will extend this file system with extended attribute that can be added to any file. Fortunately, this extension is largely orthogonal to the provided file system, but there are some lessons to be learned from studying and understanding the file system code provided that you can apply.
The file system is defined by its structure shown below.

The file system consists of a series of blocks, which although in memory in your project correspond to the layout of the file system on disk. The main structures used to implement the different types of file system metadata, including blocks are defined in the file cmpsc473filesys.h in the project code. Do not modify this file.
Each block is prefaced by its block metadata specified in a dblockt structure. The block metadata determines the type of block free, which also indicates whether the type is to be determined, the next block in a list of free blocks next, and metadata about the block in a union data structure st, which may either reference a bitmap for a dentry block or the end of the block data e.g., for data blocks.
The last field data0 is a reference to the blocks data. Note that although this field is declared as an array of size 0, it is actually just a reference to a field whose size is determined at runtime. In the case of blocks, the data in the block is determine by the block type see BLOCK definitions in cmpsc473filesys.h. While this may be uncommon in userspace programs, it is common in the Linux kernelto avoid wasting memory for objects whose size is only known at runtime.
Below, we detail the file system structure shown in the figure above.
Block 0 is the file system block or superblock, which defines the overall structure of the file system using a structure of type dfilesyst. This block states the number of blocks in the file system bsize field, the offset in blocks to the next free block firstfree field, and the offset to the root directory block of the file system root field.
Block 1 stores the root directory block of type ddirt, which is the only directory in our filesystem. Each ondisk directory stores a set of references to directory entries dentries using a hash table. The ondisk directory stores the number of buckets in its hashtable buckets, the free dentry block see below for storing the next directory entry freeblk, and the first free dentry slot index in that dentry block free. The last field data0 indicates the start of the hash table the first bucket for the directory block.
Block 2 is a directory entry dentry block, which stores a series of directory entries dentries of type ddentryt. The dentries store information about each entry in a directory i.e., file or subdirectory. In this project, we only have files, so there are only dentries for files. Each dentry records its files file control block block, which is the first block for a file, the next dentry in the directorys hash table next, and the file name name0 and name length namesize.Thus, directory entry hash table starts in the directory blockby finding the bucket a file name corresponds toand then traverses directory entries in dentry blocks using the next pointer to find the nextdentry block and dentry nextslot using the ddht structures. That is probably the most complicated thing about this file system.
Block 3 is a file control block, which stores the metadata for a particular file using type fcbt. The file control block stores the file permissions available to your one process to this file flags, the size of the file in bytes size, the file data blocks blocks, up to 10 in this project, and the first file attribute block attrblock, see Extended Attributes below. There will be several file control blocksone for each file created.
Block 4 is a data block, which is used to store file data. The dblockt structure at the start of every block is used to manage the file data, which is written starting in the data0 field, and whose current length is recorded by the dataend field in the union.
Extended Attributes
Your task will be to extend the provided file system with extended attributes for files. This section provides background on extended attributes and your specific project tasks.
Background
Many file systems now support extensible storage of file metadata in the form of extended attributes. Programs and the kernel may associate attributevalue pairs with a file for any purpose they desire by storing these pairs with the file as extended attributes.
The way the project uses extended attributes largely follows the extended attribute definitions shown in the manpages for fsetxattr and for fgetxattr. The full tarball for the project is available here.
This project will focus on two separate data blocks, File Xattr Control Blocks attribute blocks and Xattr Data Blocks value blocks. These are shown in this diagram.

Block 5 shows a files extended attribute xattr control block. It is a data block dblockt for one file that contains a structure describing the xattr information, called the xattr control block of type xcbt. At the end of the xcbt is a reference to an array of attribute structures of type dxattrt. We will store all the attribute structures in this one block. The array of 0 indicates that we do not really know how big these data structures are, nor how many we will really store, so we just leave it to be determined at runtime. This is actually a common practice in the Linux kernel.
Blocks 6 and 7 are data blocks that store the corresponding attribute values. As values can vary in size, they are just written like a log to the data block. That is, if we first write an attribute xs value 10, it is written to the data block at the beginning. If we change the value to 11, then we write this value after 10, and update the location in the attribute structure valueoffset. As shown, values can span multiple value blocks.
Using the extended attributes for a file entails allocating and initializing an xattr control block on the first attribute to be set. The xcbt structure maintains the number of extended attributes stored noxattrs one dxattrt entry in this block for each, the size of the dxattrs for this block size, and the references to the value blocks valueblocks used for the correpsonding attribute values.For subsequent attributes, create a new dxattrt structure after the current ones and add the value at the end of the xattr data block. Make sure that the dxattrt for the attribute name stores the offset of the value in the value blocks in the field valueoffset. We can remove a value by setting it to a blank value. We never remove an attribute once created. Consider leveraging diskWrite to write the value because the value may span multiple blocks. In the course of setting attributes, you will have to implement the processing of the flags XATTRCREATE and XATTRREPLACE, where the former requires that no xattr of that name has been created previous to prevent collisions and where the latter requires that the xattr already be defined. See more below.
Getting an attribute value entails, retrieving the file xattr control block, reading the xcbt structure to find the dxattrt structure with the name string, getting the location of the value string and its size from that dxattrt structure, and retrieving the corresponding value from the appropriate block. I create the buffer for you and print the value. Consider using diskRead as values may span multiple blocks.
Project Tasks
In particular, you are going to be required to implement four functions to enable use of extended attributes.
int fileSetAttr unsigned int fd, char name, char value, unsigned int namesize, unsigned int valuesize, unsigned int flags : This function sets an attribute of name length of namesize of a file specified by the descriptor fd to value length of valuesize given the flags value. The flags values can be XATTRCREATE, which requires that the attribute not be assigned to the file previously, and XATTRREPLACE, which requires that the attribute already has been assigned to the file. Your code needs to return an error if the conditions are not consistent with the flags. Otherwise, your code should set the attributes value more detail below.A key function of your code will be to retrieve a block to store extended attributes for the file and assign it to the file fileattrblock. Once assigned, this block should also be made available to the inmemory file filet and the file control block fcbt. Then, the attrblock index can then be retrieved from either the file or the disk, but you should look for this value on the file structure before reading from the fcb the disk. The same should be done for fileGetAttr below.
int fileGetAttr unsigned int fd, char name, char value, unsigned int namesize, unsigned int size : This function retrieves the value of a files attribute name length of namesize. The function also takes a buffer for the value, called value, that is allocated to accept string of up to size bytes. Your code should return the number of bytes read into the value buffer. If no attribute of name is assigned, then nothing 0 bytes is returned.
int diskSetAttr unsigned int attrblock, char name, char value, unsigned int namesize, unsigned int valuesize : Writes the value to a disk data block associating it with the name attribute. As described in detail below, attrblock is the data block for attribute structures dxattrt, so diskSetAttr must create a structure for name if not already there. The attribute values are stored in separate data blocks referenced from the attribute structure.
int diskGetAttr unsigned int attrblock, char name, char value, unsigned int namesize, unsigned int size, unsigned int existsp : Reads the attribute name from the attrblock to retrieve the attribute data structure. This structure contains an offset in the value data blocks to enable retrieval of the value which is written to the value buffer up to length size. If the existsp flag is set, then this function only returns whether the attribute of name exists regardless of whether it has a nonnull value.
Note that reading and writing attributes bears some resemblance to reading and writing generate disk data although the structures for attributes are different see below. However, you should use filediskRead and filediskWrite for guidance.
In the assignment, an output file p4ooutput in the tarball shows the sequence of commands and responses for your file system. You will run 5 commands to generate this output: .cmpsc473p4 yourfs cmdip4output where cmdi is the ith command for e.g., cmd1 for the first. This program is deterministic, so your output should match mine bug disclaimer here.
NOTE: The functionality for cmd1 and cmd2 are part of the provided file system.
Grading:
Submission builds and executes automatically: 6 points
fileSetAttr and diskSetAttr expected behavior: 22 points
fileGetAttr and diskGetAttr expected behavior: 22 points
XATTRCREATE and XATTRREPLACE error cases handled: 10 points

Trent Jaeger

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] 代写 data structure CMPSC 473 Project 4 Extended Attributes
30 $