summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2014-05-10 01:27:31 -0400
committerTheodore Ts'o <tytso@mit.edu>2014-05-13 10:12:50 -0400
commit68ba77caa72aa91eb9473e624657c16cda8c361d (patch)
tree9f327b53abfc35a27fd7cba3e05214e932430682
parentac7ea7b081c119a843ed6105d37461d84baaf544 (diff)
downloade2fsprogs-68ba77caa72aa91eb9473e624657c16cda8c361d.tar.gz
quota: fix e2fsck to notice missing quota entries
Previously if there was a missing quota entry --- i.e., if there were files owned by group "eng", but there was no quota record for group "eng", e2fsck would not notice the missing entry. This means that the usage informtion would not be properly repaired. This is unfortunate. Fix this by marking each quota record in quota_dict that has a corresponding record on disk, and then check to see if there are any records in quota_dict that have not been marked as having been seen. In that case, we know we need to update the relevant quota inode. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Reviewed-by: Aditya Kali <adityakali@google.com>
-rw-r--r--lib/quota/mkquota.c17
-rw-r--r--lib/quota/quotaio.h2
2 files changed, 18 insertions, 1 deletions
diff --git a/lib/quota/mkquota.c b/lib/quota/mkquota.c
index f77e0723..f5ae0e00 100644
--- a/lib/quota/mkquota.c
+++ b/lib/quota/mkquota.c
@@ -458,6 +458,7 @@ static int scan_dquots_callback(struct dquot *dquot, void *cb_data)
dq = get_dq(quota_dict, dquot->dq_id);
dq->dq_id = dquot->dq_id;
+ dq->dq_flags |= DQF_SEEN;
print_dquot("mem", dq);
print_dquot("dsk", dquot);
@@ -572,10 +573,13 @@ errcode_t quota_compare_and_update(quota_ctx_t qctx, int qtype,
ext2_filsys fs = qctx->fs;
struct quota_handle qh;
struct scan_dquots_data scan_data;
+ struct dquot *dq;
+ dnode_t *n;
+ dict_t *dict = qctx->quota_dict[qtype];
ext2_ino_t qf_ino;
errcode_t err = 0;
- if (!qctx->quota_dict[qtype])
+ if (!dict)
goto out;
qf_ino = qtype == USRQUOTA ? fs->super->s_usr_quota_inum :
@@ -595,6 +599,17 @@ errcode_t quota_compare_and_update(quota_ctx_t qctx, int qtype,
log_err("Error scanning dquots");
goto out;
}
+
+ for (n = dict_first(dict); n; n = dict_next(dict, n)) {
+ dq = dnode_get(n);
+ if (!dq)
+ continue;
+ if ((dq->dq_flags & DQF_SEEN) == 0) {
+ fprintf(stderr, "[QUOTA WARNING] "
+ "Missing quota entry ID %d\n", dq->dq_id);
+ scan_data.usage_is_inconsistent = 1;
+ }
+ }
*usage_inconsistent = scan_data.usage_is_inconsistent;
out:
diff --git a/lib/quota/quotaio.h b/lib/quota/quotaio.h
index 1c062f10..55e6eb03 100644
--- a/lib/quota/quotaio.h
+++ b/lib/quota/quotaio.h
@@ -104,6 +104,8 @@ struct dquot {
struct util_dqblk dq_dqb; /* Parsed data of dquot */
};
+#define DQF_SEEN 0x0001
+
/* Structure of quotafile operations */
struct quotafile_ops {
/* Check whether quotafile is in our format */