1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2023 Oracle. All Rights Reserved.
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_trans_resv.h"
11 #include "xfs_mount.h"
12 #include "xfs_sysfs.h"
13 #include "xfs_btree.h"
14 #include "xfs_super.h"
15 #include "scrub/scrub.h"
16 #include "scrub/stats.h"
17 #include "scrub/trace.h"
19 struct xchk_scrub_stats {
20 /* all 32-bit counters here */
34 uint32_t repair_invocations;
35 uint32_t repair_success;
37 /* all 64-bit items here */
40 uint64_t checktime_us;
41 uint64_t repairtime_us;
43 /* non-counter state must go at the end for clearall */
48 struct dentry *cs_debugfs;
49 struct xchk_scrub_stats cs_stats[XFS_SCRUB_TYPE_NR];
53 static struct xchk_stats global_stats;
55 static const char *name_map[XFS_SCRUB_TYPE_NR] = {
56 [XFS_SCRUB_TYPE_SB] = "sb",
57 [XFS_SCRUB_TYPE_AGF] = "agf",
58 [XFS_SCRUB_TYPE_AGFL] = "agfl",
59 [XFS_SCRUB_TYPE_AGI] = "agi",
60 [XFS_SCRUB_TYPE_BNOBT] = "bnobt",
61 [XFS_SCRUB_TYPE_CNTBT] = "cntbt",
62 [XFS_SCRUB_TYPE_INOBT] = "inobt",
63 [XFS_SCRUB_TYPE_FINOBT] = "finobt",
64 [XFS_SCRUB_TYPE_RMAPBT] = "rmapbt",
65 [XFS_SCRUB_TYPE_REFCNTBT] = "refcountbt",
66 [XFS_SCRUB_TYPE_INODE] = "inode",
67 [XFS_SCRUB_TYPE_BMBTD] = "bmapbtd",
68 [XFS_SCRUB_TYPE_BMBTA] = "bmapbta",
69 [XFS_SCRUB_TYPE_BMBTC] = "bmapbtc",
70 [XFS_SCRUB_TYPE_DIR] = "directory",
71 [XFS_SCRUB_TYPE_XATTR] = "xattr",
72 [XFS_SCRUB_TYPE_SYMLINK] = "symlink",
73 [XFS_SCRUB_TYPE_PARENT] = "parent",
74 [XFS_SCRUB_TYPE_RTBITMAP] = "rtbitmap",
75 [XFS_SCRUB_TYPE_RTSUM] = "rtsummary",
76 [XFS_SCRUB_TYPE_UQUOTA] = "usrquota",
77 [XFS_SCRUB_TYPE_GQUOTA] = "grpquota",
78 [XFS_SCRUB_TYPE_PQUOTA] = "prjquota",
79 [XFS_SCRUB_TYPE_FSCOUNTERS] = "fscounters",
80 [XFS_SCRUB_TYPE_QUOTACHECK] = "quotacheck",
81 [XFS_SCRUB_TYPE_NLINKS] = "nlinks",
82 [XFS_SCRUB_TYPE_DIRTREE] = "dirtree",
85 /* Format the scrub stats into a text buffer, similar to pcp style. */
88 struct xchk_stats *cs,
92 struct xchk_scrub_stats *css = &cs->cs_stats[0];
97 for (i = 0; i < XFS_SCRUB_TYPE_NR; i++, css++) {
101 ret = scnprintf(buf, remaining,
102 "%s %u %u %u %u %u %u %u %u %u %llu %u %u %llu\n",
104 (unsigned int)css->invocations,
105 (unsigned int)css->clean,
106 (unsigned int)css->corrupt,
107 (unsigned int)css->preen,
108 (unsigned int)css->xfail,
109 (unsigned int)css->xcorrupt,
110 (unsigned int)css->incomplete,
111 (unsigned int)css->warning,
112 (unsigned int)css->retries,
113 (unsigned long long)css->checktime_us,
114 (unsigned int)css->repair_invocations,
115 (unsigned int)css->repair_success,
116 (unsigned long long)css->repairtime_us);
125 return copied > 0 ? copied : ret;
128 /* Estimate the worst case buffer size required to hold the whole report. */
130 xchk_stats_estimate_bufsize(
131 struct xchk_stats *cs)
133 struct xchk_scrub_stats *css = &cs->cs_stats[0];
138 /* 4294967296 plus one space for each u32 field */
139 field_width = 11 * (offsetof(struct xchk_scrub_stats, checktime_us) /
142 /* 18446744073709551615 plus one space for each u64 field */
143 field_width += 21 * ((offsetof(struct xchk_scrub_stats, css_lock) -
144 offsetof(struct xchk_scrub_stats, checktime_us)) /
147 for (i = 0; i < XFS_SCRUB_TYPE_NR; i++, css++) {
151 /* name plus one space */
152 ret += 1 + strlen(name_map[i]);
154 /* all fields, plus newline */
155 ret += field_width + 1;
161 /* Clear all counters. */
164 struct xchk_stats *cs)
166 struct xchk_scrub_stats *css = &cs->cs_stats[0];
169 for (i = 0; i < XFS_SCRUB_TYPE_NR; i++, css++) {
170 spin_lock(&css->css_lock);
171 memset(css, 0, offsetof(struct xchk_scrub_stats, css_lock));
172 spin_unlock(&css->css_lock);
176 #define XFS_SCRUB_OFLAG_UNCLEAN (XFS_SCRUB_OFLAG_CORRUPT | \
177 XFS_SCRUB_OFLAG_PREEN | \
178 XFS_SCRUB_OFLAG_XFAIL | \
179 XFS_SCRUB_OFLAG_XCORRUPT | \
180 XFS_SCRUB_OFLAG_INCOMPLETE | \
181 XFS_SCRUB_OFLAG_WARNING)
184 xchk_stats_merge_one(
185 struct xchk_stats *cs,
186 const struct xfs_scrub_metadata *sm,
187 const struct xchk_stats_run *run)
189 struct xchk_scrub_stats *css;
191 if (sm->sm_type >= XFS_SCRUB_TYPE_NR) {
192 ASSERT(sm->sm_type < XFS_SCRUB_TYPE_NR);
196 css = &cs->cs_stats[sm->sm_type];
197 spin_lock(&css->css_lock);
199 if (!(sm->sm_flags & XFS_SCRUB_OFLAG_UNCLEAN))
201 if (sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
203 if (sm->sm_flags & XFS_SCRUB_OFLAG_PREEN)
205 if (sm->sm_flags & XFS_SCRUB_OFLAG_XFAIL)
207 if (sm->sm_flags & XFS_SCRUB_OFLAG_XCORRUPT)
209 if (sm->sm_flags & XFS_SCRUB_OFLAG_INCOMPLETE)
211 if (sm->sm_flags & XFS_SCRUB_OFLAG_WARNING)
213 css->retries += run->retries;
214 css->checktime_us += howmany_64(run->scrub_ns, NSEC_PER_USEC);
216 if (run->repair_attempted)
217 css->repair_invocations++;
218 if (run->repair_succeeded)
219 css->repair_success++;
220 css->repairtime_us += howmany_64(run->repair_ns, NSEC_PER_USEC);
221 spin_unlock(&css->css_lock);
224 /* Merge these scrub-run stats into the global and mount stat data. */
227 struct xfs_mount *mp,
228 const struct xfs_scrub_metadata *sm,
229 const struct xchk_stats_run *run)
231 xchk_stats_merge_one(&global_stats, sm, run);
232 xchk_stats_merge_one(mp->m_scrub_stats, sm, run);
235 /* debugfs boilerplate */
238 xchk_scrub_stats_read(
244 struct xchk_stats *cs = file->private_data;
250 * This generates stringly snapshot of all the scrub counters, so we
251 * do not want userspace to receive garbled text from multiple calls.
252 * If the file position is greater than 0, return a short read.
257 bufsize = xchk_stats_estimate_bufsize(cs);
259 buf = kvmalloc(bufsize, XCHK_GFP_FLAGS);
263 avail = xchk_stats_format(cs, buf, bufsize);
269 ret = simple_read_from_buffer(ubuf, count, ppos, buf, avail);
275 static const struct file_operations scrub_stats_fops = {
277 .read = xchk_scrub_stats_read,
281 xchk_clear_scrub_stats_write(
283 const char __user *ubuf,
287 struct xchk_stats *cs = file->private_data;
291 ret = kstrtouint_from_user(ubuf, count, 0, &val);
298 xchk_stats_clearall(cs);
302 static const struct file_operations clear_scrub_stats_fops = {
304 .write = xchk_clear_scrub_stats_write,
307 /* Initialize the stats object. */
310 struct xchk_stats *cs,
311 struct xfs_mount *mp)
313 struct xchk_scrub_stats *css = &cs->cs_stats[0];
316 for (i = 0; i < XFS_SCRUB_TYPE_NR; i++, css++)
317 spin_lock_init(&css->css_lock);
322 /* Connect the stats object to debugfs. */
325 struct xchk_stats *cs,
326 struct dentry *parent)
331 cs->cs_debugfs = xfs_debugfs_mkdir("scrub", parent);
335 debugfs_create_file("stats", 0444, cs->cs_debugfs, cs,
337 debugfs_create_file("clear_stats", 0200, cs->cs_debugfs, cs,
338 &clear_scrub_stats_fops);
341 /* Free all resources related to the stats object. */
344 struct xchk_stats *cs)
349 /* Disconnect the stats object from debugfs. */
351 xchk_stats_unregister(
352 struct xchk_stats *cs)
354 debugfs_remove(cs->cs_debugfs);
357 /* Initialize global stats and register them */
359 xchk_global_stats_setup(
360 struct dentry *parent)
364 error = xchk_stats_init(&global_stats, NULL);
368 xchk_stats_register(&global_stats, parent);
372 /* Unregister global stats and tear them down */
374 xchk_global_stats_teardown(void)
376 xchk_stats_unregister(&global_stats);
377 xchk_stats_teardown(&global_stats);
380 /* Allocate per-mount stats */
382 xchk_mount_stats_alloc(
383 struct xfs_mount *mp)
385 struct xchk_stats *cs;
388 cs = kvzalloc(sizeof(struct xchk_stats), GFP_KERNEL);
392 error = xchk_stats_init(cs, mp);
396 mp->m_scrub_stats = cs;
403 /* Free per-mount stats */
405 xchk_mount_stats_free(
406 struct xfs_mount *mp)
408 xchk_stats_teardown(mp->m_scrub_stats);
409 kvfree(mp->m_scrub_stats);
410 mp->m_scrub_stats = NULL;