mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
Revert "Fix raw sends on encrypted datasets when copying back snapshots"
Commitd1d4769
takes into account the encryption key version to decide if the local_mac could be zeroed out. However, this could lead to failure mounting encrypted datasets created with intermediate versions of ZFS encryption available in master between major releases. In order to prevent this situation revertd1d4769
pending a more comprehensive fix which addresses the mount failure case. Reviewed-by: George Amanakis <gamanakis@gmail.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #11294 Issue #12025 Issue #12300 Closes #12033
This commit is contained in:
parent
618a65cd7a
commit
6217656da3
@ -1076,16 +1076,6 @@ zio_crypt_do_objset_hmacs(zio_crypt_key_t *key, void *data, uint_t datalen,
|
||||
|
||||
bcopy(raw_portable_mac, portable_mac, ZIO_OBJSET_MAC_LEN);
|
||||
|
||||
/*
|
||||
* This is necessary here as we check next whether
|
||||
* OBJSET_FLAG_USERACCOUNTING_COMPLETE or
|
||||
* OBJSET_FLAG_USEROBJACCOUNTING are set in order to
|
||||
* decide if the local_mac should be zeroed out.
|
||||
*/
|
||||
intval = osp->os_flags;
|
||||
if (should_bswap)
|
||||
intval = BSWAP_64(intval);
|
||||
|
||||
/*
|
||||
* The local MAC protects the user, group and project accounting.
|
||||
* If these objects are not present, the local MAC is zeroed out.
|
||||
@ -1097,10 +1087,7 @@ zio_crypt_do_objset_hmacs(zio_crypt_key_t *key, void *data, uint_t datalen,
|
||||
(datalen >= OBJSET_PHYS_SIZE_V2 &&
|
||||
osp->os_userused_dnode.dn_type == DMU_OT_NONE &&
|
||||
osp->os_groupused_dnode.dn_type == DMU_OT_NONE) ||
|
||||
(datalen <= OBJSET_PHYS_SIZE_V1) ||
|
||||
(((intval & OBJSET_FLAG_USERACCOUNTING_COMPLETE) == 0 ||
|
||||
(intval & OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE) == 0) &&
|
||||
key->zk_version > 0)) {
|
||||
(datalen <= OBJSET_PHYS_SIZE_V1)) {
|
||||
bzero(local_mac, ZIO_OBJSET_MAC_LEN);
|
||||
return (0);
|
||||
}
|
||||
|
@ -1197,16 +1197,6 @@ zio_crypt_do_objset_hmacs(zio_crypt_key_t *key, void *data, uint_t datalen,
|
||||
|
||||
bcopy(raw_portable_mac, portable_mac, ZIO_OBJSET_MAC_LEN);
|
||||
|
||||
/*
|
||||
* This is necessary here as we check next whether
|
||||
* OBJSET_FLAG_USERACCOUNTING_COMPLETE or
|
||||
* OBJSET_FLAG_USEROBJACCOUNTING are set in order to
|
||||
* decide if the local_mac should be zeroed out.
|
||||
*/
|
||||
intval = osp->os_flags;
|
||||
if (should_bswap)
|
||||
intval = BSWAP_64(intval);
|
||||
|
||||
/*
|
||||
* The local MAC protects the user, group and project accounting.
|
||||
* If these objects are not present, the local MAC is zeroed out.
|
||||
@ -1218,10 +1208,7 @@ zio_crypt_do_objset_hmacs(zio_crypt_key_t *key, void *data, uint_t datalen,
|
||||
(datalen >= OBJSET_PHYS_SIZE_V2 &&
|
||||
osp->os_userused_dnode.dn_type == DMU_OT_NONE &&
|
||||
osp->os_groupused_dnode.dn_type == DMU_OT_NONE) ||
|
||||
(datalen <= OBJSET_PHYS_SIZE_V1) ||
|
||||
(((intval & OBJSET_FLAG_USERACCOUNTING_COMPLETE) == 0 ||
|
||||
(intval & OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE) == 0) &&
|
||||
key->zk_version > 0)) {
|
||||
(datalen <= OBJSET_PHYS_SIZE_V1)) {
|
||||
bzero(local_mac, ZIO_OBJSET_MAC_LEN);
|
||||
return (0);
|
||||
}
|
||||
|
@ -2007,6 +2007,14 @@ dsl_crypto_recv_raw_objset_check(dsl_dataset_t *ds, dsl_dataset_t *fromds,
|
||||
if (ret != 0)
|
||||
return (ret);
|
||||
|
||||
/*
|
||||
* Useraccounting is not portable and must be done with the keys loaded.
|
||||
* Therefore, whenever we do any kind of receive the useraccounting
|
||||
* must not be present.
|
||||
*/
|
||||
ASSERT0(os->os_flags & OBJSET_FLAG_USERACCOUNTING_COMPLETE);
|
||||
ASSERT0(os->os_flags & OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE);
|
||||
|
||||
mdn = DMU_META_DNODE(os);
|
||||
|
||||
/*
|
||||
@ -2097,9 +2105,6 @@ dsl_crypto_recv_raw_objset_sync(dsl_dataset_t *ds, dmu_objset_type_t ostype,
|
||||
*/
|
||||
arc_release(os->os_phys_buf, &os->os_phys_buf);
|
||||
bcopy(portable_mac, os->os_phys->os_portable_mac, ZIO_OBJSET_MAC_LEN);
|
||||
os->os_phys->os_flags &= ~OBJSET_FLAG_USERACCOUNTING_COMPLETE;
|
||||
os->os_phys->os_flags &= ~OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE;
|
||||
os->os_flags = os->os_phys->os_flags;
|
||||
bzero(os->os_phys->os_local_mac, ZIO_OBJSET_MAC_LEN);
|
||||
os->os_next_write_raw[tx->tx_txg & TXG_MASK] = B_TRUE;
|
||||
|
||||
|
@ -884,8 +884,7 @@ tests = [
|
||||
'userquota_004_pos', 'userquota_005_neg', 'userquota_006_pos',
|
||||
'userquota_007_pos', 'userquota_008_pos', 'userquota_009_pos',
|
||||
'userquota_010_pos', 'userquota_011_pos', 'userquota_012_neg',
|
||||
'userspace_001_pos', 'userspace_002_pos', 'userspace_encrypted',
|
||||
'userspace_send_encrypted']
|
||||
'userspace_001_pos', 'userspace_002_pos', 'userspace_encrypted']
|
||||
tags = ['functional', 'userquota']
|
||||
|
||||
[tests/functional/vdev_zaps]
|
||||
|
@ -21,8 +21,7 @@ dist_pkgdata_SCRIPTS = \
|
||||
userspace_001_pos.ksh \
|
||||
userspace_002_pos.ksh \
|
||||
userspace_003_pos.ksh \
|
||||
userspace_encrypted.ksh \
|
||||
userspace_send_encrypted.ksh
|
||||
userspace_encrypted.ksh
|
||||
|
||||
dist_pkgdata_DATA = \
|
||||
userquota.cfg \
|
||||
|
@ -1,108 +0,0 @@
|
||||
#!/bin/ksh -p
|
||||
#
|
||||
# This file and its contents are supplied under the terms of the
|
||||
# Common Development and Distribution License ("CDDL"), version 1.0.
|
||||
# You may only use this file in accordance with the terms of version
|
||||
# 1.0 of the CDDL.
|
||||
#
|
||||
# A full copy of the text of the CDDL should have accompanied this
|
||||
# source. A copy of the CDDL is also available via the Internet at
|
||||
# http://www.illumos.org/license/CDDL.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2020, George Amanakis <gamanakis@gmail.com>. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
. $STF_SUITE/tests/functional/userquota/userquota_common.kshlib
|
||||
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# Sending raw encrypted datasets back to the source dataset succeeds.
|
||||
#
|
||||
#
|
||||
# STRATEGY:
|
||||
# 1. Create encrypted source dataset, set userquota and write a file
|
||||
# 2. Create base and an additional snapshot (s1)
|
||||
# 3. Unmount the source dataset
|
||||
# 4. Raw send the base snapshot to a new target dataset
|
||||
# 5. Raw send incrementally the s1 snapshot to the new target dataset
|
||||
# 6. Mount both source and target datasets
|
||||
# 7. Verify encrypted datasets support 'zfs userspace' and 'zfs groupspace'
|
||||
# and the accounting is done correctly
|
||||
#
|
||||
|
||||
function cleanup
|
||||
{
|
||||
destroy_pool $POOLNAME
|
||||
rm -f $FILEDEV
|
||||
}
|
||||
|
||||
function log_must_unsupported
|
||||
{
|
||||
log_must_retry "unsupported" 3 "$@"
|
||||
(( $? != 0 )) && log_fail
|
||||
}
|
||||
|
||||
log_onexit cleanup
|
||||
|
||||
FILEDEV="$TEST_BASE_DIR/userspace_encrypted"
|
||||
POOLNAME="testpool$$"
|
||||
ENC_SOURCE="$POOLNAME/source"
|
||||
ENC_TARGET="$POOLNAME/target"
|
||||
|
||||
log_assert "Sending raw encrypted datasets back to the source dataset succeeds."
|
||||
|
||||
# Setup
|
||||
truncate -s 200m $FILEDEV
|
||||
log_must zpool create -o feature@encryption=enabled $POOLNAME \
|
||||
$FILEDEV
|
||||
|
||||
# Create encrypted source dataset
|
||||
log_must eval "echo 'password' | zfs create -o encryption=on" \
|
||||
"-o keyformat=passphrase -o keylocation=prompt " \
|
||||
"$ENC_SOURCE"
|
||||
|
||||
# Set user quota and write file
|
||||
log_must zfs set userquota@$QUSER1=50m $ENC_SOURCE
|
||||
mkmount_writable $ENC_SOURCE
|
||||
mntpnt=$(get_prop mountpoint $ENC_SOURCE)
|
||||
log_must user_run $QUSER1 mkfile 20m /$mntpnt/file
|
||||
sync
|
||||
|
||||
# Snapshot, raw send to new dataset
|
||||
log_must zfs snap $ENC_SOURCE@base
|
||||
log_must zfs snap $ENC_SOURCE@s1
|
||||
log_must zfs umount $ENC_SOURCE
|
||||
log_must eval "zfs send -w $ENC_SOURCE@base | zfs recv " \
|
||||
"$ENC_TARGET"
|
||||
|
||||
log_must eval "zfs send -w -i @base $ENC_SOURCE@s1 | zfs recv " \
|
||||
"$ENC_TARGET"
|
||||
|
||||
log_must zfs destroy $ENC_SOURCE@s1
|
||||
log_must eval "zfs send -w -i @base $ENC_TARGET@s1 | zfs recv " \
|
||||
"$ENC_SOURCE"
|
||||
|
||||
# Mount encrypted datasets and verify they support 'zfs userspace' and
|
||||
# 'zfs groupspace' and the accounting is done correctly
|
||||
log_must zfs mount $ENC_SOURCE
|
||||
log_must eval "echo password | zfs load-key $ENC_TARGET"
|
||||
log_must zfs mount $ENC_TARGET
|
||||
sync
|
||||
|
||||
src_uspace=$(( $(zfs userspace -Hp $ENC_SOURCE | grep $QUSER1 | \
|
||||
awk '{print $4}')/1024/1024))
|
||||
tgt_uspace=$(( $(zfs userspace -Hp $ENC_TARGET | grep $QUSER1 | \
|
||||
awk '{print $4}')/1024/1024))
|
||||
log_must test "$src_uspace" -eq "$tgt_uspace"
|
||||
|
||||
src_uquota=$(zfs userspace -Hp $ENC_SOURCE | grep $QUSER1 | awk '{print $5}')
|
||||
tgt_uquota=$(zfs userspace -Hp $ENC_TARGET | grep $QUSER1 | awk '{print $5}')
|
||||
log_must test "$src_uquota" -eq "$tgt_uquota"
|
||||
|
||||
# Cleanup
|
||||
cleanup
|
||||
|
||||
log_pass "Sending raw encrypted datasets back to the source dataset succeeds."
|
Loading…
Reference in New Issue
Block a user