]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
mkfs.xfs: fix ASSERT on too-small device with stripe geometry
authorPavel Reichl <preichl@redhat.com>
Mon, 28 Sep 2020 21:31:18 +0000 (17:31 -0400)
committerEric Sandeen <sandeen@sandeen.net>
Mon, 28 Sep 2020 21:31:18 +0000 (17:31 -0400)
When a too-small device is created with stripe geometry, we hit an
assert in align_ag_geometry():

mkfs.xfs: xfs_mkfs.c:2834: align_ag_geometry: Assertion `cfg->agcount != 0' failed.

This is because align_ag_geometry() finds that the size of the last
(only) AG is too small, and attempts to trim it off.  Obviously 0
AGs is invalid, and we hit the ASSERT.

Reported-by: Zdenek Kabelac <zkabelac@redhat.com>
Suggested-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Pavel Reichl <preichl@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
include/xfs_multidisk.h
mkfs/xfs_mkfs.c

index 1b9936ec768c663f1599aa55fb905d70ff59bf95..abfb50ce2c8615c1d28df2c499ee37e3da89cf34 100644 (file)
@@ -14,7 +14,6 @@
 #define        XFS_DFL_BLOCKSIZE_LOG   12              /* 4096 byte blocks */
 #define        XFS_DINODE_DFL_LOG      8               /* 256 byte inodes */
 #define        XFS_DINODE_DFL_CRC_LOG  9               /* 512 byte inodes for CRCs */
-#define        XFS_MIN_DATA_BLOCKS     100
 #define        XFS_MIN_INODE_PERBLOCK  2               /* min inodes per block */
 #define        XFS_DFL_IMAXIMUM_PCT    25              /* max % of space for inodes */
 #define        XFS_MIN_REC_DIRSIZE     12              /* 4096 byte dirblocks (V2) */
                                                 * accept w/o warnings
                                                 */
 
-#define XFS_AG_BYTES(bblog)    ((long long)BBSIZE << (bblog))
-#define        XFS_AG_MIN_BYTES        ((XFS_AG_BYTES(15)))    /* 16 MB */
-#define        XFS_AG_MAX_BYTES        ((XFS_AG_BYTES(31)))    /* 1 TB */
-#define XFS_AG_MIN_BLOCKS(blog)        (XFS_AG_MIN_BYTES >> (blog))
-#define XFS_AG_MAX_BLOCKS(blog)        ((XFS_AG_MAX_BYTES - 1) >> (blog))
+#define XFS_AG_BYTES(bblog)            ((long long)BBSIZE << (bblog))
+#define        XFS_MIN_DATA_BLOCKS(cfg)        (XFS_AG_MIN_BLOCKS((cfg)->blocklog))
+#define        XFS_AG_MIN_BYTES                ((XFS_AG_BYTES(15)))    /* 16 MB */
+#define        XFS_AG_MAX_BYTES                ((XFS_AG_BYTES(31)))    /* 1 TB */
+#define XFS_AG_MIN_BLOCKS(blog)                (XFS_AG_MIN_BYTES >> (blog))
+#define XFS_AG_MAX_BLOCKS(blog)                ((XFS_AG_MAX_BYTES - 1) >> (blog))
 
-#define XFS_MAX_AGNUMBER       ((xfs_agnumber_t)(NULLAGNUMBER - 1))
+#define XFS_MAX_AGNUMBER               ((xfs_agnumber_t)(NULLAGNUMBER - 1))
 
 /*
  * These values define what we consider a "multi-disk" filesystem. That is, a
index a687f385a9c1527fda64a3c901e017e342a20993..204dfff184546d32cdd756793c39fdba55538f15 100644 (file)
@@ -2530,10 +2530,10 @@ _("size %s specified for data subvolume is too large, maximum is %lld blocks\n")
                cfg->dblocks = DTOBT(xi->dsize, cfg->blocklog);
        }
 
-       if (cfg->dblocks < XFS_MIN_DATA_BLOCKS) {
+       if (cfg->dblocks < XFS_MIN_DATA_BLOCKS(cfg)) {
                fprintf(stderr,
-_("size %lld of data subvolume is too small, minimum %d blocks\n"),
-                       (long long)cfg->dblocks, XFS_MIN_DATA_BLOCKS);
+_("size %lld of data subvolume is too small, minimum %lld blocks\n"),
+                       (long long)cfg->dblocks, XFS_MIN_DATA_BLOCKS(cfg));
                usage();
        }