]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blobdiff - db/agf.c
libxfs: sanitize agcount on load
[thirdparty/xfsprogs-dev.git] / db / agf.c
index a9a5c44251c2b19faf8c24c4246327f25f125b50..3d1b472c876717c32a904bfa3b402d351896ffe8 100644 (file)
--- a/db/agf.c
+++ b/db/agf.c
@@ -1,39 +1,23 @@
 /*
- * Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
- * 
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of version 2 of the GNU General Public License as
+ * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
+ * All Rights Reserved.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
  * published by the Free Software Foundation.
- * 
- * This program is distributed in the hope that it would be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * 
- * Further, this software is distributed without any warranty that it is
- * free of the rightful claim of any third person regarding infringement
- * or the like.  Any license provided herein, whether implied or
- * otherwise, applies only to this software file.  Patent licenses, if
- * any, provided herein do not apply to combinations of this program with
- * other software, or any other product whatsoever.
- * 
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write the Free Software Foundation, Inc., 59
- * Temple Place - Suite 330, Boston MA 02111-1307, USA.
- * 
- * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
- * Mountain View, CA  94043, or:
- * 
- * http://www.sgi.com 
- * 
- * For further information regarding this notice, see: 
- * 
- * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
+ *
+ * This program is distributed in the hope that it would be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write the Free Software Foundation,
+ * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <libxfs.h>
-#include "agf.h"
+#include "libxfs.h"
 #include "command.h"
-#include "data.h"
 #include "type.h"
 #include "faddr.h"
 #include "fprint.h"
 #include "io.h"
 #include "bit.h"
 #include "output.h"
-#include "mount.h"
+#include "init.h"
+#include "agf.h"
 
 static int agf_f(int argc, char **argv);
 static void agf_help(void);
 
 static const cmdinfo_t agf_cmd =
-       { "agf", NULL, agf_f, 0, 1, 1, "[agno]",
-         "set address to agf header", agf_help };
+       { "agf", NULL, agf_f, 0, 1, 1, N_("[agno]"),
+         N_("set address to agf header"), agf_help };
 
 const field_t  agf_hfld[] = {
        { "", FLDT_AGF, OI(0), C1, 0, TYP_NONE },
@@ -70,6 +55,12 @@ const field_t        agf_flds[] = {
        { "cntroot", FLDT_AGBLOCK,
          OI(OFF(roots) + XFS_BTNUM_CNT * SZ(roots[XFS_BTNUM_CNT])), C1, 0,
          TYP_CNTBT },
+       { "rmaproot", FLDT_AGBLOCKNZ,
+         OI(OFF(roots) + XFS_BTNUM_RMAP * SZ(roots[XFS_BTNUM_RMAP])), C1, 0,
+         TYP_RMAPBT },
+       { "refcntroot", FLDT_AGBLOCKNZ,
+         OI(OFF(refcount_root)), C1, 0,
+         TYP_REFCBT },
        { "levels", FLDT_UINT32D, OI(OFF(levels)), CI(XFS_BTNUM_AGF),
          FLD_ARRAY|FLD_SKIPALL, TYP_NONE },
        { "bnolevel", FLDT_UINT32D,
@@ -78,18 +69,34 @@ const field_t       agf_flds[] = {
        { "cntlevel", FLDT_UINT32D,
          OI(OFF(levels) + XFS_BTNUM_CNT * SZ(levels[XFS_BTNUM_CNT])), C1, 0,
          TYP_NONE },
+       { "rmaplevel", FLDT_UINT32D,
+         OI(OFF(levels) + XFS_BTNUM_RMAP * SZ(levels[XFS_BTNUM_RMAP])), C1, 0,
+         TYP_NONE },
+       { "refcntlevel", FLDT_UINT32D,
+         OI(OFF(refcount_level)), C1, 0,
+         TYP_NONE },
+       { "rmapblocks", FLDT_UINT32D,
+         OI(OFF(rmap_blocks)), C1, 0,
+         TYP_NONE },
+       { "refcntblocks", FLDT_UINT32D,
+         OI(OFF(refcount_blocks)), C1, 0,
+         TYP_NONE },
        { "flfirst", FLDT_UINT32D, OI(OFF(flfirst)), C1, 0, TYP_NONE },
        { "fllast", FLDT_UINT32D, OI(OFF(fllast)), C1, 0, TYP_NONE },
        { "flcount", FLDT_UINT32D, OI(OFF(flcount)), C1, 0, TYP_NONE },
        { "freeblks", FLDT_EXTLEN, OI(OFF(freeblks)), C1, 0, TYP_NONE },
        { "longest", FLDT_EXTLEN, OI(OFF(longest)), C1, 0, TYP_NONE },
+       { "btreeblks", FLDT_UINT32D, OI(OFF(btreeblks)), C1, 0, TYP_NONE },
+       { "uuid", FLDT_UUID, OI(OFF(uuid)), C1, 0, TYP_NONE },
+       { "lsn", FLDT_UINT64X, OI(OFF(lsn)), C1, 0, TYP_NONE },
+       { "crc", FLDT_CRC, OI(OFF(crc)), C1, 0, TYP_NONE },
        { NULL }
 };
 
 static void
 agf_help(void)
 {
-       dbprintf(
+       dbprintf(_(
 "\n"
 " set allocation group free block list\n"
 "\n"
@@ -97,11 +104,11 @@ agf_help(void)
 "\n"
 " agf 2 - move location to AGF in 2nd filesystem allocation group\n"
 "\n"
-" Located in the 2nd 512 byte block of each allocation group,\n"
-" the AGF contains the root of two different freespace btrees:\n"
+" Located in the second sector of each allocation group, the AGF\n"
+" contains the root of two different freespace btrees:\n"
 " The 'cnt' btree keeps track freespace indexed on section size.\n"
 " The 'bno' btree tracks sections of freespace indexed on block number.\n"
-);
+));
 }
 
 static int
@@ -115,15 +122,16 @@ agf_f(
        if (argc > 1) {
                agno = (xfs_agnumber_t)strtoul(argv[1], &p, 0);
                if (*p != '\0' || agno >= mp->m_sb.sb_agcount) {
-                       dbprintf("bad allocation group number %s\n", argv[1]);
+                       dbprintf(_("bad allocation group number %s\n"), argv[1]);
                        return 0;
                }
                cur_agno = agno;
        } else if (cur_agno == NULLAGNUMBER)
                cur_agno = 0;
        ASSERT(typtab[TYP_AGF].typnm == TYP_AGF);
-       set_cur(&typtab[TYP_AGF], XFS_AG_DADDR(mp, cur_agno, XFS_AGF_DADDR), 1,
-               DB_RING_ADD, NULL);
+       set_cur(&typtab[TYP_AGF],
+               XFS_AG_DADDR(mp, cur_agno, XFS_AGF_DADDR(mp)),
+               XFS_FSS_TO_BB(mp, 1), DB_RING_ADD, NULL);
        return 0;
 }