]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_raw.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / cli_root / zfs_receive / zfs_receive_raw.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
23 #
24 # DESCRIPTION:
25 # ZFS should receive streams from raw sends.
26 #
27 # STRATEGY:
28 # 1. Create an encrypted dataset
29 # 2. Create a file and get its checksum
30 # 3. Snapshot the dataset
31 # 4. Attempt to receive a raw send stream as a child of an unencrypted dataset
32 # 5. Verify the key is unavailable
33 # 6. Attempt to load the key and mount the dataset
34 # 7. Verify the checksum of the file is the same as the original
35 # 8. Attempt to receive a raw send stream as a child of an encrypted dataset
36 # 9. Verify the key is unavailable
37 # 10. Attempt to load the key and mount the dataset
38 # 11. Verify the checksum of the file is the same as the original
39 # 12. Verify 'zfs receive -n' works with the raw stream
40 #
41
42 verify_runnable "both"
43
44 function cleanup
45 {
46         datasetexists $TESTPOOL/$TESTFS1 && \
47                 log_must zfs destroy -r $TESTPOOL/$TESTFS1
48
49         datasetexists $TESTPOOL/$TESTFS2 && \
50                 log_must zfs destroy -r $TESTPOOL/$TESTFS2
51 }
52
53 log_onexit cleanup
54
55 log_assert "ZFS should receive streams from raw sends"
56
57 typeset passphrase="password"
58 typeset snap="$TESTPOOL/$TESTFS1@snap"
59
60 log_must eval "echo $passphrase | zfs create -o encryption=on" \
61         "-o keyformat=passphrase $TESTPOOL/$TESTFS1"
62
63 log_must mkfile 1M /$TESTPOOL/$TESTFS1/$TESTFILE0
64 typeset checksum=$(md5digest /$TESTPOOL/$TESTFS1/$TESTFILE0)
65
66 log_must zfs snapshot $snap
67
68 log_note "Verify ZFS can receive a raw send stream from an encrypted dataset"
69 log_must eval "zfs send -w $snap | zfs receive $TESTPOOL/$TESTFS2"
70
71 keystatus=$(get_prop keystatus $TESTPOOL/$TESTFS2)
72 [[ "$keystatus" == "unavailable" ]] || \
73         log_fail "Expected keystatus unavailable, got $keystatus"
74
75 log_must eval "echo $passphrase | zfs mount -l $TESTPOOL/$TESTFS2"
76
77 typeset cksum1=$(md5digest /$TESTPOOL/$TESTFS2/$TESTFILE0)
78 [[ "$cksum1" == "$checksum" ]] || \
79         log_fail "Checksums differ ($cksum1 != $checksum)"
80
81 log_must eval "zfs send -w $snap | zfs receive $TESTPOOL/$TESTFS1/c1"
82
83 keystatus=$(get_prop keystatus $TESTPOOL/$TESTFS1/c1)
84 [[ "$keystatus" == "unavailable" ]] || \
85         log_fail "Expected keystatus unavailable, got $keystatus"
86
87 log_must eval "echo $passphrase | zfs mount -l $TESTPOOL/$TESTFS1/c1"
88 typeset cksum2=$(md5digest /$TESTPOOL/$TESTFS1/c1/$TESTFILE0)
89 [[ "$cksum2" == "$checksum" ]] || \
90         log_fail "Checksums differ ($cksum2 != $checksum)"
91
92 log_must eval "zfs send -w $snap | zfs receive -n $TESTPOOL/$TESTFS3"
93
94 log_pass "ZFS can receive streams from raw sends"