Project 4 - File Systems

Administrivia: For this project, you will work with the same partners you had in project 3.
Out: Monday, February 28
Due: Friday, March 11, 11:59pm

Assignment Goals

Overview

The starting point for this assignment is a simplified file system, cse451fs, the design of which imposes strict limits on both the number of files that can be stored and the maximum size of any one file.  In particular, no matter how big a disk you might have, this file system can hold only about 8,000 distinct files, no file can be larger than 13KB, and file names cannot be longer than 30 characters.  These restrictions result from the choice of on-disk data structures used to find files and the data blocks of a given file, that is, the superblock and inode representations. 

Here are the major steps involved in this assignment:

  1. Make sure that you, individually, understand the mechanical aspects of the "development environment" you'll be working in.  These include how to build the file system code, how to configure a ramdisk device to host your file system, and how to run and test your file system.  A description of these mechanical aspects can be found here.  

  2. Of the three limitations cited above you will need to improve the following two:

    Design how you want to implement these file system modifications on disk: how you will represent your directories on disk, how file data is indexed, etc.  There can still be a limit on any of these properties, but your improvement needs to be more than simply altering a program constant. For full credit, you must support a maximum file size of at least 268KB, which can be achieved with a single-indirect strategy as discussed in lecture.

    If you encounter any inexplicable behavior while testing your file system, keep in mind that it might be caused by a limitation of the testing program and not your file system. For example ls only supports 256 character file names, so if you create a longer name with your file system, ls will not show it properly. In general, a good sanity check is to make sure your tests work on regular file systems on spinlock/coredump before running them on your cse451fs.

    If you still have time left over, you may do additional improvements for up to 10% extra credit on this project. Some ideas:

  3. Alter the skeleton code (/cse451/projects/cse451fs.tar.gz) to implement your file system.  There are two major components to this.  One is that the user level program mkfs.cse451fs must be changed to initialize the raw disk device with a valid, empty file system using your new on-disk data structures.  The other is to change the file system source (fsSource/) itself.

Details

Hints/Starting Points

Writeup file

Please turn in a file called writeup.txt or writeup.htm that addresses the following:

  1. Describe the design for your file system modifications.  Include enough details so that we can understand your code based on this description. This part might also include a discussion of other approaches you considered but rejected.
  2. What concurrency-related issues does a file system have to deal with? You probably didn't deal with any of it directly when implementing your extentions, but what did you notice when looking at the rest of the code?
  3. What methodology did you follow in order to test your file system (for functionality)?
  4. Does your implementation work? If not, what parts work and what parts don't? How would you fix it if you had more time?
  5. What do you like best about your design?  What do you like least about it?  How would you improve your design?
  6. If you did any extra credit, describe what you did. Make sure to describe how you implemented it, and how it solves the problem you set out to fix.

Aim to fit this report into about 2 pages or less. The file you submit may be plain (ASCII) text or HTML, and should contain the names of all the people who worked on the project as well as your group name.

Turnin

You will be turning in 6 files:

To create the source archive file, do a "make dist" from your top level project directory.

Use the turnin(1L) program under project name project4 by midnight on the day it is due. Note: turnin will not work on coredump/spinlock, so you'll need to use attu.