lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 01 Jul 2019 17:53:34 -0700
From:   James Bottomley <James.Bottomley@...senPartnership.com>
To:     Theodore Ts'o <tytso@....edu>
Cc:     linux-ext4@...r.kernel.org, linux-fsdevel@...r.kernel.org,
        Parisc List <linux-parisc@...r.kernel.org>
Subject: Re: [BUG] mke2fs produces corrupt filesystem if badblock list
 contains a block under 251

On Mon, 2019-07-01 at 20:23 -0400, Theodore Ts'o wrote:
> On Mon, Jul 01, 2019 at 03:44:30PM -0700, James Bottomley wrote:
> > Background: we actually use the badblocks feature of the ext
> > filesystem group to do a poorman's boot filesystem for parisc: Our
> > system chunks up the disk searching for an Initial Program Loader
> > (IPL) signature and then executes it, so we poke a hole in an ext3
> > filesystem at creation time and place the IPL into it.  Our IP can
> > read ext3 files and directories, so it allows us to load the kernel
> > directly from the file.
> > 
> > The problem is that our IPL needs to be aligned at 256k in absolute
> > terms on the disk, so, in the usual situation of having a 64k
> > partition label and the boot partition being the first one we
> > usually end up poking the badblock hole beginning at block 224
> > (using a 1k block size).
> > 
> > The problem is that this used to work long ago (where the value of
> > long seems to be some time before 2011) but no longer does.  The
> > problem can be illustrated simply by doing
> 
> It broke sometime around 2006.  E2fsprogs 1.39 is when we started
> creating file systems with the resize inode to support the online
> resize feature.
> 
> And the problem is with a 100M file system using 1k blocks, when you
> reserve blocks 237 -- 258, you're conflicting with the reserved
> blocks used for online resizing:
> 
> Group 0: (Blocks 1-8192)
>   Primary superblock at 1, Group descriptors at 2-2
>   Reserved GDT blocks at 3-258 <========= THIS
>   Block bitmap at 451 (+450)
>   Inode bitmap at 452 (+451)
>   Inode table at 453-699 (+452)
>   7456 free blocks, 1965 free inodes, 2 directories
>   Free blocks: 715-8192
>   Free inodes: 12-1976
> 
> It's a bug that mke2fs didn't notice this issue and give an error
> message ("HAHAHAHA... NO.").  And it's also a bug that e2fsck didn't
> correctly diagnose the nature of the corruption.  Both of these bugs
> are because how the reserved blocks for online resizing are handled
> is a bit of a special case.
> 
> In any case, the workaround is to do this:
> 
> # mke2fs -b 1024 -O ^resize_inode -l
> /home/jejb/bblist.txt  /dev/loop0
> 
> For bonus points, you could even add something like this to
> /etc/mke2fs.conf:
> 
> [fs_types]
>      parisc_boot = {
> 	features = ^resize_inode
> 	blocksize = 1024
> 	inode_size = 128
>     }
> 
> Then all you would need to do something like this:
> 
> # mke2fs -T parisc_boot -l bblist.txt /dev/sda1

Actually, we control the location of the IPL, so as long as mke2fs
errors out if we get it wrong I can add an offset so it begins at >
sector 258.  Palo actually executed mke2fs when you initialize the
partition so it can add any options it likes. I was also thinking I
should update palo to support ext4 as well.

> Also, I guess this answers the other question that had recently
> crossed my mind, which is I had been thinking of deprecating and
> eventually removing the badblock feature in e2fsprogs altogether,
> since no sane user of badblocks should exist in 2019.  I guess I
> stand corrected.  :-)

Well, we don't have to use badblocks to achieve this, but we would like
a way to make an inode cover the reserved physical area of the IPL. 
Effectively it's a single contiguous area on disk with specific
absolute alignment constraints.  It doesn't actually matter if it
appears in the directory tree.

> 					- Ted
> 
> P.S.  Does this mean parisc has been using an amazingly obsolete
> version of e2fsprogs, which is why no one had noticed?  Or was there
> a static image file of the 100M boot partition, which you hadn't
> regenerated until now.... ?

Yes, since we only do this at boot, and we can actually update the IPL
on the fly when we need to because the space reserved is the maximum,
it only gets invoked on a reinitialization, which I haven't done for a
very long time.  The only reason I did it this time is because I have a
spare disk in a pa8800 which I used as an install target.

James

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ