xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_unload-key/zfs_unload-key_all.ksh (revision 3dae5456c609a0bdfeffc8d1c0dc436db6ab3436)
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 unload-key -a' should unload keys for all datasets.
27#
28# STRATEGY:
29# 1. Create an encrypted filesystem, encrypted child dataset, an encrypted
30#    zvol, and an encrypted pool
31# 2. Unmount all datasets
32# 3. Attempt to unload all dataset keys
33# 4. Verify each dataset has its key unloaded
34# 5. Attempt to mount each dataset
35#
36
37verify_runnable "both"
38
39function cleanup
40{
41	datasetexists $TESTPOOL/$TESTFS1 && \
42		log_must zfs destroy -r $TESTPOOL/$TESTFS1
43	datasetexists $TESTPOOL/zvol && log_must zfs destroy $TESTPOOL/zvol
44	poolexists $TESTPOOL1 && log_must destroy_pool $TESTPOOL1
45}
46log_onexit cleanup
47
48log_assert "'zfs unload-key -a' should unload keys for all datasets"
49
50log_must eval "echo $PASSPHRASE1 > /$TESTPOOL/pkey"
51log_must zfs create -o encryption=on -o keyformat=passphrase \
52	-o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
53log_must zfs create $TESTPOOL/$TESTFS1/child
54
55log_must zfs create -V 64M -o encryption=on -o keyformat=passphrase \
56	-o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/zvol
57
58typeset DISK2="$(echo $DISKS | awk '{ print $2}')"
59log_must zpool create -O encryption=on -O keyformat=passphrase \
60	-O keylocation=file:///$TESTPOOL/pkey $TESTPOOL1 $DISK2
61
62log_must zfs unmount $TESTPOOL/$TESTFS1
63log_must zfs unmount $TESTPOOL1
64
65log_must zfs unload-key -a
66
67log_must key_unavailable $TESTPOOL/$TESTFS1
68log_must key_unavailable $TESTPOOL/$TESTFS1/child
69log_must key_unavailable $TESTPOOL/zvol
70log_must key_unavailable $TESTPOOL1
71
72log_mustnot zfs mount $TESTPOOL
73log_mustnot zfs mount $TESTPOOL/zvol
74log_mustnot zfs mount $TESTPOOL/$TESTFS1
75
76log_pass "'zfs unload-key -a' unloads keys for all datasets"
77