Live data from Hacker News

Recursive Filesystem Entries

blog.wesleyac.com

1–5 of 5 posts

Re: Recursive Filesystem Entries

#3
It's a FAT12 fs where a cycle has been hex edited into the file data to produce a 4GB repeating file on a tiny fs. Cute!

I had to read quite far before realizing it wasn't an over-explained article on sparse files.

Re: Recursive Filesystem Entries

#4
One may wonder why the filesystem driver doesn't have cycle detection, but the fact that filesystem structures are generally considered trusted data, a cycle detection algorithm would add overhead and complexity, and the inherent (4GB) limit means that this is something better left to an application like chkdsk/fsck.

FAT is still the most widely used, lowest-common-denominator, non-proprietary filesystem so it's not going away anytime soon.

Re: Recursive Filesystem Entries

#5

One may wonder why the filesystem driver doesn't have cycle detection, but the fact that filesystem structures are generally considered trusted data, a cycle detection algorithm would add overhead and complexity, and the inherent (4GB) limit means that this is something better left to an application like chkdsk/fsck. FAT is still the most widely used, lowest-common-denominator, non-proprietary filesystem so it's not…

It's proprietary in some way: it's patent encumbeted (lookup Microsoft vs TomTom and Microsoft vs Motorola).