* R: Re: [RESPOST][BTRFS-PROGS][PATCH] btrfs_read_dev_super(): uninitialized variable
@ 2012-10-05 6:59 kreijack
0 siblings, 0 replies; only message in thread
From: kreijack @ 2012-10-05 6:59 UTC (permalink / raw)
To: chris.mason; +Cc: linux-btrfs
>----Messaggio originale----
>Da: chris.mason@fusionio.com
>Data: 05/10/2012 2.30
>A: "kreijack@inwind.it"<kreijack@inwind.it>
>Cc: "Chris Mason"<clmason@fusionio.com>
>Ogg: Re: [RESPOST][BTRFS-PROGS][PATCH] btrfs_read_dev_super(): uninitialized
variable
>
>On Tue, Sep 11, 2012 at 11:55:49AM -0600, Goffredo Baroncelli wrote:
>> This is a repost because I rebased the change. The first attempt was
>> done with the email "[BTRFS-PROGS][BUG][PATCH] Incorrect detection of a
>> removed device [was Re: “Bug”-report: inconsistency kernel <-> tools]"
>> dated 08/31/2012.
>>
>> In the function btrfs_read_dev_super() it is possible to use the
>> variable fsid without initialisation.
>>
>> In btrfs_read_dev_super(), during the scan of the superblock the
>> variable fsid is initialised with the value of fsid of the first
>> superblock. But if the first superblock contains an incorrect signature
>> this initialisation is skipped.
[...]
+ } else if (memcmp(fsid, buf.fsid, sizeof(fsid))) {
+ /*
+ * the superblocks (the original one and
+ * its backups) contain data of different
+ * filesystems -> the super cannot be trusted
+ */
+ return -1;
+ }
[...]
>This does make sense, but it ends up causing problems. It is possible
>that you do something like this:
>
>mkfs.btrfs /dev/sda
>do a test
>mkfs.btrfs -b some_really_small_size /dev/sda
>do a test
>
>xfstests does this to test enospc. The very small device doesn't have
>as many supers as the large device, and the end result is your check for
>the fsids on the supers makes mkfs fail.
>
>I've replaced the return -1 with a continue for now, but I'm open to
>other suggestions.
I had to give a look to the commitdiff to understand what you meant :-)
Because the superblock are protected by a checksum, we can detect a currupted
block;
so the first valid fsid are more trusted than the following ones. If the other
superblocks have
a different fsid, skipping them should be the right thing to do.
>
>-chris
>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-10-05 6:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-05 6:59 R: Re: [RESPOST][BTRFS-PROGS][PATCH] btrfs_read_dev_super(): uninitialized variable kreijack
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).