From: Christoph Hellwig <hch@lst.de>
To: Andrey Albershteyn <aalbersh@kernel.org>
Cc: "Darrick J . Wong" <djwong@kernel.org>,
Carlos Maiolino <cmaiolino@redhat.com>,
linux-xfs@vger.kernel.org
Subject: [PATCH 2/4] repair: add canonical names for the XR_INO_ constants
Date: Wed, 10 Dec 2025 06:54:39 +0100 [thread overview]
Message-ID: <20251210055455.3479288-3-hch@lst.de> (raw)
In-Reply-To: <20251210055455.3479288-1-hch@lst.de>
Add an array with the canonical name for each inode type so that code
doesn't have to implement switch statements for that, and remove the now
trivial process_misc_ino_types and process_misc_ino_types_blocks
functions.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
---
repair/dinode.c | 159 +++++++++++++++---------------------------------
1 file changed, 50 insertions(+), 109 deletions(-)
diff --git a/repair/dinode.c b/repair/dinode.c
index b824dfc0a59f..7f987c38d2e4 100644
--- a/repair/dinode.c
+++ b/repair/dinode.c
@@ -41,8 +41,29 @@ enum xr_ino_type {
XR_INO_PQUOTA, /* project quota inode */
XR_INO_RTRMAP, /* realtime rmap */
XR_INO_RTREFC, /* realtime refcount */
+ XR_INO_MAX
};
+static const char *xr_ino_type_name[] = {
+ [XR_INO_UNKNOWN] = N_("unknown"),
+ [XR_INO_DIR] = N_("directory"),
+ [XR_INO_RTDATA] = N_("realtime file"),
+ [XR_INO_RTBITMAP] = N_("realtime bitmap"),
+ [XR_INO_RTSUM] = N_("realtime summary"),
+ [XR_INO_DATA] = N_("regular file"),
+ [XR_INO_SYMLINK] = N_("symlink"),
+ [XR_INO_CHRDEV] = N_("character device"),
+ [XR_INO_BLKDEV] = N_("block device"),
+ [XR_INO_SOCK] = N_("socket"),
+ [XR_INO_FIFO] = N_("fifo"),
+ [XR_INO_UQUOTA] = N_("user quota"),
+ [XR_INO_GQUOTA] = N_("group quota"),
+ [XR_INO_PQUOTA] = N_("project quota"),
+ [XR_INO_RTRMAP] = N_("realtime rmap"),
+ [XR_INO_RTREFC] = N_("realtime refcount"),
+};
+static_assert(ARRAY_SIZE(xr_ino_type_name) == XR_INO_MAX);
+
/*
* gettext lookups for translations of strings use mutexes internally to
* the library. Hence when we come through here doing parallel scans in
@@ -1946,106 +1967,6 @@ _("found illegal null character in symlink inode %" PRIu64 "\n"),
return(0);
}
-/*
- * called to process the set of misc inode special inode types
- * that have no associated data storage (fifos, pipes, devices, etc.).
- */
-static int
-process_misc_ino_types(
- xfs_mount_t *mp,
- struct xfs_dinode *dino,
- xfs_ino_t lino,
- enum xr_ino_type type)
-{
- /*
- * must also have a zero size
- */
- if (be64_to_cpu(dino->di_size) != 0) {
- switch (type) {
- case XR_INO_CHRDEV:
- do_warn(
-_("size of character device inode %" PRIu64 " != 0 (%" PRId64 " bytes)\n"), lino,
- (int64_t)be64_to_cpu(dino->di_size));
- break;
- case XR_INO_BLKDEV:
- do_warn(
-_("size of block device inode %" PRIu64 " != 0 (%" PRId64 " bytes)\n"), lino,
- (int64_t)be64_to_cpu(dino->di_size));
- break;
- case XR_INO_SOCK:
- do_warn(
-_("size of socket inode %" PRIu64 " != 0 (%" PRId64 " bytes)\n"), lino,
- (int64_t)be64_to_cpu(dino->di_size));
- break;
- case XR_INO_FIFO:
- do_warn(
-_("size of fifo inode %" PRIu64 " != 0 (%" PRId64 " bytes)\n"), lino,
- (int64_t)be64_to_cpu(dino->di_size));
- break;
- case XR_INO_UQUOTA:
- case XR_INO_GQUOTA:
- case XR_INO_PQUOTA:
- do_warn(
-_("size of quota inode %" PRIu64 " != 0 (%" PRId64 " bytes)\n"), lino,
- (int64_t)be64_to_cpu(dino->di_size));
- break;
- default:
- do_warn(_("Internal error - process_misc_ino_types, "
- "illegal type %d\n"), type);
- abort();
- }
-
- return(1);
- }
-
- return(0);
-}
-
-static int
-process_misc_ino_types_blocks(
- xfs_rfsblock_t totblocks,
- xfs_ino_t lino,
- enum xr_ino_type type)
-{
- /*
- * you can not enforce all misc types have zero data fork blocks
- * by checking dino->di_nblocks because atotblocks (attribute
- * blocks) are part of nblocks. We must check this later when atotblocks
- * has been calculated or by doing a simple check that anExtents == 0.
- * We must also guarantee that totblocks is 0. Thus nblocks checking
- * will be done later in process_dinode_int for misc types.
- */
-
- if (totblocks != 0) {
- switch (type) {
- case XR_INO_CHRDEV:
- do_warn(
-_("size of character device inode %" PRIu64 " != 0 (%" PRIu64 " blocks)\n"),
- lino, totblocks);
- break;
- case XR_INO_BLKDEV:
- do_warn(
-_("size of block device inode %" PRIu64 " != 0 (%" PRIu64 " blocks)\n"),
- lino, totblocks);
- break;
- case XR_INO_SOCK:
- do_warn(
-_("size of socket inode %" PRIu64 " != 0 (%" PRIu64 " blocks)\n"),
- lino, totblocks);
- break;
- case XR_INO_FIFO:
- do_warn(
-_("size of fifo inode %" PRIu64 " != 0 (%" PRIu64 " blocks)\n"),
- lino, totblocks);
- break;
- default:
- return(0);
- }
- return(1);
- }
- return (0);
-}
-
static inline int
dinode_fmt(
struct xfs_dinode *dino)
@@ -2261,16 +2182,20 @@ _("directory inode %" PRIu64 " has bad size %" PRId64 "\n"),
case XR_INO_BLKDEV:
case XR_INO_SOCK:
case XR_INO_FIFO:
- if (process_misc_ino_types(mp, dino, lino, type))
- return 1;
- break;
-
case XR_INO_UQUOTA:
case XR_INO_GQUOTA:
case XR_INO_PQUOTA:
- /* Quota inodes have same restrictions as above types */
- if (process_misc_ino_types(mp, dino, lino, type))
+ /*
+ * Misc inode types that have no associated data storage (fifos,
+ * pipes, devices, etc.) and thus must also have a zero size.
+ */
+ if (dino->di_size != 0) {
+ do_warn(
+_("size of %s inode %" PRIu64 " != 0 (%" PRId64 " bytes)\n"),
+ _(xr_ino_type_name[type]), lino,
+ (int64_t)be64_to_cpu(dino->di_size));
return 1;
+ }
break;
case XR_INO_RTDATA:
@@ -3704,10 +3629,26 @@ _("bad (negative) size %" PRId64 " on inode %" PRIu64 "\n"),
dino = *dinop;
/*
- * enforce totblocks is 0 for misc types
+ * Enforce totblocks is 0 for misc types.
+ *
+ * Note that di_nblocks includes attribute fork blocks, so we can only
+ * do this here instead of when reading the inode.
*/
- if (process_misc_ino_types_blocks(totblocks, lino, type))
- goto clear_bad_out;
+ switch (type) {
+ case XR_INO_CHRDEV:
+ case XR_INO_BLKDEV:
+ case XR_INO_SOCK:
+ case XR_INO_FIFO:
+ if (totblocks != 0) {
+ do_warn(
+_("size of %s inode %" PRIu64 " != 0 (%" PRIu64 " blocks)\n"),
+ _(xr_ino_type_name[type]), lino, totblocks);
+ goto clear_bad_out;
+ }
+ break;
+ default:
+ break;
+ }
/*
* correct space counters if required
--
2.47.3
next prev parent reply other threads:[~2025-12-10 5:55 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-10 5:54 repair tidyups for metadir handling v3 Christoph Hellwig
2025-12-10 5:54 ` [PATCH 1/4] repair: add a enum for the XR_INO_* values Christoph Hellwig
2025-12-10 5:54 ` Christoph Hellwig [this message]
2025-12-10 5:54 ` [PATCH 3/4] repair: factor out a process_dinode_metafile helper Christoph Hellwig
2025-12-10 5:54 ` [PATCH 4/4] repair: enhance process_dinode_metafile Christoph Hellwig
-- strict thread matches above, loose matches on Subject: below --
2025-12-08 7:11 repair tidyups for metadir handling v2 Christoph Hellwig
2025-12-08 7:11 ` [PATCH 2/4] repair: add canonical names for the XR_INO_ constants Christoph Hellwig
2025-12-08 17:36 ` Darrick J. Wong
2025-12-09 6:57 ` Christoph Hellwig
2025-12-09 15:59 ` Darrick J. Wong
2025-12-09 16:20 ` Christoph Hellwig
2025-12-09 16:26 ` Darrick J. Wong
2025-11-28 6:36 repair tidyups for metadir handling Christoph Hellwig
2025-11-28 6:37 ` [PATCH 2/4] repair: add canonical names for the XR_INO_ constants Christoph Hellwig
2025-11-28 8:00 ` Carlos Maiolino
2025-12-01 6:23 ` Christoph Hellwig
2025-12-01 22:47 ` Darrick J. Wong
2025-12-02 7:33 ` Christoph Hellwig
2025-12-02 17:59 ` Darrick J. Wong
2025-12-03 6:09 ` Christoph Hellwig
2025-12-04 17:18 ` Darrick J. Wong
2025-12-05 8:13 ` Christoph Hellwig
2025-12-05 16:29 ` Darrick J. Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251210055455.3479288-3-hch@lst.de \
--to=hch@lst.de \
--cc=aalbersh@kernel.org \
--cc=cmaiolino@redhat.com \
--cc=djwong@kernel.org \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox