forked from pool/e2fsprogs
69ba2c6a40
version 0 quota format (jsc#SLE-17360) quota-Fold-quota_read_all_dquots-into-quota_update_l.patch: quota: Fold quota_read_all_dquots() into quota_update_limits() (jsc#SLE-17360) quota-Rename-quota_update_limits-to-quota_read_all_d.patch: quota: Rename quota_update_limits() to quota_read_all_dquots() (jsc#SLE-17360) tune2fs-Fix-conversion-of-quota-files.patch: tune2fs: Fix conversion of quota files (jsc#SLE-17360) e2fsck-Do-not-trash-user-limits-when-processing-orph.patch: e2fsck: Do not trash user limits when processing orphan list (jsc#SLE-17360) debugfs-Fix-headers-for-quota-commands.patch: debugfs: Fix headers for quota commands (jsc#SLE-17360) quota-Drop-dead-code.patch: quota: Drop dead code (jsc#SLE-17360) - add these not yet released fixes to e2fsprogs package so that SLE15-SP4 ships with them Rev filesystems/144 Md5 d564bea5c805fff8e7d379ec38987fc2 2021-09-30 14:34:36 jankara 922397
189 lines
6.9 KiB
Diff
189 lines
6.9 KiB
Diff
From cb060896aac2207ea77479db2e2212ebe7955de9 Mon Sep 17 00:00:00 2001
|
|
From: Jan Kara <jack@suse.cz>
|
|
Date: Fri, 20 Aug 2021 21:18:32 +0200
|
|
Subject: [PATCH 1/8] quota: Add support to version 0 quota format
|
|
X-Developer-Signature: v=1; a=openpgp-sha256; l=6268; h=from:subject;
|
|
bh=UhE03jWwtF7/2Unh5tfHgBCzzdLaSNZ7G9C22vuq4H4=;
|
|
b=owEBbQGS/pANAwAIAZydqgc/ZEDZAcsmYgBhI8GhrizE8ehds+qrTxuX1OCIKL+zMflZgbZ3qOb5
|
|
4X5jnt+JATMEAAEIAB0WIQSrWdEr1p4yirVVKBycnaoHP2RA2QUCYSPBoQAKCRCcnaoHP2RA2dHMCA
|
|
CzR/VySs+XXZrCsUYOO3oUzFueRoSJnOAuAUONScP8h7x8fH7wclET0eU/ZGDTMFPrhSIAWjqqwfI8
|
|
zeFGmbi4GR5BRbsxWNCJnmjwtbxHfOiXsH8KLqT8DyLFl/Svw4yHi9URyIKk4rij2q9AqmA1DTc5M6
|
|
iMHejidF5w4SbKSmvVYpJi1Ny/TyWXUU9ATzZv01cwjBnMsTw+xq3MD55K9VVZJ9tIF3YZd0PahiT0
|
|
h/zKA7uQX6W3PKWVuTHkSzjUnsOhKMCX9MxMX6uGXzHBiUsqdCSijVQ6qwBmbwbbz5OZRBRdTfm+0X
|
|
6fJidGzi6Zcpp/jOs8RIOSu55qCTAb
|
|
X-Developer-Key: i=jack@suse.cz; a=openpgp;
|
|
fpr=93C6099A142276A28BBE35D815BC833443038D8C
|
|
|
|
Version 0 quota format differs from version 1 by having only 32-bit
|
|
counters for inodes and block limits. For many installations this is not
|
|
limiting and thus the format is widely used. Also quota tools still
|
|
create quota files with this format by default. Add support for this
|
|
quota format to e2fsprogs so that we can seamlessly convert quota files
|
|
in this format into our internal quota files.
|
|
|
|
Signed-off-by: Jan Kara <jack@suse.cz>
|
|
---
|
|
lib/support/quotaio_v2.c | 85 +++++++++++++++++++++++++++++++++++++---
|
|
lib/support/quotaio_v2.h | 17 +++++++-
|
|
2 files changed, 96 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/lib/support/quotaio_v2.c b/lib/support/quotaio_v2.c
|
|
index 23717f03f428..a49aa6ac8c2f 100644
|
|
--- a/lib/support/quotaio_v2.c
|
|
+++ b/lib/support/quotaio_v2.c
|
|
@@ -41,6 +41,68 @@ struct quotafile_ops quotafile_ops_2 = {
|
|
.report = v2_report,
|
|
};
|
|
|
|
+/*
|
|
+ * Copy dquot from disk to memory
|
|
+ */
|
|
+static void v2r0_disk2memdqblk(struct dquot *dquot, void *dp)
|
|
+{
|
|
+ struct util_dqblk *m = &dquot->dq_dqb;
|
|
+ struct v2r0_disk_dqblk *d = dp, empty;
|
|
+
|
|
+ dquot->dq_id = ext2fs_le32_to_cpu(d->dqb_id);
|
|
+ m->dqb_ihardlimit = ext2fs_le32_to_cpu(d->dqb_ihardlimit);
|
|
+ m->dqb_isoftlimit = ext2fs_le32_to_cpu(d->dqb_isoftlimit);
|
|
+ m->dqb_bhardlimit = ext2fs_le32_to_cpu(d->dqb_bhardlimit);
|
|
+ m->dqb_bsoftlimit = ext2fs_le32_to_cpu(d->dqb_bsoftlimit);
|
|
+ m->dqb_curinodes = ext2fs_le32_to_cpu(d->dqb_curinodes);
|
|
+ m->dqb_curspace = ext2fs_le64_to_cpu(d->dqb_curspace);
|
|
+ m->dqb_itime = ext2fs_le64_to_cpu(d->dqb_itime);
|
|
+ m->dqb_btime = ext2fs_le64_to_cpu(d->dqb_btime);
|
|
+
|
|
+ memset(&empty, 0, sizeof(struct v2r0_disk_dqblk));
|
|
+ empty.dqb_itime = ext2fs_cpu_to_le64(1);
|
|
+ if (!memcmp(&empty, dp, sizeof(struct v2r0_disk_dqblk)))
|
|
+ m->dqb_itime = 0;
|
|
+}
|
|
+
|
|
+/*
|
|
+ * Copy dquot from memory to disk
|
|
+ */
|
|
+static void v2r0_mem2diskdqblk(void *dp, struct dquot *dquot)
|
|
+{
|
|
+ struct util_dqblk *m = &dquot->dq_dqb;
|
|
+ struct v2r0_disk_dqblk *d = dp;
|
|
+
|
|
+ d->dqb_ihardlimit = ext2fs_cpu_to_le32(m->dqb_ihardlimit);
|
|
+ d->dqb_isoftlimit = ext2fs_cpu_to_le32(m->dqb_isoftlimit);
|
|
+ d->dqb_bhardlimit = ext2fs_cpu_to_le32(m->dqb_bhardlimit);
|
|
+ d->dqb_bsoftlimit = ext2fs_cpu_to_le32(m->dqb_bsoftlimit);
|
|
+ d->dqb_curinodes = ext2fs_cpu_to_le32(m->dqb_curinodes);
|
|
+ d->dqb_curspace = ext2fs_cpu_to_le64(m->dqb_curspace);
|
|
+ d->dqb_itime = ext2fs_cpu_to_le64(m->dqb_itime);
|
|
+ d->dqb_btime = ext2fs_cpu_to_le64(m->dqb_btime);
|
|
+ d->dqb_id = ext2fs_cpu_to_le32(dquot->dq_id);
|
|
+ if (qtree_entry_unused(&dquot->dq_h->qh_info.u.v2_mdqi.dqi_qtree, dp))
|
|
+ d->dqb_itime = ext2fs_cpu_to_le64(1);
|
|
+}
|
|
+
|
|
+static int v2r0_is_id(void *dp, struct dquot *dquot)
|
|
+{
|
|
+ struct v2r0_disk_dqblk *d = dp;
|
|
+ struct qtree_mem_dqinfo *info =
|
|
+ &dquot->dq_h->qh_info.u.v2_mdqi.dqi_qtree;
|
|
+
|
|
+ if (qtree_entry_unused(info, dp))
|
|
+ return 0;
|
|
+ return ext2fs_le32_to_cpu(d->dqb_id) == dquot->dq_id;
|
|
+}
|
|
+
|
|
+static struct qtree_fmt_operations v2r0_fmt_ops = {
|
|
+ .mem2disk_dqblk = v2r0_mem2diskdqblk,
|
|
+ .disk2mem_dqblk = v2r0_disk2memdqblk,
|
|
+ .is_id = v2r0_is_id,
|
|
+};
|
|
+
|
|
/*
|
|
* Copy dquot from disk to memory
|
|
*/
|
|
@@ -164,7 +226,8 @@ static int v2_check_file(struct quota_handle *h, int type, int fmt)
|
|
log_err("Your quota file is stored in wrong endianity");
|
|
return 0;
|
|
}
|
|
- if (V2_VERSION != ext2fs_le32_to_cpu(dqh.dqh_version))
|
|
+ if (V2_VERSION_R0 != ext2fs_le32_to_cpu(dqh.dqh_version) &&
|
|
+ V2_VERSION_R1 != ext2fs_le32_to_cpu(dqh.dqh_version))
|
|
return 0;
|
|
return 1;
|
|
}
|
|
@@ -174,13 +237,25 @@ static int v2_check_file(struct quota_handle *h, int type, int fmt)
|
|
*/
|
|
static int v2_init_io(struct quota_handle *h)
|
|
{
|
|
+ struct v2_disk_dqheader dqh;
|
|
struct v2_disk_dqinfo ddqinfo;
|
|
struct v2_mem_dqinfo *info;
|
|
__u64 filesize;
|
|
+ int version;
|
|
|
|
- h->qh_info.u.v2_mdqi.dqi_qtree.dqi_entry_size =
|
|
- sizeof(struct v2r1_disk_dqblk);
|
|
- h->qh_info.u.v2_mdqi.dqi_qtree.dqi_ops = &v2r1_fmt_ops;
|
|
+ if (!v2_read_header(h, &dqh))
|
|
+ return -1;
|
|
+ version = ext2fs_le32_to_cpu(dqh.dqh_version);
|
|
+
|
|
+ if (version == V2_VERSION_R0) {
|
|
+ h->qh_info.u.v2_mdqi.dqi_qtree.dqi_entry_size =
|
|
+ sizeof(struct v2r0_disk_dqblk);
|
|
+ h->qh_info.u.v2_mdqi.dqi_qtree.dqi_ops = &v2r0_fmt_ops;
|
|
+ } else {
|
|
+ h->qh_info.u.v2_mdqi.dqi_qtree.dqi_entry_size =
|
|
+ sizeof(struct v2r1_disk_dqblk);
|
|
+ h->qh_info.u.v2_mdqi.dqi_qtree.dqi_ops = &v2r1_fmt_ops;
|
|
+ }
|
|
|
|
/* Read information about quotafile */
|
|
if (h->e2fs_read(&h->qh_qf, V2_DQINFOOFF, &ddqinfo,
|
|
@@ -231,7 +306,7 @@ static int v2_new_io(struct quota_handle *h)
|
|
|
|
/* Write basic quota header */
|
|
ddqheader.dqh_magic = ext2fs_cpu_to_le32(file_magics[h->qh_type]);
|
|
- ddqheader.dqh_version = ext2fs_cpu_to_le32(V2_VERSION);
|
|
+ ddqheader.dqh_version = ext2fs_cpu_to_le32(V2_VERSION_R1);
|
|
if (h->e2fs_write(&h->qh_qf, 0, &ddqheader, sizeof(ddqheader)) !=
|
|
sizeof(ddqheader))
|
|
return -1;
|
|
diff --git a/lib/support/quotaio_v2.h b/lib/support/quotaio_v2.h
|
|
index de2db2785cb0..35054cafaa23 100644
|
|
--- a/lib/support/quotaio_v2.h
|
|
+++ b/lib/support/quotaio_v2.h
|
|
@@ -13,7 +13,8 @@
|
|
/* Offset of info header in file */
|
|
#define V2_DQINFOOFF sizeof(struct v2_disk_dqheader)
|
|
/* Supported version of quota-tree format */
|
|
-#define V2_VERSION 1
|
|
+#define V2_VERSION_R1 1
|
|
+#define V2_VERSION_R0 0
|
|
|
|
struct v2_disk_dqheader {
|
|
__le32 dqh_magic; /* Magic number identifying file */
|
|
@@ -36,6 +37,20 @@ struct v2_disk_dqinfo {
|
|
* free entry */
|
|
} __attribute__ ((packed));
|
|
|
|
+struct v2r0_disk_dqblk {
|
|
+ __le32 dqb_id; /* id this quota applies to */
|
|
+ __le32 dqb_ihardlimit; /* absolute limit on allocated inodes */
|
|
+ __le32 dqb_isoftlimit; /* preferred inode limit */
|
|
+ __le32 dqb_curinodes; /* current # allocated inodes */
|
|
+ __le32 dqb_bhardlimit; /* absolute limit on disk space
|
|
+ * (in QUOTABLOCK_SIZE) */
|
|
+ __le32 dqb_bsoftlimit; /* preferred limit on disk space
|
|
+ * (in QUOTABLOCK_SIZE) */
|
|
+ __le64 dqb_curspace; /* current space occupied (in bytes) */
|
|
+ __le64 dqb_btime; /* time limit for excessive disk use */
|
|
+ __le64 dqb_itime; /* time limit for excessive inode use */
|
|
+} __attribute__ ((packed));
|
|
+
|
|
struct v2r1_disk_dqblk {
|
|
__le32 dqb_id; /* id this quota applies to */
|
|
__le32 dqb_pad;
|
|
--
|
|
2.26.2
|
|
|