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 -l' should load a dataset's key to change it.
27#
28# STRATEGY:
29# 1. Create an encrypted dataset
30# 2. Unload dataset and unload its key
31# 3. Attempt to change the key
32# 4. Verify the dataset key is loaded
33# 3. Attempt to change the key
34#
35
36verify_runnable "both"
37
38function cleanup
39{
40	datasetexists $TESTPOOL/$TESTFS1 && \
41		log_must zfs destroy -f $TESTPOOL/$TESTFS1
42}
43log_onexit cleanup
44
45log_assert "'zfs change-key -l' should load a dataset's key to change it"
46
47log_must eval "echo $PASSPHRASE > /$TESTPOOL/pkey"
48log_must zfs create -o encryption=on -o keyformat=passphrase \
49	-o keylocation=file:///$TESTPOOL/pkey $TESTPOOL/$TESTFS1
50log_must zfs unmount $TESTPOOL/$TESTFS1
51log_must zfs unload-key $TESTPOOL/$TESTFS1
52
53log_must zfs change-key -l $TESTPOOL/$TESTFS1
54log_must key_available $TESTPOOL/$TESTFS1
55
56log_must zfs change-key -l $TESTPOOL/$TESTFS1
57
58log_pass "'zfs change-key -l' loads a dataset's key to change it"
59