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>] [day] [month] [year] [list]
Date:	Tue, 10 Jun 2008 14:08:13 +0000
From:	"Theodore Tso" <tytso@....edu>
To:	akpm@...ux-foundation.org
Cc:	cmm@...ibm.com, jbacik@...hat.com, adilger@....com,
	linux-ext4@...r.kernel.org
Subject: Re: [patch (for 2.6.26?) 1/1] ext4: fix online resize bug

It's harmless to push to -stable, but online resize for ext4 is so badly broken that this patch is the least of 2.26.26's problems, and in fact I wonder how Josef could have possibly tested it.

Still, the patch in question does fix a real bug.

-Ted

------Original Message------
From: akpm@...ux-foundation.org
To: tytso@....edu
Cc: cmm@...ibm.com
Cc: akpm@...ux-foundation.org
Cc: jbacik@...hat.com
Cc: adilger@....com
Cc: linux-ext4@...r.kernel.org
Sent: Jun 9, 2008 7:49 PM
Subject: [patch (for 2.6.26?) 1/1] ext4: fix online resize bug

From: Josef Bacik <jbacik@...hat.com>

There is a bug when we are trying to verify that the reserve inode's
double indirect blocks point back to the primary gdt blocks.  The fix is
obvious, we need to mod the gdb count by the addr's per block.  This was
verified using the same testcase as with the ext3 equivalent of this
patch.

Signed-off-by: Josef Bacik <jbacik@...hat.com>
Cc: <linux-ext4@...r.kernel.org>
Acked-by: Andreas Dilger <adilger@....com>
Cc: Mingming Cao <cmm@...ibm.com>
Acked-by: Theodore Ts'o <tytso@....edu>
Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
---

 fs/ext4/resize.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff -puN fs/ext4/resize.c~ext4-fix-online-resize-bug fs/ext4/resize.c
--- a/fs/ext4/resize.c~ext4-fix-online-resize-bug
+++ a/fs/ext4/resize.c
@@ -563,7 +563,8 @@ static int reserve_backup_gdb(handle_t *
 	}
 
 	blk = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + EXT4_SB(sb)->s_gdb_count;
-	data = (__le32 *)dind->b_data + EXT4_SB(sb)->s_gdb_count;
+	data = (__le32 *)dind->b_data + (EXT4_SB(sb)->s_gdb_count %
+					 EXT4_ADDR_PER_BLOCK(sb));
 	end = (__le32 *)dind->b_data + EXT4_ADDR_PER_BLOCK(sb);
 
 	/* Get each reserved primary GDT block and verify it holds backups */
_

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ