f09104d117c79b1c60a13ce1b6a2bf548ead0909
[xfstests-dev.git] / common / encrypt
1 #-----------------------------------------------------------------------
2 #
3 # Common functions for testing filesystem-level encryption
4 #
5 #-----------------------------------------------------------------------
6 # Copyright (c) 2016 Google, Inc.  All Rights Reserved.
7 #
8 # Author: Eric Biggers <ebiggers@google.com>
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 _require_scratch_encryption()
25 {
26         _require_scratch
27
28         _require_xfs_io_command "set_encpolicy"
29
30         # The 'test_dummy_encryption' mount option interferes with trying to use
31         # encryption for real, even if we are just trying to get/set policies
32         # and never put any keys in the keyring.  So skip the real encryption
33         # tests if the 'test_dummy_encryption' mount option was specified.
34         _exclude_scratch_mount_option "test_dummy_encryption"
35
36         # Make a filesystem on the scratch device with the encryption feature
37         # enabled.  If this fails then probably the userspace tools (e.g.
38         # e2fsprogs or f2fs-tools) are too old to understand encryption.
39         if ! _scratch_mkfs_encrypted &>>$seqres.full; then
40                 _notrun "$FSTYP userspace tools do not support encryption"
41         fi
42
43         # Try to mount the filesystem.  If this fails then either the kernel
44         # isn't aware of encryption, or the mkfs options were not compatible
45         # with encryption (e.g. ext4 with block size != PAGE_SIZE).
46         if ! _scratch_mount &>>$seqres.full; then
47                 _notrun "kernel is unaware of $FSTYP encryption feature," \
48                         "or mkfs options are not compatible with encryption"
49         fi
50
51         # The kernel may be aware of encryption without supporting it.  For
52         # example, for ext4 this is the case with kernels configured with
53         # CONFIG_EXT4_FS_ENCRYPTION=n.  Detect support for encryption by trying
54         # to set an encryption policy.  (For ext4 we could instead check for the
55         # presence of /sys/fs/ext4/features/encryption, but this is broken on
56         # some older kernels and is ext4-specific anyway.)
57         mkdir $SCRATCH_MNT/tmpdir
58         if $XFS_IO_PROG -c set_encpolicy $SCRATCH_MNT/tmpdir \
59                 2>&1 >>$seqres.full | \
60                 egrep -q 'Inappropriate ioctl for device|Operation not supported'
61         then
62                 _notrun "kernel does not support $FSTYP encryption"
63         fi
64         rmdir $SCRATCH_MNT/tmpdir
65         _scratch_unmount
66 }
67
68 _scratch_mkfs_encrypted()
69 {
70         case $FSTYP in
71         ext4|f2fs)
72                 _scratch_mkfs -O encrypt
73                 ;;
74         *)
75                 _notrun "No encryption support for $FSTYP"
76                 ;;
77         esac
78 }
79
80 # Give the invoking shell a new session keyring.  This makes any keys we add to
81 # the session keyring scoped to the lifetime of the test script.
82 _new_session_keyring()
83 {
84         $KEYCTL_PROG new_session >>$seqres.full
85 }
86
87 #
88 # Generate a random encryption key, add it to the session keyring, and print out
89 # the resulting key descriptor (example: "8bf798e1a494e1ec").  Requires the
90 # keyctl program.  It's assumed the caller has already set up a test-scoped
91 # session keyring using _new_session_keyring.
92 #
93 _generate_encryption_key()
94 {
95         # Generate a key descriptor (16 character hex string)
96         local keydesc=""
97         for ((i = 0; i < 8; i++)); do
98                 keydesc="${keydesc}$(printf "%02x" $(( $RANDOM % 256 )))"
99         done
100
101         # Generate the actual encryption key (64 bytes)
102         local raw=""
103         for ((i = 0; i < 64; i++)); do
104                 raw="${raw}\\x$(printf "%02x" $(( $RANDOM % 256 )))"
105         done
106
107         #
108         # Add the key to the session keyring.  The required structure is:
109         #
110         #       #define FS_MAX_KEY_SIZE 64
111         #       struct fscrypt_key {
112         #               u32 mode;
113         #               u8 raw[FS_MAX_KEY_SIZE];
114         #               u32 size;
115         #       } __packed;
116         #
117         # The kernel ignores 'mode' but requires that 'size' be 64.
118         #
119         # Keys are named $FSTYP:KEYDESC where KEYDESC is the 16-character key
120         # descriptor hex string.  Newer kernels (ext4 4.8 and later, f2fs 4.6
121         # and later) also allow the common key prefix "fscrypt:" in addition to
122         # their filesystem-specific key prefix ("ext4:", "f2fs:").  It would be
123         # nice to use the common key prefix, but for now use the filesystem-
124         # specific prefix to make it possible to test older kernels...
125         #
126         local big_endian=$(echo -ne '\x11' | od -tx2 | head -1 | \
127                            cut -f2 -d' ' | cut -c1 )
128         if (( big_endian )); then
129                 local mode='\x00\x00\x00\x00'
130                 local size='\x00\x00\x00\x40'
131         else
132                 local mode='\x00\x00\x00\x00'
133                 local size='\x40\x00\x00\x00'
134         fi
135         echo -n -e "${mode}${raw}${size}" |
136                 $KEYCTL_PROG padd logon $FSTYP:$keydesc @s >>$seqres.full
137         echo $keydesc
138 }
139
140 # Unlink an encryption key from the session keyring, given its key descriptor.
141 _unlink_encryption_key()
142 {
143         local keydesc=$1
144         local keyid=$($KEYCTL_PROG search @s logon $FSTYP:$keydesc)
145         $KEYCTL_PROG unlink $keyid >>$seqres.full
146 }