summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_error.h
diff options
context:
space:
mode:
authorBrian Foster2017-08-09 03:21:52 +0200
committerDarrick J. Wong2017-08-22 18:22:23 +0200
commit4a4f66eac4681378996a1837ad1ffec3a2e2981f (patch)
tree4344cac086b6251289244e724e6fcb488ff8b11b /fs/xfs/xfs_error.h
parentxfs: always verify the log tail during recovery (diff)
downloadkernel-qcow2-linux-4a4f66eac4681378996a1837ad1ffec3a2e2981f.tar.gz
kernel-qcow2-linux-4a4f66eac4681378996a1837ad1ffec3a2e2981f.tar.xz
kernel-qcow2-linux-4a4f66eac4681378996a1837ad1ffec3a2e2981f.zip
xfs: fix log recovery corruption error due to tail overwrite
If we consider the case where the tail (T) of the log is pinned long enough for the head (H) to push and block behind the tail, we can end up blocked in the following state without enough free space (f) in the log to satisfy a transaction reservation: 0 phys. log N [-------HffT---H'--T'---] The last good record in the log (before H) refers to T. The tail eventually pushes forward (T') leaving more free space in the log for writes to H. At this point, suppose space frees up in the log for the maximum of 8 in-core log buffers to start flushing out to the log. If this pushes the head from H to H', these next writes overwrite the previous tail T. This is safe because the items logged from T to T' have been written back and removed from the AIL. If the next log writes (H -> H') happen to fail and result in partial records in the log, the filesystem shuts down having overwritten T with invalid data. Log recovery correctly locates H on the subsequent mount, but H still refers to the now corrupted tail T. This results in log corruption errors and recovery failure. Since the tail overwrite results from otherwise correct runtime behavior, it is up to log recovery to try and deal with this situation. Update log recovery tail verification to run a CRC pass from the first record past the tail to the head. This facilitates error detection at T and moves the recovery tail to the first good record past H' (similar to truncating the head on torn write detection). If corruption is detected beyond the range possibly affected by the max number of iclogs, the log is legitimately corrupted and log recovery failure is expected. Signed-off-by: Brian Foster <bfoster@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_error.h')
0 files changed, 0 insertions, 0 deletions