Re: Designing Another File System

From: Helge Hafting (helge.hafting_at_hist.no)
Date: 11/30/04

  • Next message: Thomas Voegtle: "Re: Linux 2.4.29-pre1 (resend)"
    Date:	Tue, 30 Nov 2004 14:07:18 +0100
    To: John Richard Moser <nigelenki@comcast.net>
    
    

    John Richard Moser wrote:

    > -----BEGIN PGP SIGNED MESSAGE-----
    > Hash: SHA1
    >
    > Greetings.
    >
    > I've been interested in file system design for a while, and I think I
    > may be able to design one. Being poor, I would like to patent/sell it
    > when done;

    Well, if you want to make money - you get to do the work. Including
    the initial research into filesystem design.

    > however, whatever the result, I'd assuredly give a free
    > license to implement the resulting file system in GPL2 licensed code (if
    > you're not making money off it, I'm not making money off it). This is
    > similar in principle to how Hans Reiser sells his file system I think.

    GPL means no restrictions, you can't prevent, say, redhat from
    selling distro CDs with your GPL'ed fs. As for _patenting_ it, well,
    people here generally dislike software patents for good reasons.
    You don't need a patent for this either - a copyright is probably
    what you're after.

    >
    > 2) Are there any other security concerns aside from information leaking
    > (deleted data being left over on disk, which may pop up in incompletely
    > written files)?

    Have you considered what kind of data loss you'll get if power fails
    before stuff is written to disk, or while it is being written? That sort
    of thing is important to users, because it really happens a lot. Can you
    design so a good fsck for your fs is possible?

    > 6) How do I lay out a time field for atime/dtime/ctime/mtime?
    >
    Any way you like, as long as you actually store the information
    in a retrieveable way.

    >
    > A few more specifics, as Block size grows, the file system does not lose
    > efficiency. Fragment Blocks should skillfully subdivide huge Blocks
    > with a third level index, increasing seek time O(+1) for the information
    > stored in the Fragment Block:
    >
    >
    > - -Inode
    > |-Meta-data
    > ||-Data Block
    > |||-Data (2 seeks)
    > ||-Fragment Block
    > |||-Fragment
    > ||||-Data (3 seeks)
    >
    >
    > Fragment Blocks can store anything but Inodes, so it would be advisable
    > to avoid huge Blocks; if a Block is 25% of the disk, for example, one
    > Block must be dedicated to serving up Inode information. Also, with
    > 64KiB blocks, a 256TiB file system can be created. Larger Blocks will
    > allow larger file systems; a larger file system will predictably house
    > more files (unless it houses one gargantuan relational data base-- the
    > only plausible situation where my design would require more, smaller
    > blocks to be more efficient).
    >
    > Directories will have to be some sort of on disk BsomethingTree. . . B*,
    > B+, something. I have no idea how to implement this :D I'll assume I

    Then you have a lot to learn about fs design - before you can
    design anything _sellable_. Take a look at the details of
    existing linux fs'es - and be happy that you can do that at all because
    they aren't patented or otherwise restricted.

    > treat the directory data as a logically contiguous file (yes I'm gonna
    > store directory data just like file data). I could use a string hash of
    > the Directory Entry name with disambiguation at the end, except my
    > options here seem limited:
    >
    >
    > - - Use a 32 bit string hash, 4 levels, 8 bits per level. 256 entries of
    > 32 bit {offset} for the next level per level, 1024B per level on unique
    > paths. Worst case 1 path per file, 65536 files in the worst case
    > measure 1 root (1KiB) + 256 L2 (256KiB) + 65536 L3 (64M) + 65536 L4
    > (64M), total 128MiB, collision rate is probably low. Ouch.
    >
    > - - Use a 16 bit string hash, 2 levels, 8 bits per level. 256 entries of
    > 32 bit {offset) for the next level per level, 1024B per level on unique
    > path. Worst case 1 path per file, 65536 files in the worst case measure
    > 1 root (1KiB) + 256 L2 (256KiB), no disambiguation, though collision
    > rate is probably higher than that. Beyond 65536 creates collisions.
    > Hitting a disambiguation situation is going to be fairly common.
    >
    >
    > I guess the second would be better? I can't locate any directories on
    > my drive with >2000 entries *shrug*. The end key is just the entry
    > {name,inode} pair.

    If you want this fs to be generically used, expect some people to show
    up with millions of files in a directory or tens of millions.
    They will not be amused if the lookup isn't O(1). . .

    There are still fs'es around that don't look up names in O(1)
    time, but some O(1) fs'es exist. So, to _sell_ you need to be among the
    better ones.

    > Any ideas?
    >
    Write a serious free fs, and get help here. Or go commercial - sell
    your fs and pay your developers and helpers.

    Helge Hafting
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/


  • Next message: Thomas Voegtle: "Re: Linux 2.4.29-pre1 (resend)"

    Relevant Pages

    • Re: Designing Another File System
      ... |> I've been interested in file system design for a while, ... I'll definitely code it myself if I decide to sell licenses to use the ... | people here generally dislike software patents for good reasons. ...
      (Linux-Kernel)
    • Designing Another File System
      ... I've been interested in file system design for a while, ... - - localization of Inodes and related meta-data to prevent disk thrashing ...
      (Linux-Kernel)
    • Re: VFS design question
      ... The VFS is a great solution to transparently operate on different file ... file system specific code from higher levels. ... but is or has the VFS interface design been limiting ...
      (Linux-Kernel)
    • Repair-driven file system design (was Re: ZFS with Linux: An Open Plea)
      ... the chunkfs design is only one way to implement repair-driven ... file system design - designing your file system to make file system ... check and repair fast and easy. ...
      (Linux-Kernel)
    • Re: Thinking outside the box on file systems
      ... 50ms to update in-memory dentries would be FRIGGING ... file system would be implemented. ... "hash" I didn't mean that it is going to be only a ... - their life, your story. ...
      (Linux-Kernel)