mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 03:08:51 +03:00
Fix 'zfs userspace' for received datasets in encrypted root
For encrypted receives, where user accounting is initially disabled on creation, both 'zfs userspace' and 'zfs groupspace' fails with EOPNOTSUPP: this is because dmu_objset_id_quota_upgrade_cb() forgets to set OBJSET_FLAG_USERACCOUNTING_COMPLETE on the objset flags after a successful dmu_objset_space_upgrade(). Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Co-authored-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: loli10K <ezomori.nozomu@gmail.com> Closes #9501 Closes #9596
This commit is contained in:
+24
-11
@@ -778,11 +778,15 @@ dmu_objset_own(const char *name, dmu_objset_type_t type,
|
||||
* speed up pool import times and to keep this txg reserved
|
||||
* completely for recovery work.
|
||||
*/
|
||||
if ((dmu_objset_userobjspace_upgradable(*osp) ||
|
||||
dmu_objset_projectquota_upgradable(*osp)) &&
|
||||
!readonly && !dp->dp_spa->spa_claiming &&
|
||||
(ds->ds_dir->dd_crypto_obj == 0 || decrypt))
|
||||
dmu_objset_id_quota_upgrade(*osp);
|
||||
if (!readonly && !dp->dp_spa->spa_claiming &&
|
||||
(ds->ds_dir->dd_crypto_obj == 0 || decrypt)) {
|
||||
if (dmu_objset_userobjspace_upgradable(*osp) ||
|
||||
dmu_objset_projectquota_upgradable(*osp)) {
|
||||
dmu_objset_id_quota_upgrade(*osp);
|
||||
} else if (dmu_objset_userused_enabled(*osp)) {
|
||||
dmu_objset_userspace_upgrade(*osp);
|
||||
}
|
||||
}
|
||||
|
||||
dsl_pool_rele(dp, FTAG);
|
||||
return (0);
|
||||
@@ -2285,8 +2289,8 @@ dmu_objset_space_upgrade(objset_t *os)
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
dmu_objset_userspace_upgrade(objset_t *os)
|
||||
static int
|
||||
dmu_objset_userspace_upgrade_cb(objset_t *os)
|
||||
{
|
||||
int err = 0;
|
||||
|
||||
@@ -2306,6 +2310,12 @@ dmu_objset_userspace_upgrade(objset_t *os)
|
||||
return (0);
|
||||
}
|
||||
|
||||
void
|
||||
dmu_objset_userspace_upgrade(objset_t *os)
|
||||
{
|
||||
dmu_objset_upgrade(os, dmu_objset_userspace_upgrade_cb);
|
||||
}
|
||||
|
||||
static int
|
||||
dmu_objset_id_quota_upgrade_cb(objset_t *os)
|
||||
{
|
||||
@@ -2316,14 +2326,15 @@ dmu_objset_id_quota_upgrade_cb(objset_t *os)
|
||||
return (0);
|
||||
if (dmu_objset_is_snapshot(os))
|
||||
return (SET_ERROR(EINVAL));
|
||||
if (!dmu_objset_userobjused_enabled(os))
|
||||
if (!dmu_objset_userused_enabled(os))
|
||||
return (SET_ERROR(ENOTSUP));
|
||||
if (!dmu_objset_projectquota_enabled(os) &&
|
||||
dmu_objset_userobjspace_present(os))
|
||||
return (SET_ERROR(ENOTSUP));
|
||||
|
||||
dmu_objset_ds(os)->ds_feature_activation[
|
||||
SPA_FEATURE_USEROBJ_ACCOUNTING] = (void *)B_TRUE;
|
||||
if (dmu_objset_userobjused_enabled(os))
|
||||
dmu_objset_ds(os)->ds_feature_activation[
|
||||
SPA_FEATURE_USEROBJ_ACCOUNTING] = (void *)B_TRUE;
|
||||
if (dmu_objset_projectquota_enabled(os))
|
||||
dmu_objset_ds(os)->ds_feature_activation[
|
||||
SPA_FEATURE_PROJECT_QUOTA] = (void *)B_TRUE;
|
||||
@@ -2332,7 +2343,9 @@ dmu_objset_id_quota_upgrade_cb(objset_t *os)
|
||||
if (err)
|
||||
return (err);
|
||||
|
||||
os->os_flags |= OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE;
|
||||
os->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
|
||||
if (dmu_objset_userobjused_enabled(os))
|
||||
os->os_flags |= OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE;
|
||||
if (dmu_objset_projectquota_enabled(os))
|
||||
os->os_flags |= OBJSET_FLAG_PROJECTQUOTA_COMPLETE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user