Linux 6.12 compat: META
[zfs.git] / tests / zfs-tests / tests / functional / cli_root / zfs_load-key / zfs_load-key_file.ksh
blob73c461fd6b3980c39cc33ce953a032a90040108e
1 #!/bin/ksh -p
3 # CDDL HEADER START
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.
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.
14 # CDDL HEADER END
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
25 # DESCRIPTION:
26 # 'zfs load-key' should load a dataset's key from a file.
28 # STRATEGY:
29 # 1. Create an encrypted dataset with a key file
30 # 2. Unmount the dataset and unload the key
31 # 3. Attempt to load the dataset's key
32 # 4. Verify the key is loaded
33 # 5. Attempt to mount the dataset
36 verify_runnable "both"
38 function cleanup
40 datasetexists $TESTPOOL/$TESTFS1 && \
41 destroy_dataset $TESTPOOL/$TESTFS1
43 log_onexit cleanup
45 log_assert "'zfs load-key' should load a key from a file"
47 log_must eval "echo $PASSPHRASE > /$TESTPOOL/pkey"
48 log_must zfs create -o encryption=on -o keyformat=passphrase \
49 -o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
51 log_must zfs unmount $TESTPOOL/$TESTFS1
52 log_must zfs unload-key $TESTPOOL/$TESTFS1
54 log_must zfs load-key $TESTPOOL/$TESTFS1
55 log_must key_available $TESTPOOL/$TESTFS1
56 log_must zfs mount $TESTPOOL/$TESTFS1
58 log_pass "'zfs load-key' loads a key from a file"