]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs_repair: don't clear . or .. in process_dir2_data
authorEric Sandeen <sandeen@sandeen.net>
Tue, 7 Apr 2015 00:04:11 +0000 (10:04 +1000)
committerDave Chinner <david@fromorbit.com>
Tue, 7 Apr 2015 00:04:11 +0000 (10:04 +1000)
process_dir2_data() has special . and .. processing; it is able
to correct these inodes, so there is no reason to clear them.

Do this before we adjust a length 0 filename to length 1, so
that we don't take this action on an accidentally created "."
name from a hidden dotfile.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
repair/dir2.c

index 9e6c67d1fdf881101b2529553252a7b5c80f81f3..c6d618dcd51827062f8a3de799ebe062989fefa2 100644 (file)
@@ -1318,6 +1318,18 @@ _("entry \"%*.*s\" at block %d offset %" PRIdPTR " in directory inode %" PRIu64
                                dep->namelen, dep->namelen, dep->name,
                                da_bno, (intptr_t)ptr - (intptr_t)d, ino,
                                clearreason, ent_ino);
+
+               /*
+                * We have a special dot & dotdot fixer-upper below which can
+                * sort out the proper inode number, so don't clear it.
+                */
+               if ((dep->namelen == 1 && dep->name[0] == '.') ||
+                   (dep->namelen == 2 &&
+                    dep->name[0] == '.' && dep->name[1] == '.')) {
+                       clearino = 0;
+                       clearreason = NULL;
+               }
+
                /*
                 * If the name length is 0 (illegal) make it 1 and blast
                 * the entry.