* [PATCH] xfs_repair: fix off by one error when rebuilding high keys
@ 2019-01-03 22:33 Darrick J. Wong
2019-01-04 3:04 ` Eric Sandeen
2019-01-04 3:49 ` Eric Sandeen
0 siblings, 2 replies; 3+ messages in thread
From: Darrick J. Wong @ 2019-01-03 22:33 UTC (permalink / raw)
To: Eric Sandeen; +Cc: xfs
From: Darrick J. Wong <darrick.wong@oracle.com>
Fix an off-by-one error when scanning a rmap btree block for high keys
as part of rebuilding rmap btrees during phase 5. This causes
xfs_repair to emit a corrupt filesystem, which is bad.
This can be reproduced pretty easily by exporting
TEST_XFS_REPAIR_REBUILD=1 and running generic/051 with a 1k block size.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
repair/phase5.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/repair/phase5.c b/repair/phase5.c
index 85d1f4fb..1bacfc7f 100644
--- a/repair/phase5.c
+++ b/repair/phase5.c
@@ -1500,7 +1500,7 @@ prop_rmap_highkey(
bt_key->rm_offset = cpu_to_be64(
libxfs_rmap_irec_offset_pack(&high_key));
- for (i = 1; i < numrecs - 1; i++) {
+ for (i = 1; i <= numrecs; i++) {
bt_key = XFS_RMAP_HIGH_KEY_ADDR(bt_hdr, i);
key.rm_startblock = be32_to_cpu(bt_key->rm_startblock);
key.rm_owner = be64_to_cpu(bt_key->rm_owner);
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] xfs_repair: fix off by one error when rebuilding high keys
2019-01-03 22:33 [PATCH] xfs_repair: fix off by one error when rebuilding high keys Darrick J. Wong
@ 2019-01-04 3:04 ` Eric Sandeen
2019-01-04 3:49 ` Eric Sandeen
1 sibling, 0 replies; 3+ messages in thread
From: Eric Sandeen @ 2019-01-04 3:04 UTC (permalink / raw)
To: Darrick J. Wong, Eric Sandeen; +Cc: xfs
On 1/3/19 4:33 PM, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
>
> Fix an off-by-one error when scanning a rmap btree block for high keys
> as part of rebuilding rmap btrees during phase 5. This causes
> xfs_repair to emit a corrupt filesystem, which is bad.
>
> This can be reproduced pretty easily by exporting
> TEST_XFS_REPAIR_REBUILD=1 and running generic/051 with a 1k block size.
>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
> repair/phase5.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/repair/phase5.c b/repair/phase5.c
> index 85d1f4fb..1bacfc7f 100644
> --- a/repair/phase5.c
> +++ b/repair/phase5.c
> @@ -1500,7 +1500,7 @@ prop_rmap_highkey(
> bt_key->rm_offset = cpu_to_be64(
> libxfs_rmap_irec_offset_pack(&high_key));
>
> - for (i = 1; i < numrecs - 1; i++) {
> + for (i = 1; i <= numrecs; i++) {
isn't that actually off by 2?
Why do all the XFS_RMAP_*() macros take a 1-based index and then subtract
1 to get back to 0-based? Seems like that's the kind of oddity that leads
to bugs like this, no? Maybe I'm not seeing the big picture.
-Eric
> bt_key = XFS_RMAP_HIGH_KEY_ADDR(bt_hdr, i);
> key.rm_startblock = be32_to_cpu(bt_key->rm_startblock);
> key.rm_owner = be64_to_cpu(bt_key->rm_owner);
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] xfs_repair: fix off by one error when rebuilding high keys
2019-01-03 22:33 [PATCH] xfs_repair: fix off by one error when rebuilding high keys Darrick J. Wong
2019-01-04 3:04 ` Eric Sandeen
@ 2019-01-04 3:49 ` Eric Sandeen
1 sibling, 0 replies; 3+ messages in thread
From: Eric Sandeen @ 2019-01-04 3:49 UTC (permalink / raw)
To: Darrick J. Wong; +Cc: xfs
On 1/3/19 4:33 PM, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
>
> Fix an off-by-one error when scanning a rmap btree block for high keys
> as part of rebuilding rmap btrees during phase 5. This causes
> xfs_repair to emit a corrupt filesystem, which is bad.
>
> This can be reproduced pretty easily by exporting
> TEST_XFS_REPAIR_REBUILD=1 and running generic/051 with a 1k block size.
>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
changing the weird 1-indexing does sound like a good idea tho.
> ---
> repair/phase5.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/repair/phase5.c b/repair/phase5.c
> index 85d1f4fb..1bacfc7f 100644
> --- a/repair/phase5.c
> +++ b/repair/phase5.c
> @@ -1500,7 +1500,7 @@ prop_rmap_highkey(
> bt_key->rm_offset = cpu_to_be64(
> libxfs_rmap_irec_offset_pack(&high_key));
>
> - for (i = 1; i < numrecs - 1; i++) {
> + for (i = 1; i <= numrecs; i++) {
> bt_key = XFS_RMAP_HIGH_KEY_ADDR(bt_hdr, i);
> key.rm_startblock = be32_to_cpu(bt_key->rm_startblock);
> key.rm_owner = be64_to_cpu(bt_key->rm_owner);
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-01-04 3:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-03 22:33 [PATCH] xfs_repair: fix off by one error when rebuilding high keys Darrick J. Wong
2019-01-04 3:04 ` Eric Sandeen
2019-01-04 3:49 ` Eric Sandeen
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).