In this assignment you will build a FUSE filesystem driver that will let you mount a 1MB disk image (data file) as a filesystem. The implementation only needs to support files of size <= 4K.
For this assignment you will need to use your local Ubuntu VM (or another local modern Linux). You'll need to install the following packages:
libfuse-dev
libbsd-dev
pkg-config
Running
$ sudo apt-get install libfuse-dev libbsd-dev pkg-config
should do the trick.
Make sure your working directory is a proper Linux filesystem, not a remote-mounted Windows or Mac directory, i.e., do not use /vagrant
.
You should extend the provided starter code so that it lets you do the following:
- Create files.
- List the files in the filesystem root directory (where you mounted it).
- Write to small files (under 4k).
- Read from small files (under 4k).
- Rename files.
- OPTIONAL: Delete files.
You will need to extend the functionality in nufs.c
, which only provides a simulated filesystem to begin with. This will require that you come up with a structure for how the file system will store data in it's 1MB "disk". See the filesystem slides and OSTEP, Chapter 40 for inspiration.
We have provided some helper code in the helpers/
directory. You can use it if you want, but you don't have to. However, blocks.{c,h}
and bitmap.{c,h}
might save you some time as these implement block manipulation over a binary disk image. Feel free to extend the functionality if needed.
Some additional headers that might be useful are provided in the hints
directory. These are just some data definitions and function prototypes to serve as an inspiration. Again, feel free to implement your own structs and abstractions.
- Submit your Github repo to Gradescope under Assignment 6.
- DO NOT submit any binary files (no executables, no .o files, no disk image files).
The provided Makefile should simplify your development cycle. It provides the following targets:
-
make nufs
- compile thenufs
binary. This binary can be run manually as follows:$ ./nufs [FUSE_OPTIONS] mount_point disk_image
-
make mount
- mount a filesystem (usingdata.nufs
as the image) undermnt/
in the current directory -
make unmount
- unmount the filesystem -
make test
- run some tests on your implementation. This is a subset of tests we will run on your submission. It should give you an idea whether you are on the right path. You can ignore tests for deleting files if you are not implementing that functionality. -
make gdb
- same asmake mount
, but run the filesystem in GDB for debugging -
make clean
- remove executables and object files, as well as test logs and thedata.nufs
.
The grade is broken down into three categories:
- 70% Functionality and FS design
- Based on automatic and manual testing
- Does the filesystem correctly and efficiently implement the requested functionality?
- Do operations complete in a reasonable time? We put a 30s timeout on most test cases.
- 30% Style
- Via manual code review
- Basics: meaningful purpose statements; explanation of arguments and return values
- Explicitly stated assumptions
- Correct use of types (e.g., not assigning -1 to an unsigned)
- Short, understandable functions (generally, < 50 lines)
- Consistent indentation and use of whitespace
- Explanatory comments for complex blocks of code
- No extra binaries (.o, executable files, etc.) or superfluous files committed to your repo
You can earn extra credit as follows:
- 1% for supporting the delete operation on files
- 3% for supporting arbitrarily nested directories, including creating, renaming and deleting them, as well as moving files between them
- 3% for supporting arbitrarily large files which, of course, must fit into the free blocks on disk. This must include proper allocation and deallocation as the file grows or shrinks.
If you are doing extra credit, submit the extended version to "Assignment 6 EC" on Gradescope.
- Come to the last lab. We will be talking about how to get started and demoing the starter code.
- There aren't man pages for FUSE. Instead, the documentation is in the header
file:
/usr/include/fuse/fuse.h
- The sources for libfuse contains a few further examples. Start with
hello.c
. - The basic development / testing strategy for this assignment is to run your
program (e.g., using
make mount
) in one terminal window and try file system operations on the mounted filesystem in another separate terminal window. - Read the manual pages for the system calls you're implementing.
- To return an error from a FUSE callback, you return it as a negative number (e.g. return -ENOENT). Some things don't work if you don't return the right error codes.
- Read and write, on success, return the number of bytes they actually read or wrote.
- You need to implement
getattr
early and make sure it's correct. Nothing works withoutgetaddr
. The mode for the root directory andhello.txt
in the starter code are good default values for directories and files respectively. - The functions
dirname
andbasename
exist, but may mutate their argument. - https://www.cs.hmc.edu/~geoff/classes/hmc.cs135.201109/homework/fuse/fuse_doc.html