1. Homepage
  2. Programming
  3. CS202 Operating Systems - Lab 5: File system

CS202 Operating Systems - Lab 5: File system

Engage in a Conversation
NYUCS202Operating SystemsFile systemC

CS202: Lab 5: File system

CourseNana.COM

Introduction

In this lab, you will implement (pieces of) a simple disk-based file system. There is not a lot of code to write; instead, a lot of the work of the lab is understanding the system that you’ve been given. CourseNana.COM

By the end of the lab, you will be able to run your lab 2 ls against this lab’s file system. CourseNana.COM

Getting Started

You’ll be working in the Docker container as usual. We assume that you have set up the upstream as described in the lab setup. Then run the following on your local machine from outside of Docker: CourseNana.COM

$ cd ~/cs202
$ git fetch upstream
$ git merge upstream/main

This lab’s files are located in the lab5 subdirectory. CourseNana.COM

If you have any “conflicts” from lab 4, resolve them before continuing. Run git push to save your work back to your personal repository. CourseNana.COM

The rest of these instructions presume that you are in the Docker environment. We omit the cs202-user@172b6e333e91:~/cs202-labs part of the prompt. CourseNana.COM

FUSE

The file system that we will build is implemented as a user-level process. This file system's storage will be a file (in the example given below, we call it testfs.img) that lives in the normal file system of your Docker container. Much of your code will treat this file as if it were a disk. CourseNana.COM

This entire arrangement (file system implemented in user space with arbitrary choice of storage) is due to software called FUSE (Filesystem in Userspace). In order to really understand what FUSE is doing, we need to take a brief detour to describe VFS. Linux (like Unix) has a layer of kernel software called VFS; conceptually, every file system sits below this layer, and exports a uniform interface to VFS. (You can think of any potential file system as being a "driver" for VFS; VFS asks the software below it to do things like "read", "write", etc.; that software fulfills these requests by interacting with a disk driver, and interpreting the contents of disk blocks.) The purpose of this architecture is to make it relatively easy to plug a new file system into the kernel: the file system writer simply implements the interface that VFS is expecting from it, and the rest of the OS uses the interface that VFS exports to it. In this way, we obtain the usual benefits of pluggability and modularity. CourseNana.COM

FUSE is just another "VFS driver", but it comes with a twist. Instead of FUSE implementing a disk-based file system (the usual picture), it responds to VFS's requests by asking a user-level process (which is called a "FUSE driver") to respond to it. So the FUSE kernel module is an adapter that speaks "fuse" to a user-level process (and you will be writing your code in this user-level process) and "VFS" to the rest of the kernel. CourseNana.COM

Meanwhile, a FUSE driver can use whatever implementation it wants. It could store its data in memory, across the network, on Jupiter, whatever. In the setup in this lab, the FUSE driver will interact with a traditional Linux file (as noted above), and pretend that this file is a sector-addressable disk. CourseNana.COM

The FUSE driver registers a set of callbacks with the FUSE system (via libfuse and ultimately the FUSE kernel module); these callbacks are things like read, write, etc. A FUSE driver is associated with a particular directory, or mount point. The concept of mounting was explained in OSTEP 39 (see 39.17). Any I/O operations requested on files and directories under this mount point are dispatched by the kernel (via VFS, the FUSE kernel module, and libfuse) to the callbacks registered by the FUSE driver. CourseNana.COM

To recap all of the above: the file system user interacts with the file system roughly in this fashion: CourseNana.COM

  1. When the file system user, Process A, makes a request to the system, such as listing all files in a directory via ls, the ls process issues one or more system calls (stat()read(), etc.).
  2. The kernel hands the system call to VFS.
  3. VFS finds that the system call is referencing a file or directory that is managed by FUSE.
  4. VFS then dispatches the request to FUSE, which dispatches it to the corresponding FUSE driver (which is where you will write your code).
  5. The FUSE driver handles the request by interacting with the "disk", which is implemented as an ordinary file. The FUSE driver then responds, and the responses go back through the chain.

Here's an example from the staff solution to show what this looks like, where testfs.img is a disk image with only the root directory and the file hello on its file system: CourseNana.COM

# Create a directory to serve as a mount point. 
# Note: the / is important, because the directory
# should live only in docker's filesystem
$ mkdir /lab5mnt

# create simlink to local directory mnt
$ ln -s /lab5mnt mnt

# see what file system mnt is associated with
$ df mnt    
Filesystem     1K-blocks    Used Available Use% Mounted on
overlay         61202244 8831452  49229468  16% /

# notice, 'mnt' is empty
$ ls mnt    

# mount testfs.img at mnt:
$ build/fsdriver testfs.img mnt 

# below, note that mnt's file system is now different
$ df mnt 
Filesystem         1K-blocks  Used Available Use% Mounted on
CS202fs#testfs.img      8192    24      8168   1% /lab5mnt

# and there's the hello file...
$ ls mnt 
hello

# ...which we can read with any program
$ cat mnt/hello 
Hello, world!

# now unmount mnt
$ fusermount -u mnt 

# and its associated file system is back to normal
$ df mnt 
Filesystem     1K-blocks    Used Available Use% Mounted on
/dev/sda1        7092728 4536616   2172780  68% /

# and hello is gone, but still lives in testfs.img
$ ls mnt 

Note that in the above example, after we run fsdriver, the kernel is actually dispatching the all the open()read()readdir(), etc. calls that ls and cat make to our FUSE driver. The FUSE driver takes care of searching for a file when open() is called, reading file data when read() is called, and so on. When fusermount is run, our file system is unmounted from mnt, and then all I/O operations under mnt return to being serviced normally by the kernel. CourseNana.COM

Our File System

Below, we give an overview of the features that our file system will support; along the way, we review some of the file system concepts that we have studied in class and the reading. CourseNana.COM

On-Disk File System Structure

Most UNIX file systems divide available disk space into two main types of regions: inode regions and data regions. UNIX file systems assign one inode to each file in the file system; a file's inode holds a file's meta-data (pointers to data blocks, etc.). The data regions are divided into much larger (typically 4KB or more) data blocks, within which the file system stores file data and directory data. Directory entries (the "data" in a directory) contain file names and inode numbers; a file is said to be hard-linked if multiple directory entries in the file system refer to that file's inode. Both files and directories logically consist of a series of data blocks; these blocks can be scattered throughout the disk much as the pages of a process's virtual address space can be scattered throughout physical memory. CourseNana.COM

Unlike most UNIX file systems, we make a simplification in the layout of the file system: there is only one region on the disk, in which both inode blocks and data blocks reside. Furthermore, each inode is allocated its own disk block instead of being packed alongside other inodes in a single disk block. CourseNana.COM

Sectors and Blocks

Disk perform reads and writes in units of sectors, which are typically 512 bytes. However, file systems allocate and use disk storage in units of blocks (for example, 4KB, or 8 sectors). Notice the distinction between the two terms: sector size is a property of the disk hardware, whereas block size is a creation of the file system that uses the disk. A file system's block size must be a multiple of the sector size of the underlying disk. As explained in class, there are advantages to making the block size larger than the sector size. CourseNana.COM

Our file system will use a block size of 4096 bytes. CourseNana.COM

Superblocks

File systems typically place important meta-data at reserved, well-known disk blocks (such as the very start of the disk). This meta-data describes properties of the entire file system (block size, disk size, meta-data required to find the root directory, the time the file system was last mounted, the time the file system was last checked for errors, and so on). These special blocks are called superblocks. Many "real" file systems maintain multiple replicas of superblocks, placing them far apart on the disk; that way, if one of them is corrupted or the disk develops a media error in that region, the other replicas remain accessible. CourseNana.COM

Our file system will have a single superblock, which will always be at block 0 on the disk. Its layout is defined by struct superblock in fs_types.h. Block 0 is typically reserved to hold boot loaders and partition tables, so file systems generally do not use the very first disk block. Since our file system is not meant to be used on a real disk, we use block 0 to store the superblock for simplicity. CourseNana.COM

The superblock in our file system contains a reference to a block containing the "root" inode (the s_root field in struct superblock). The "root" inode is the inode for the file system's root directory. This inode stores pointers to blocks; these blocks, together, contain a sequence of dirent structures. Each structure includes a file and an inode number (one can think of this as assigning a given "name" to a given inode); the collection of these structures forms the content of the file system's root directory. These contents can include further directories, etc. CourseNana.COM

The Block Bitmap: Managing Free Disk Blocks

In the same way that the kernel must manage the system's physical memory to ensure that a given physical page is used for only one purpose at a time, a file system must manage the blocks of storage on a disk to ensure that a given disk block is used for only one purpose at a time. In WeensyOS, you kept the physical_pageinfo structures for all physical pages in an array, pageinfo, to keep track of the free physical pages in kernel.c. In file systems it is common to keep track of free disk blocks using a bitmap (essentially, an array of bits, one for each resource that is being tracked). A given bit in the bitmap is set if the corresponding block is free, and clear if the corresponding block is in use. CourseNana.COM

The bitmap in our file system always starts at disk block 1, immediately after the superblock. For simplicity we will reserve enough bitmap blocks to hold one bit for each block in the entire disk, including the blocks containing the superblock and the bitmap itself. We will simply make sure that the bitmap bits corresponding to these special, "reserved" areas of the disk are always clear (marked in-use). Note that, since our file system uses 4096-byte blocks, each bitmap block contains 4096*8=32768 bits, or enough bits to track 32768 disk blocks. CourseNana.COM

File Metadata

The layout of the meta-data describing a file in our file system is described by struct inode in fs_types.h. This meta-data includes the file's size, type (regular file, directory, symbolic link, etc.), time stamps, permission information, and pointers to the data blocks of the file. Because our file system supports hard links, one inode may be referred to by more than one name -- which is why the inode itself does not store the file "name". Instead, directory entries give names to inodes (as noted earlier). CourseNana.COM

The i_direct array in struct inode contains space to store the block numbers of the first 10 (N_DIRECT) blocks of the file, which we will call the file's direct blocks. For small files up to 10*4096 = 40KB in size, this means that the block numbers of all of the file's blocks will fit directly within the inode structure itself. For larger files, however, we need a place to hold the rest of the file's block numbers. For any file greater than 40KB, an additional disk block, called the file's indirect block, holds up to 4096/4 = 1024 additional block numbers, pushing the maximum file size up to (10 + 1024)*4096 = 4136KB, or a little over 4MB. The file system also supports double-indirect blocks. A double-indirect block (i_double in the inode structure) stores 4096/4 = 1024 additional indirect block numbers, which themselves each store 1024 additional direct block numbers. This affords an additional 1024*1024*4096 = 4GB worth of data, bringing the maximum file size to a little over 4GB, in theory. To support even larger files, real-world file systems typically support triple-indirect blocks (and sometimes beyond). CourseNana.COM

Other Features

Our file system supports all the traditional UNIX notions of file ownership, permissions, hard and symbolic links, time stamps, and special device files. Perhaps surprisingly, much of this functionality will come for free (or very low cost) after writing just a small number of core file system operations. Some of the ease in supporting these traditional UNIX file system notions comes from FUSE. CourseNana.COM

Goal

You will implement some components of the FUSE driver (and hence the file system): allocating disk blocks, mapping file offsets to disk blocks, and freeing disk blocks allocated in inodes. In order to do this, you will have to familiarize yourself with the provided code and the various file system interfaces. CourseNana.COM

Source files

  • bitmap.cbitmap.h: operations for manipulating the free disk block bitmap.
  • dir.cdir.h: operations for manipulating directories, including adding entries to directories and walking the directory structure on-disk to access a file.
  • fs_types.h: contains structure and macro definitions relevant to the layout of the file system.
  • inode.cinode.h: operations for reading and writing data to inodes on-disk.
  • disk_map.cdisk_map.h: contains the flush_block() and diskblock2memaddr() functions, both of which are vital for the functions that you will write.
  • fsdriver.c: the main source file for the file system driver.
  • fsformat.c: the main source file for the file system formatting utility.

The main file system code that we've provided for you resides in fsdriver.c. This file contains all the FUSE callbacks to handle I/O syscalls, as well as the main function. Once the path to the disk image and the path to the mount point (testfs.img and mnt respectively in the supplied example) have been read from the command line arguments, our FUSE driver uses mmap() to map the specified disk image into memory. This happens in the map_disk_image function (defined in disk_map.c), which itself initializes some file system metadata. Then, fsdriver.c calls fuse_main, which handles kernel dispatches to our registered callbacks. These callbacks will invoke the functions that you write in the coming exercises. CourseNana.COM

As stated in class, mmap reserves a portion of the running process's virtual address space to provide read and write access to a file as if that file were an array in memory. For example, if file is a pointer to the first byte of a memory-mapped file, writing ((char *)file)[5] = 3 is approximately equivalent to the two calls lseek(fd, 5, SEEK_SET) and then write(fd, <location of memory that holds byte 3>, 1). To flush any in-memory changes you've made to a file onto the disk, you would use the msync function. As always, you can check the man pages for more information on these syscalls. For this lab, you will not need to be intimately familiar with their operation, but you should have a high-level understanding of what they do. CourseNana.COM

Heads up: some key tips for the lab. CourseNana.COM

  • It’s virtually impossible to do this lab correctly without reading the supplied code and specs carefully. This includes comments, programming idioms in the supplied code, specs of functions that you are supposed to call, specs of functions that you are supposed to write, and more. CourseNana.COM

  • Expanding on the prior point: if you’re not sure how to do something, look around in the same file for how other functions are implemented in the supplied code; this will give you programming hints. CourseNana.COM

  • As usual, bugs in earlier exercises may show up only in later exercises, or in later grading tests. CourseNana.COM

  • In computing, it’s generally impossible to validate something completely with a fixed set of tests; here too, it is possible to pass the tests with wrong logic that is later penalized by hand grading. Thus, you will want to make sure not only that you are passing the tests but also that the logic is sensible. CourseNana.COM

  • You will very likely need to use the debugger (gdb). We include instructions below on running the driver under gdb; for gdb-specific commands, such as breakpoint-setting, please see lab 1. CourseNana.COM

The work

Exercise 1. Before coding in the driver, cd to the lab5 directory and run ./chmod-walk in the Lab 5 directory. This will set up permissions in the directories leading up to your lab directory correctly so that you will be able to run the driver successfully. (If you do not run this script, FUSE will be unable to mount or unmount file systems in your lab directory.) CourseNana.COM

When you run the FUSE driver ($ build/fsdriver testfs.img mnt), the function map_disk_image will set the bitmap pointer. After this, we can treat bitmap as a packed array of bits, one for each block on the disk. See, for example, block_is_free, which simply checks whether a given block is marked free in the bitmap. CourseNana.COM

Exercise 2. Implement alloc_block in bitmap.c. It should find a free disk block in the bitmap, mark it used, and return the number of that block. When you allocate a block, you should immediately flush the changed bitmap block to disk with flush_block, to help file system consistency. Under the hood, flush_block calls msync to schedule the disk block in memory to get flushed to the actual disk image. CourseNana.COM

Note: You should use free_block as a model. CourseNana.COM

Use make grade to test your code; run it as sudo like this: CourseNana.COM

$ sudo make grade

Your code should now pass the "alloc_block" test. CourseNana.COM

  CourseNana.COM

Debugging

The output of our make grade will usually not provide you with enough information to debug a problem. Here are some debugging guidelines. CourseNana.COM

Debugging is crucial in this lab. Or, put differently: it would be very surprising if make grade gives all of the points on your first attempt. And when it does not give you all of the points, you will need to debug. This section tells you how. CourseNana.COM

First, when the grading script fails, look at the scripts in test/ to see what is actually happening. Some of the tests are in the fs_test() function in fsdriver.c. Others are invoked by separate C programs. You will have to identify which test or test program is causing the failure. This is a prior step to using gdb and requires doing some detective work on the grading script and the supplied code. (This sort of detective work is a necessary skill when creating or contributing to any non-trivial software project.) CourseNana.COM

Second, note that “Transport endpoint is not connected” and “Software caused connection abort” are errors that user programs see when the file system driver panics or otherwise crashes and is no longer handling system calls (open()read(), etc.) for that mount point. So, when a program starts producing these errors (for example, from a grading script), you will probably need to run the driver in gdb to see where it’s panicking. CourseNana.COM

The rest of this section gives building blocks and a detailed howto for gdb. The howto assumes that you have read and absorbed the building blocks. CourseNana.COM

Basic approach and building blocks CourseNana.COM

  • The approach to debugging has three high level steps. (1) Set up the file system (the grading scripts do this for you but when debugging you need to do it semi-manually), (2) Run the file system driver (either standalone or in gdb) that invokes your file system, and (3) Run a program that actually interacts with the file system (again, either standalone or in gdb). Each of these steps requires specific commands from you; we delve into these commands now. CourseNana.COM

  • For step (1), setting up the file system semi-manually, a relatively straightforward to do this is to run: CourseNana.COM

      $ test/testbasic.bash

    This script creates a disk image, testfs.img, which is set up properly for further internal tests in the driver. It also runs some basic tests on the driver (specifically: CourseNana.COM

      $ build/fsdriver testfs.img mnt --test-ops

    which you might find useful to run on its own.) CourseNana.COM

    You can also delve into the bash scripts and try to reproduce the kinds of commands that are in, say, test/teststress.bash. Be aware that these shell scripts call shell library functions that are defined in test/libtest.bash. CourseNana.COM

  • For steps (2) and (3), you will typically need to run these side-by-side, literally. To do this, you will want to use the tmux program. Therefore, if you haven’t already done so for lab 4, take 10 minutes right now to do the tmux tutorial. CourseNana.COM

  • For step (2), running the file system driver, you will want to run using the -d flag. The standalone version is as follows (later on in this description we will show it for gdb). CourseNana.COM

      $ build/fsdriver -d testfs.img mnt

    or you may need to preface this command with sudo: CourseNana.COM

      $ sudo build/fsdriver -d testfs.img mnt

    This command runs the driver in debugging mode and mounts testfs.img at mnt. In debugging mode, the driver does not exit until you press Ctrl-C. This means that you cannot interact with the file system via the terminal containing the command above; instead, you will need to interact with the file system from another terminal (again, using tmux). CourseNana.COM

    While in debugging mode, fsdriver will print to the console a trace of the syscalls dispatched to the driver; any printfs that you insert in the driver will also be displayed. Once you run the command above, you should see something like: CourseNana.COM

      FUSE library version: 2.9.2
      nullpath_ok: 0
      nopath: 0
      utime_omit_ok: 0
      unique: 1, opcode: INIT (26), nodeid: 0, insize: 56, pid: 0
      INIT: 7.23
      flags=0x0003f7fb
      max_readahead=0x00020000
      INIT: 7.19
      flags=0x00000011
      max_readahead=0x00020000
      max_write=0x00020000
      max_background=0
      congestion_threshold=0
      unique: 1, success, outsize: 40
      ...
  • For step (3), you will use another terminal (again, using tmux). Something like: CourseNana.COM

      $ ls mnt 

    will cause the original terminal to print germane output. CourseNana.COM

  • To actually debug, you can use printf or gdb. Any printfs that you add will be displayed in the terminal with fsdriver, as stated above. However, gdb is likely to be more effective. See below for instructions. CourseNana.COM

Running the driver in gdb: CourseNana.COM

  • We assume that you have already done step (1) above. This section is about how to run steps (2) and (3) under the debugger. CourseNana.COM

  • If you haven’t already done so for lab 4, take 10 minutes right now to do the tmux tutorial. CourseNana.COM

  • Then look over how we use gdb with tmux in lab 4. CourseNana.COM

  • In this case, do the following, recalling that C-b % means “type Ctrl-b together, let go, and then type the % key”: CourseNana.COM

      $ tmux
      C-b %
  • At this point, you should have two side-by-side panes, with the active one being the one on the right. Go back to the one on the left with C-b <left> (which means “Ctrl-b together, let go, and then type the left arrow key”), and type the following. You might again need to preface the command with sudo: CourseNana.COM

      $ gdb build/fsdriver
      <set breakpoints, as usual>
      (gdb) run -d testfs.img mnt 

    In this way, you will be running build/fsdriver -d testfs.img mnt or sudo build/fsdriver -d testfs.img mnt but in the debugger. CourseNana.COM

  • Then back to the right-hand pane with C-b <right>. In that terminal: CourseNana.COM

      # manually run anything driven from the test/ directory,
      # possibly under gdb. For example:
    
      $ build/posixio
    
      # or
    
      $ gdb build/stressfs
      <set breakpoints, as usual>
      (gdb) run

Cleaning up. During the course of testing your FUSE driver, various combinations of operations may cause your FUSE driver to stop functioning or enter a non-clean state. It may be helpful to search Campuswire for information about specific error messages. CourseNana.COM

More generally, to get your system to a clean starting state, you can do the following (you may need to preface some of these commands with sudo) CourseNana.COM

    $ fusermount -u mnt          # unmount the driver

If that does not work, then force it with: CourseNana.COM

    $ sudo umount -f mnt

Then continue: CourseNana.COM

    $ echo 'sample' > build/msg  # create a message
    $ test/makeimage.bash        # make a clean testfs.img
    $ rm -f mnt                  # remove the symlink
    $ sudo rm -rf /lab5mnt       # remove the mounting directory and its residents
    $ sudo mkdir /lab5mnt        # recreate the mounting directory
    $ ln -s /lab5mnt mnt         # recreate the symlink

You may wish to encapsulate these actions in a shell script. CourseNana.COM

Once you have executed the above lines, you start the driver again with the following, possibly prepended with sudo: CourseNana.COM

    $ build/fsdriver -d testfs.img mnt

File Operations

We have provided various functions in dir.c and inode.c to implement the basic facilities you will need to interpret and manage inode structures, scan and manage the entries of directories, and walk the file system from the root to resolve an absolute pathname. Read through all of the code in these files and make sure you understand what each function does before proceeding. CourseNana.COM

Exercise 3. Implement inode_block_walk and inode_get_block in inode.c. CourseNana.COM

These are the workhorses of the file system. For example, inode_read and inode_write aren’t much more than the bookkeeping atop inode_get_block necessary to copy bytes between scattered blocks and a sequential buffer. CourseNana.COM

Their signatures are: CourseNana.COM

int inode_block_walk(struct inode *ino, uint32_t filebno, uint32_t **ppdiskbno, bool alloc);
int inode_get_block(struct inode *ino, uint32_t filebno, char **blk);

inode_block_walk has similar logic to the virtual memory lookup function in lab4. It finds the disk block number slot for the 'filebno'th block in inode 'ino', and sets '*ppdiskbno' to point to that slot. inode_get_block goes one step further and sets *blk to the start of the block, such that by using *blk, we can access the contents of the block. It also allocates a new block if necessary. CourseNana.COM

The pointers-to-pointers may be confusing. It’s best to draw pictures, or look at other code in inode.c, or think about how to call the function. Also, as a reminder: in C, when we want to return multiple values from a function (or return one value, in a function returning an int status code), we set up the function to take a pointer (address) as a parameter, and we put the return value in the supplied address (by dereferencing the pointer). As an example, if we have a function f(int* p), the implementation of f can return an int to the caller by storing into (dereferencing) the supplied address, with a line like *p = 5. This identical pattern holds when the return value is itself a pointer. In our example, the return value is an uint32_t* (an address whose contents will be a 32-bit block number). So, the caller passes storage for that uint32_t*: an uint32_t**. CourseNana.COM

Use make grade to test your code (again, by invoking: $ sudo make grade). Your code should pass the "inode_open" and "inode_get_block" tests. CourseNana.COM

After Exercise 3, you should be able to read and write to the file system. Try something like CourseNana.COM

$ echo "hello" > "mnt/world"; cat "mnt/world"

Exercise 4. Implement inode_truncate_blocks in inode.cinode_truncate_blocks frees data and metadata blocks that an inode allocated but no longer needs. This function is used, for instance, when an inode is deleted; the space reserved by the inode must be freed so that other files can be created on the system. CourseNana.COM

Use make grade to test your code ($ sudo make grade). Your code should pass the "inode_flush/inode_truncate/file rewrite" tests. CourseNana.COM


CourseNana.COM

Exercise 5. Implement inode_link and inode_unlink in inode.cinode_link links an inode referenced by one path to another location, and inode_unlink removes a reference to an inode at a specified path. Make sure that you properly increment the link count in an inode when linking and decrement the link count when unlinking. Don't forget to free an inode when its link count reaches zero! CourseNana.COM

inode_link and inode_unlink allow us to exploit the level of indirection provided by using inodes in our file system (as opposed to storing all file meta-data inside of directories, for instance) and manage referencing inodes with multiple names. The inode_unlink operation is particularly important as it allows us to release the space reserved for an inode, acting as a "remove" operation when an inode's link count is one. CourseNana.COM

Use make grade to test your code ($ sudo make grade). Your code should pass the "inode_link/inode_unlink" tests. CourseNana.COM

After Exercise 5, you should be able to make hard links. Try something like CourseNana.COM

$ echo "hello" > "mnt/world"; ln "mnt/world" "mnt/hello"; rm "mnt/world"; cat "mnt/hello"

The tests after "inode_link/inode_unlink" are all effectively stress tests, in some way or another, for the driver. Each of them relies on the core functionality that you implemented; some can fail if you didn't handle certain edge cases correctly. If you fail one of these tests, go back and check the logic in your code to make sure you didn't miss anything. CourseNana.COM

Exercise 6. Run your ls from lab 2 against the file system in mnt. Paste the output of CourseNana.COM

    $ /path/to/your/ls -alR mnt

into answers.txt. If you have a non-working lab 2, then just note that in the answers.txt file. CourseNana.COM

You can have fun – not graded – using the fact that you are writing both ls and implementing the file system. For example, you could consider having your file system stuff coded messages in extraneous dirents, and then interpret/decode them in ls. CourseNana.COM

Extra credit questions

Do either of the following for extra credit (you can do both, but extra credit is given for only one). As in lab4, the points given will not be commensurate with effort required. CourseNana.COM

Exercise 7. The file system is likely to be corrupted if it gets interrupted in the middle of an operation (for example, by a crash or a reboot). Implement soft updates or journalling to make the file system crash-resilient and demonstrate some situation where the old file system would get corrupted, but yours doesn't. CourseNana.COM


CourseNana.COM

Exercise 8. Currently, our file system allocates one block (4096 bytes) per inode. However, each struct inode only takes up 98 bytes. If we were clever with file system design, we could store 4096/98 = 41 inodes in every block. Modify the file system so that inodes are stored more compactly on disk. You may want to make the file system more like a traditional UNIX file system by splitting up the disk into inode and data regions, so that it is easier to reference inodes by an index (generally called an "inum" for "inode number") into the inode region. CourseNana.COM

Further questions

Answer the following questions in answers.txt. CourseNana.COM

  1. How long approximately did it take you to do this lab?
  2. Do you feel like you gained an understanding of how to build a file system in this lab? Please suggest improvements.

Submission

Handing in consists of three steps: CourseNana.COM

  1. Executing this checklist: CourseNana.COM

    • Make sure your code builds, with no compiler warnings.
    • Make sure you’ve used git add to add any files that you’ve created.
    • Fill out the top of the answers.txt file, including your name and NYU Id
    • Make sure you’ve answered every question in answers.txt
    • Make sure you have answered all code exercises in the files.
    • Create a file called slack.txt noting how many slack days you have used for this assignment. (This is to help us agree on the number that you have used.) Include this file even if you didn’t use any slack days.
    • git add and commit the slack.txt file
  2. Push your code to GitHub, so we have it (from outside the container or, if on Mac, this will also work from within the container): CourseNana.COM

    $ cd ~/cs202/lab5 
    $ make clean
    $ git commit -am "hand in lab5"
    $ git push origin 
    
    Counting objects: ...
    ....
    To  git@github.com:nyu-cs202/labs-24sp-<YourGithubUsername>.git
      7337116..ceed758  main -> main
  3. Actually submit, by timestamping and identifying your pushed code: CourseNana.COM

    • Decide which git commit you want us to grade, and copy its id (you will paste it in the next sub-step). A commit id is a 40-character hexadecimal string. Usually the commit id that you want will be the one that you created last. The easiest way to obtain the commit id for the last commit is by running the command git log -1 --format=oneline. This prints both the commit id and the initial line of the commit message. If you want to submit a previous commit, there are multiple ways to get the commit id for an earlier commit. One way is to use the tool gitk. Another is git log -p, as explained here, or git show.
    • Now go to NYU Brightspace; there will be an entry for this lab. Paste only the commit id that you just copied.
    • You can submit as many times as you want; we will grade the last commit id submitted to Brightspace.

NOTE: Ground truth is what and when you submitted to Brightspace. Thus, a non-existent commit id in Brightspace means that you have not submitted the lab, regardless of what you have pushed to GitHub. And, the time of your submission for the purposes of tracking lateness is the time when you upload the id to Brightspace, not the time when you executed git commit. CourseNana.COM

This completes the lab CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
NYU代写,CS202代写,Operating Systems代写,File system代写,C代写,NYU代编,CS202代编,Operating Systems代编,File system代编,C代编,NYU代考,CS202代考,Operating Systems代考,File system代考,C代考,NYUhelp,CS202help,Operating Systemshelp,File systemhelp,Chelp,NYU作业代写,CS202作业代写,Operating Systems作业代写,File system作业代写,C作业代写,NYU编程代写,CS202编程代写,Operating Systems编程代写,File system编程代写,C编程代写,NYUprogramming help,CS202programming help,Operating Systemsprogramming help,File systemprogramming help,Cprogramming help,NYUassignment help,CS202assignment help,Operating Systemsassignment help,File systemassignment help,Cassignment help,NYUsolution,CS202solution,Operating Systemssolution,File systemsolution,Csolution,