All of lore.kernel.org
 help / color / mirror / Atom feed
* Troublesome failure mode and recovery
@ 2013-07-13 16:14 Jérôme Carretero
  2013-07-14  9:54 ` Duncan
  2013-07-15 11:58 ` Jérôme Carretero
  0 siblings, 2 replies; 3+ messages in thread
From: Jérôme Carretero @ 2013-07-13 16:14 UTC (permalink / raw)
  To: linux-btrfs, Josef Bacik

Hi there,

Experiencing an broken FS in a state I haven't seen before.

I was running linux-3.10 on my laptop, which I had tried to put to sleep
with an external btrfs partition attached.
On resume, the external partition was lost.
I was able to unmount it, despite many kernel warnings.
Then I remounted it... and unplugged the USB cable.
Then I couldn't unmount it.
Well, too bad, not a big deal.
I ran alt+sysrq+s, waited a little, ran alt+sysrq+b.
And on reboot, my root partition (also btrfs) was unmountable, with the error:

  [    1.150000] btrfs bad tree block start 0 1531035648
  [    1.150000] btrfs: failed to read log tree
  [    1.150000] btrfs: open_ctree failed

Then I did the following:

- Tested various mount flags (some by memory, some by looking at the
  `fs/btrfs/super.c` code (recovery,clear_cache...)

- Took the drive (Lenovo-branded Micron RealSSD 400) to another computer
  and made an image of this partition, because this issue could be of use,
  and I have some recent documents that I'd like to recover in some way.

- Run various btrfs-progs utilities on the partition

- Edit the kernel btrfs code and attempt to mount the partition from a
  user-mode linux kernel.

The results are the following:

- `btrfs-restore` only works with `-u 1`, so the first superblock data has
  an issue
- `btrfsck` was crashing because the code would progress even if fs_root
  was null... fixed with this patch:

diff --git a/cmds-check.c b/cmds-check.c
index 8015288..be3e329 100644
--- a/cmds-check.c
+++ b/cmds-check.c
@@ -5777,6 +5777,11 @@ int cmd_check(int argc, char **argv)
 
	root = info->fs_root;
 
+	if (root == NULL) {
+		fprintf(stderr, "Error finding FS root\n");
+		return -EIO;
+	}
+
	if (init_extent_tree) {
		printf("Creating a new extent tree\n");
		ret = reinit_extent_tree(info);

- The linux kernel code patched with the following ugly hack would (somehow)
  boot:

diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index b8b60b6..0807f4d 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -2627,6 +2627,14 @@ retry_root_backup:
 	tree_root->node = read_tree_block(tree_root,
 					  btrfs_super_root(disk_super),
 					  blocksize, generation);
+
+	if (1) { // ugly hack to force using the second superblock
+		static int i = 0;
+		if (i++ == 0) {
+			goto recovery_tree_root;
+		}
+	}
+
 	if (!tree_root->node ||
 	    !test_bit(EXTENT_BUFFER_UPTODATE, &tree_root->node->bflags)) {
 		printk(KERN_WARNING "btrfs: failed to read tree root on %s\n",

  But /sbin/init, /bin/bash wouldn't fire up because of btrfs errors.
  Looks like some inodes are broken.
  Somehow /usr/bin/python could start, which made me happy.

Within the UML instance with python, I cannot do `ls` (`os.listdir()`)
on my home folder (`/home/cJ`), and btrfs-restore only restores
a few dot files in there.
But I can get inode numbers and read files or subdirectories beyond
this folder. And it looks like btrfs-debug-tree can find transactions
containing older updated directory inodes.
I can also do stat() calls on files, and to call `/sbin/btrfs`
(using `subprocess.Popen` not `os.system()`).
If this were a FAT partition, I would be able to recover data in subfolders
even if the parent folder inode is broken.
I assume the same thing is possible with btrfs, and even more,
given that there are probably older copies of the `/home/cJ` directory
entries from older transactions hanging around somewhere.
But I am no btrfs specialist, so I can't get this data.

Ideally I would like to be able to mount an older generation, or
re-patch older directory inodes where the newer directories cannot be
read.
Having btrfs-restore able to restore sub-directories of a certain generation
would also be very helpful.

So I have my disk image, linux and btrfs-progs from git, a bootable UML,
and can allocate some time to this issue.

Your help is welcome.

Thanks,

-- 
cJ

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Troublesome failure mode and recovery
  2013-07-13 16:14 Troublesome failure mode and recovery Jérôme Carretero
@ 2013-07-14  9:54 ` Duncan
  2013-07-15 11:58 ` Jérôme Carretero
  1 sibling, 0 replies; 3+ messages in thread
From: Duncan @ 2013-07-14  9:54 UTC (permalink / raw)
  To: linux-btrfs

Jérôme Carretero posted on Sat, 13 Jul 2013 12:14:04 -0400 as excerpted:

> - `btrfsck` was crashing because the code would progress even if fs_root
>   was null... fixed with this patch:

AFAIK (based on what I've seen go by on the list, tho I'm not technical 
enough to actually make sense of the patches themselves) there's a still 
new patch floating around that deals with that one already.  It's too new 
to be in 3.10.0 (tho it might possibly make a 3.10 stable if it hits 
3.11), but will hopefully be in 3.11.

The rest I'll leave to the experts.

-- 
Duncan - List replies preferred.   No HTML msgs.
"Every nonfree program has a lord, a master --
and if you use the program, he is your master."  Richard Stallman


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Troublesome failure mode and recovery
  2013-07-13 16:14 Troublesome failure mode and recovery Jérôme Carretero
  2013-07-14  9:54 ` Duncan
@ 2013-07-15 11:58 ` Jérôme Carretero
  1 sibling, 0 replies; 3+ messages in thread
From: Jérôme Carretero @ 2013-07-15 11:58 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Josef Bacik

On Sat, 13 Jul 2013 12:14:04 -0400
Jérôme Carretero <cJ-ko@zougloub.eu> wrote:

> Within the UML instance with python, I cannot do `ls` (`os.listdir()`)
> on my home folder (`/home/cJ`), and btrfs-restore only restores
> a few dot files in there.
> But I can get inode numbers and read files or subdirectories beyond
> this folder.

I was able to recover the "critical" data this way (mounted a second image
and ran python,busybox and rsync to salvage the data at known locations under
the problematic directory).

Right now, I think that 2-3 sections of medatata had been overridden by data
very recently. These sections are very small, so I don't think it was a discard
issue. And I think this must have been provoked somehow by older crashes a few
weeks ago.

My disk image is still there in case someone wants to play with it.

Regards,

-- 
Jérôme

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-07-15 11:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-13 16:14 Troublesome failure mode and recovery Jérôme Carretero
2013-07-14  9:54 ` Duncan
2013-07-15 11:58 ` Jérôme Carretero

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.