SU+J Lost files after a power failure

Charles Swiger cswiger at mac.com
Mon Oct 14 21:04:55 UTC 2013


Hi--

On Oct 14, 2013, at 11:51 AM, Daniel Feenberg <feenberg at nber.org> wrote:
> This discussion skirts the critical issue - are files that are not open for writing endangered? No description of the uses of journaling can be considered informative if it doesn't address that explicitly. As a naive user I have always assumed that once closed, a file was invulnerable to improper shutdowns, but this discussion shakes that belief.

Well, it's good to be a little paranoid if the data matters.  :-)

First, unless you call fsync() before close() and your OS and/or drive hardware isn't being deceptive when fsync() returns about whether the bits have made it to permanent storage, then you might be surprised at just how long the unwritten buffers containing the last updates to the file data take to get properly flushed to disk.

> I expect the answer may be different for SSD and spinning disks.

Second, this is an excellent point: however, it also applies to anything where the actual hardware block size does not match the device blocksize that the filesystem thinks it has-- so new "4K sector" rotational disks also have some risk.

The basic issue with SSDs is that you (or the drive firmware, more precisely) need to read in an entire hardware sector, update the portion with changes in cache memory, do a bulk-erase of that block, and then scribble that back out.  Good drive firmware actually writes out to a different block than the original for wear-leveling purposes and only updates the flash translation layer once the new version of that block is written.  That makes the drive mostly immune to major data integrity issues even if powered off in the middle of the process.

Less-than-good firmware, aka buggy firmware, can lead from power-failure to data loss of files which were not being modified at the time.  And may you possess recent working backups if the FTL somehow ever gets confused!

Regards,
-- 
-Chuck



More information about the freebsd-questions mailing list