]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/cli_root/zfs_change-key/zfs_change-key.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / cli_root / zfs_change-key / zfs_change-key.ksh
1 #!/bin/ksh -p
2 #
3 # CDDL HEADER START
4 #
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
8 # 1.0 of the CDDL.
9 #
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.
13 #
14 # CDDL HEADER END
15 #
16
17 #
18 # Copyright (c) 2017 Datto, Inc. All rights reserved.
19 #
20
21 . $STF_SUITE/include/libtest.shlib
22 . $STF_SUITE/tests/functional/cli_root/zfs_load-key/zfs_load-key_common.kshlib
23
24 #
25 # DESCRIPTION:
26 # 'zfs change-key' should change the key material.
27 #
28 # STRATEGY:
29 # 1. Create an encrypted dataset
30 # 2. Attempt to change the key
31 # 3. Unmount the dataset and unload its key
32 # 4. Attempt to load the old key
33 # 5. Verify the key is not loaded
34 # 6. Attempt to load the new key
35 # 7. Verify the key is loaded
36 #
37
38 verify_runnable "both"
39
40 function cleanup
41 {
42         datasetexists $TESTPOOL/$TESTFS1 && \
43                 log_must zfs destroy -f $TESTPOOL/$TESTFS1
44 }
45 log_onexit cleanup
46
47 log_assert "'zfs change-key' should change the key material"
48
49 log_must eval "echo $PASSPHRASE1 | zfs create -o encryption=on" \
50         "-o keyformat=passphrase -o keylocation=prompt $TESTPOOL/$TESTFS1"
51 log_must eval "echo $PASSPHRASE2 | zfs change-key $TESTPOOL/$TESTFS1"
52
53 log_must zfs unmount $TESTPOOL/$TESTFS1
54 log_must zfs unload-key $TESTPOOL/$TESTFS1
55
56 log_mustnot eval "echo $PASSPHRASE1 | zfs load-key $TESTPOOL/$TESTFS1"
57 log_must key_unavailable $TESTPOOL/$TESTFS1
58
59 log_must eval "echo $PASSPHRASE2 | zfs load-key $TESTPOOL/$TESTFS1"
60 log_must key_available $TESTPOOL/$TESTFS1
61
62 log_pass "'zfs change-key' changes the key material"