]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs_repair: Document & robustify blkmap_next_off()
authorEric Sandeen <sandeen@redhat.com>
Tue, 5 Jun 2012 18:25:45 +0000 (13:25 -0500)
committerEric Sandeen <sandeen@sandeen.net>
Tue, 5 Jun 2012 18:25:45 +0000 (13:25 -0500)
blkmap_next_off() was cryptic (to me), so document what it does.
Also catch cases when the passed in extent index 't' is beyond
the number of extents in the blkmap, so that:

        ext = blkmap->exts + *t;

doesn't walk off the end of the array into garbage.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Ben Myers <bpm@sgi.com>
repair/bmap.c

index c43ca7f70d08d5a27bf16db28b83501fac43abbe..85d66dc8ef7f4100b98389139b9b9822b1538b84 100644 (file)
@@ -206,8 +206,25 @@ blkmap_last_off(
        return ext->startoff + ext->blockcount;
 }
 
-/*
- * Return the next offset in a block map.
+/**
+ * blkmap_next_off - Return next logical block offset in a block map.
+ * @blkmap:    blockmap to use
+ * @o:         current file logical block number
+ * @t:         current extent index into blockmap (in/out)
+ *
+ * Given a logical block offset in a file, return the next mapped logical offset
+ * The map index "t" tracks the current extent number in the block map, and
+ * is updated automatically if the returned offset resides within the next
+ * mapped extent.
+ *
+ * If the blockmap contains no extents, or no more logical offsets are mapped,
+ * or the extent index exceeds the number of extents in the map,
+ * return NULLDFILOFF.
+ *
+ * If offset o is beyond extent index t, the first offset in the next extent
+ * after extent t will be returned.
+ *
+ * Intended to be called starting with offset 0, index 0, and iterated.
  */
 xfs_dfiloff_t
 blkmap_next_off(
@@ -223,10 +240,12 @@ blkmap_next_off(
                *t = 0;
                return blkmap->exts[0].startoff;
        }
+       if (*t >= blkmap->nexts)
+               return NULLDFILOFF;
        ext = blkmap->exts + *t;
        if (o < ext->startoff + ext->blockcount - 1)
                return o + 1;
-       if (*t >= blkmap->nexts - 1)
+       if (*t == blkmap->nexts - 1)
                return NULLDFILOFF;
        (*t)++;
        return ext[1].startoff;