5 # This file and its contents are supplied under the terms of the
6 # Common Development and Distribution License ("CDDL"), version 1.0.
7 # You may only use this file in accordance with the terms of version
10 # A full copy of the text of the CDDL should have accompanied this
11 # source. A copy of the CDDL is also available via the Internet at
12 # http://www.illumos.org/license/CDDL.
18 # Copyright (c) 2017 Datto, Inc. All rights reserved.
21 . $STF_SUITE/include/libtest.shlib
22 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
26 # 'zfs load-key -r' should recursively load keys.
29 # 1. Create an encrypted dataset
30 # 2. Create a child dataset as an encryption root
31 # 3. Unmount all datasets and unload their keys
32 # 4. Attempt to load all dataset keys
33 # 5. Verify each dataset has its key loaded
34 # 6. Attempt to mount each dataset
37 verify_runnable "both"
41 datasetexists $TESTPOOL/$TESTFS1 && \
42 destroy_dataset $TESTPOOL/$TESTFS1 -r
46 log_assert "'zfs load-key -r' should recursively load keys"
48 log_must eval "echo $PASSPHRASE1 > /$TESTPOOL/pkey"
49 log_must zfs create -o encryption=on -o keyformat=passphrase \
50 -o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
52 log_must zfs create -o keyformat=passphrase \
53 -o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1/child
55 log_must zfs unmount $TESTPOOL/$TESTFS1
56 log_must zfs unload-key $TESTPOOL/$TESTFS1/child
57 log_must zfs unload-key $TESTPOOL/$TESTFS1
59 log_must zfs load-key -r $TESTPOOL
60 log_must key_available $TESTPOOL/$TESTFS1
61 log_must key_available $TESTPOOL/$TESTFS1/child
63 log_must zfs mount $TESTPOOL/$TESTFS1
64 log_must zfs mount $TESTPOOL/$TESTFS1/child
66 log_pass "'zfs load-key -r' recursively loads keys"