Revision 4d6c13f87db12ae1ce35ea6a15688ac72419b133 authored by Bryan Donlan on 30 June 2009, 18:41:24 UTC, committed by Linus Torvalds on 01 July 2009, 01:56:00 UTC
ext2_iget() returns -ESTALE if invoked on a deleted inode, in order to
report errors to NFS properly.  However, in ext[234]_lookup(), this
-ESTALE can be propagated to userspace if the filesystem is corrupted such
that a directory entry references a deleted inode.  This leads to a
misleading error message - "Stale NFS file handle" - and confusion on the
part of the admin.

The bug can be easily reproduced by creating a new filesystem, making a
link to an unused inode using debugfs, then mounting and attempting to ls
-l said link.

This patch thus changes ext2_lookup to return -EIO if it receives -ESTALE
from ext2_iget(), as ext2 does for other filesystem metadata corruption;
and also invokes the appropriate ext*_error functions when this case is
detected.

Signed-off-by: Bryan Donlan <bdonlan@gmail.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 341c87b
History
File Mode Size
Kconfig -rw-r--r-- 471 bytes
Makefile -rw-r--r-- 218 bytes
crypto.c -rw-r--r-- 66.6 KB
debug.c -rw-r--r-- 3.8 KB
dentry.c -rw-r--r-- 2.9 KB
ecryptfs_kernel.h -rw-r--r-- 27.3 KB
file.c -rw-r--r-- 10.1 KB
inode.c -rw-r--r-- 32.5 KB
keystore.c -rw-r--r-- 75.8 KB
kthread.c -rw-r--r-- 5.8 KB
main.c -rw-r--r-- 25.8 KB
messaging.c -rw-r--r-- 17.3 KB
miscdev.c -rw-r--r-- 15.7 KB
mmap.c -rw-r--r-- 16.1 KB
read_write.c -rw-r--r-- 11.7 KB
super.c -rw-r--r-- 6.5 KB

back to top