1 /*
2  * Copyright (C) 2016 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "KeyUtil.h"
18 
19 #include <iomanip>
20 #include <sstream>
21 #include <string>
22 
23 #include <fcntl.h>
24 #include <linux/fscrypt.h>
25 #include <openssl/sha.h>
26 #include <sys/ioctl.h>
27 
28 #include <android-base/file.h>
29 #include <android-base/logging.h>
30 #include <android-base/properties.h>
31 #include <keyutils.h>
32 
33 #include "KeyStorage.h"
34 #include "Utils.h"
35 
36 namespace android {
37 namespace vold {
38 
neverGen()39 const KeyGeneration neverGen() {
40     return KeyGeneration{0, false, false};
41 }
42 
randomKey(size_t size,KeyBuffer * key)43 static bool randomKey(size_t size, KeyBuffer* key) {
44     *key = KeyBuffer(size);
45     if (ReadRandomBytes(key->size(), key->data()) != 0) {
46         // TODO status_t plays badly with PLOG, fix it.
47         LOG(ERROR) << "Random read failed";
48         return false;
49     }
50     return true;
51 }
52 
generateStorageKey(const KeyGeneration & gen,KeyBuffer * key)53 bool generateStorageKey(const KeyGeneration& gen, KeyBuffer* key) {
54     if (!gen.allow_gen) return false;
55     if (gen.use_hw_wrapped_key) {
56         if (gen.keysize != FSCRYPT_MAX_KEY_SIZE) {
57             LOG(ERROR) << "Cannot generate a wrapped key " << gen.keysize << " bytes long";
58             return false;
59         }
60         return generateWrappedStorageKey(key);
61     } else {
62         return randomKey(gen.keysize, key);
63     }
64 }
65 
isFsKeyringSupportedImpl()66 static bool isFsKeyringSupportedImpl() {
67     android::base::unique_fd fd(open("/data", O_RDONLY | O_DIRECTORY | O_CLOEXEC));
68 
69     // FS_IOC_ADD_ENCRYPTION_KEY with a NULL argument will fail with ENOTTY if
70     // the ioctl isn't supported.  Otherwise it will fail with another error
71     // code such as EFAULT.
72     //
73     // Note that there's no need to check for FS_IOC_REMOVE_ENCRYPTION_KEY,
74     // since it's guaranteed to be available if FS_IOC_ADD_ENCRYPTION_KEY is.
75     // There's also no need to check for support on external volumes separately
76     // from /data, since either the kernel supports the ioctls on all
77     // fscrypt-capable filesystems or it doesn't.
78     errno = 0;
79     (void)ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, NULL);
80     if (errno == ENOTTY) {
81         LOG(INFO) << "Kernel doesn't support FS_IOC_ADD_ENCRYPTION_KEY.  Falling back to "
82                      "session keyring";
83         return false;
84     }
85     if (errno != EFAULT) {
86         PLOG(WARNING) << "Unexpected error from FS_IOC_ADD_ENCRYPTION_KEY";
87     }
88     LOG(DEBUG) << "Detected support for FS_IOC_ADD_ENCRYPTION_KEY";
89     android::base::SetProperty("ro.crypto.uses_fs_ioc_add_encryption_key", "true");
90     return true;
91 }
92 
93 // Return true if the kernel supports the ioctls to add/remove fscrypt keys
94 // directly to/from the filesystem.
isFsKeyringSupported(void)95 bool isFsKeyringSupported(void) {
96     static bool supported = isFsKeyringSupportedImpl();
97     return supported;
98 }
99 
100 // Get raw keyref - used to make keyname and to pass to ioctl
generateKeyRef(const uint8_t * key,int length)101 static std::string generateKeyRef(const uint8_t* key, int length) {
102     SHA512_CTX c;
103 
104     SHA512_Init(&c);
105     SHA512_Update(&c, key, length);
106     unsigned char key_ref1[SHA512_DIGEST_LENGTH];
107     SHA512_Final(key_ref1, &c);
108 
109     SHA512_Init(&c);
110     SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
111     unsigned char key_ref2[SHA512_DIGEST_LENGTH];
112     SHA512_Final(key_ref2, &c);
113 
114     static_assert(FSCRYPT_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
115                   "Hash too short for descriptor");
116     return std::string((char*)key_ref2, FSCRYPT_KEY_DESCRIPTOR_SIZE);
117 }
118 
fillKey(const KeyBuffer & key,fscrypt_key * fs_key)119 static bool fillKey(const KeyBuffer& key, fscrypt_key* fs_key) {
120     if (key.size() != FSCRYPT_MAX_KEY_SIZE) {
121         LOG(ERROR) << "Wrong size key " << key.size();
122         return false;
123     }
124     static_assert(FSCRYPT_MAX_KEY_SIZE == sizeof(fs_key->raw), "Mismatch of max key sizes");
125     fs_key->mode = 0;  // unused by kernel
126     memcpy(fs_key->raw, key.data(), key.size());
127     fs_key->size = key.size();
128     return true;
129 }
130 
131 static char const* const NAME_PREFIXES[] = {"ext4", "f2fs", "fscrypt", nullptr};
132 
keyrefstring(const std::string & raw_ref)133 static std::string keyrefstring(const std::string& raw_ref) {
134     std::ostringstream o;
135     for (unsigned char i : raw_ref) {
136         o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
137     }
138     return o.str();
139 }
140 
buildLegacyKeyName(const std::string & prefix,const std::string & raw_ref)141 static std::string buildLegacyKeyName(const std::string& prefix, const std::string& raw_ref) {
142     return prefix + ":" + keyrefstring(raw_ref);
143 }
144 
145 // Get the ID of the keyring we store all fscrypt keys in when the kernel is too
146 // old to support FS_IOC_ADD_ENCRYPTION_KEY and FS_IOC_REMOVE_ENCRYPTION_KEY.
fscryptKeyring(key_serial_t * device_keyring)147 static bool fscryptKeyring(key_serial_t* device_keyring) {
148     *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "fscrypt", 0);
149     if (*device_keyring == -1) {
150         PLOG(ERROR) << "Unable to find device keyring";
151         return false;
152     }
153     return true;
154 }
155 
156 // Add an encryption key of type "logon" to the global session keyring.
installKeyLegacy(const KeyBuffer & key,const std::string & raw_ref)157 static bool installKeyLegacy(const KeyBuffer& key, const std::string& raw_ref) {
158     // Place fscrypt_key into automatically zeroing buffer.
159     KeyBuffer fsKeyBuffer(sizeof(fscrypt_key));
160     fscrypt_key& fs_key = *reinterpret_cast<fscrypt_key*>(fsKeyBuffer.data());
161 
162     if (!fillKey(key, &fs_key)) return false;
163     key_serial_t device_keyring;
164     if (!fscryptKeyring(&device_keyring)) return false;
165     for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
166         auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
167         key_serial_t key_id =
168             add_key("logon", ref.c_str(), (void*)&fs_key, sizeof(fs_key), device_keyring);
169         if (key_id == -1) {
170             PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
171             return false;
172         }
173         LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
174                    << " in process " << getpid();
175     }
176     return true;
177 }
178 
179 // Installs fscrypt-provisioning key into session level kernel keyring.
180 // This allows for the given key to be installed back into filesystem keyring.
181 // For more context see reloadKeyFromSessionKeyring.
installProvisioningKey(const KeyBuffer & key,const std::string & ref,const fscrypt_key_specifier & key_spec)182 static bool installProvisioningKey(const KeyBuffer& key, const std::string& ref,
183                                    const fscrypt_key_specifier& key_spec) {
184     key_serial_t device_keyring;
185     if (!fscryptKeyring(&device_keyring)) return false;
186 
187     // Place fscrypt_provisioning_key_payload into automatically zeroing buffer.
188     KeyBuffer buf(sizeof(fscrypt_provisioning_key_payload) + key.size(), 0);
189     fscrypt_provisioning_key_payload& provisioning_key =
190             *reinterpret_cast<fscrypt_provisioning_key_payload*>(buf.data());
191     memcpy(provisioning_key.raw, key.data(), key.size());
192     provisioning_key.type = key_spec.type;
193 
194     key_serial_t key_id = add_key("fscrypt-provisioning", ref.c_str(), (void*)&provisioning_key,
195                                   buf.size(), device_keyring);
196     if (key_id == -1) {
197         PLOG(ERROR) << "Failed to insert fscrypt-provisioning key for " << ref
198                     << " into session keyring";
199         return false;
200     }
201     LOG(DEBUG) << "Added fscrypt-provisioning key for " << ref << " to session keyring";
202     return true;
203 }
204 
205 // Build a struct fscrypt_key_specifier for use in the key management ioctls.
buildKeySpecifier(fscrypt_key_specifier * spec,const EncryptionPolicy & policy)206 static bool buildKeySpecifier(fscrypt_key_specifier* spec, const EncryptionPolicy& policy) {
207     switch (policy.options.version) {
208         case 1:
209             if (policy.key_raw_ref.size() != FSCRYPT_KEY_DESCRIPTOR_SIZE) {
210                 LOG(ERROR) << "Invalid key specifier size for v1 encryption policy: "
211                            << policy.key_raw_ref.size();
212                 return false;
213             }
214             spec->type = FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR;
215             memcpy(spec->u.descriptor, policy.key_raw_ref.c_str(), FSCRYPT_KEY_DESCRIPTOR_SIZE);
216             return true;
217         case 2:
218             if (policy.key_raw_ref.size() != FSCRYPT_KEY_IDENTIFIER_SIZE) {
219                 LOG(ERROR) << "Invalid key specifier size for v2 encryption policy: "
220                            << policy.key_raw_ref.size();
221                 return false;
222             }
223             spec->type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
224             memcpy(spec->u.identifier, policy.key_raw_ref.c_str(), FSCRYPT_KEY_IDENTIFIER_SIZE);
225             return true;
226         default:
227             LOG(ERROR) << "Invalid encryption policy version: " << policy.options.version;
228             return false;
229     }
230 }
231 
232 // Installs key into keyring of a filesystem mounted on |mountpoint|.
233 //
234 // It's callers responsibility to fill key specifier, and either arg->raw or arg->key_id.
235 //
236 // In case arg->key_spec.type equals to FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER
237 // arg->key_spec.u.identifier will be populated with raw key reference generated
238 // by kernel.
239 //
240 // For documentation on difference between arg->raw and arg->key_id see
241 // https://www.kernel.org/doc/html/latest/filesystems/fscrypt.html#fs-ioc-add-encryption-key
installFsKeyringKey(const std::string & mountpoint,const EncryptionOptions & options,fscrypt_add_key_arg * arg)242 static bool installFsKeyringKey(const std::string& mountpoint, const EncryptionOptions& options,
243                                 fscrypt_add_key_arg* arg) {
244     if (options.use_hw_wrapped_key) arg->__flags |= __FSCRYPT_ADD_KEY_FLAG_HW_WRAPPED;
245 
246     android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
247     if (fd == -1) {
248         PLOG(ERROR) << "Failed to open " << mountpoint << " to install key";
249         return false;
250     }
251 
252     if (ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, arg) != 0) {
253         PLOG(ERROR) << "Failed to install fscrypt key to " << mountpoint;
254         return false;
255     }
256 
257     return true;
258 }
259 
installKey(const std::string & mountpoint,const EncryptionOptions & options,const KeyBuffer & key,EncryptionPolicy * policy)260 bool installKey(const std::string& mountpoint, const EncryptionOptions& options,
261                 const KeyBuffer& key, EncryptionPolicy* policy) {
262     policy->options = options;
263     // Put the fscrypt_add_key_arg in an automatically-zeroing buffer, since we
264     // have to copy the raw key into it.
265     KeyBuffer arg_buf(sizeof(struct fscrypt_add_key_arg) + key.size(), 0);
266     struct fscrypt_add_key_arg* arg = (struct fscrypt_add_key_arg*)arg_buf.data();
267 
268     // Initialize the "key specifier", which is like a name for the key.
269     switch (options.version) {
270         case 1:
271             // A key for a v1 policy is specified by an arbitrary 8-byte
272             // "descriptor", which must be provided by userspace.  We use the
273             // first 8 bytes from the double SHA-512 of the key itself.
274             policy->key_raw_ref = generateKeyRef((const uint8_t*)key.data(), key.size());
275             if (!isFsKeyringSupported()) {
276                 return installKeyLegacy(key, policy->key_raw_ref);
277             }
278             if (!buildKeySpecifier(&arg->key_spec, *policy)) {
279                 return false;
280             }
281             break;
282         case 2:
283             // A key for a v2 policy is specified by an 16-byte "identifier",
284             // which is a cryptographic hash of the key itself which the kernel
285             // computes and returns.  Any user-provided value is ignored; we
286             // just need to set the specifier type to indicate that we're adding
287             // this type of key.
288             arg->key_spec.type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
289             break;
290         default:
291             LOG(ERROR) << "Invalid encryption policy version: " << options.version;
292             return false;
293     }
294 
295     arg->raw_size = key.size();
296     memcpy(arg->raw, key.data(), key.size());
297 
298     if (!installFsKeyringKey(mountpoint, options, arg)) return false;
299 
300     if (arg->key_spec.type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) {
301         // Retrieve the key identifier that the kernel computed.
302         policy->key_raw_ref =
303                 std::string((char*)arg->key_spec.u.identifier, FSCRYPT_KEY_IDENTIFIER_SIZE);
304     }
305     std::string ref = keyrefstring(policy->key_raw_ref);
306     LOG(DEBUG) << "Installed fscrypt key with ref " << ref << " to " << mountpoint;
307 
308     if (!installProvisioningKey(key, ref, arg->key_spec)) return false;
309     return true;
310 }
311 
312 // Remove an encryption key of type "logon" from the global session keyring.
evictKeyLegacy(const std::string & raw_ref)313 static bool evictKeyLegacy(const std::string& raw_ref) {
314     key_serial_t device_keyring;
315     if (!fscryptKeyring(&device_keyring)) return false;
316     bool success = true;
317     for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
318         auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
319         auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
320 
321         // Unlink the key from the keyring.  Prefer unlinking to revoking or
322         // invalidating, since unlinking is actually no less secure currently, and
323         // it avoids bugs in certain kernel versions where the keyring key is
324         // referenced from places it shouldn't be.
325         if (keyctl_unlink(key_serial, device_keyring) != 0) {
326             PLOG(ERROR) << "Failed to unlink key with serial " << key_serial << " ref " << ref;
327             success = false;
328         } else {
329             LOG(DEBUG) << "Unlinked key with serial " << key_serial << " ref " << ref;
330         }
331     }
332     return success;
333 }
334 
evictProvisioningKey(const std::string & ref)335 static bool evictProvisioningKey(const std::string& ref) {
336     key_serial_t device_keyring;
337     if (!fscryptKeyring(&device_keyring)) {
338         return false;
339     }
340 
341     auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0);
342     if (key_serial == -1 && errno != ENOKEY) {
343         PLOG(ERROR) << "Error searching session keyring for fscrypt-provisioning key for " << ref;
344         return false;
345     }
346 
347     if (key_serial != -1 && keyctl_unlink(key_serial, device_keyring) != 0) {
348         PLOG(ERROR) << "Failed to unlink fscrypt-provisioning key for " << ref
349                     << " from session keyring";
350         return false;
351     }
352     return true;
353 }
354 
evictKey(const std::string & mountpoint,const EncryptionPolicy & policy)355 bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy) {
356     if (policy.options.version == 1 && !isFsKeyringSupported()) {
357         return evictKeyLegacy(policy.key_raw_ref);
358     }
359 
360     android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
361     if (fd == -1) {
362         PLOG(ERROR) << "Failed to open " << mountpoint << " to evict key";
363         return false;
364     }
365 
366     struct fscrypt_remove_key_arg arg;
367     memset(&arg, 0, sizeof(arg));
368 
369     if (!buildKeySpecifier(&arg.key_spec, policy)) {
370         return false;
371     }
372 
373     std::string ref = keyrefstring(policy.key_raw_ref);
374 
375     if (ioctl(fd, FS_IOC_REMOVE_ENCRYPTION_KEY, &arg) != 0) {
376         PLOG(ERROR) << "Failed to evict fscrypt key with ref " << ref << " from " << mountpoint;
377         return false;
378     }
379 
380     LOG(DEBUG) << "Evicted fscrypt key with ref " << ref << " from " << mountpoint;
381     if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS) {
382         // Should never happen because keys are only added/removed as root.
383         LOG(ERROR) << "Unexpected case: key with ref " << ref << " is still added by other users!";
384     } else if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY) {
385         LOG(ERROR) << "Files still open after removing key with ref " << ref
386                    << ".  These files were not locked!";
387     }
388 
389     if (!evictProvisioningKey(ref)) return false;
390     return true;
391 }
392 
retrieveOrGenerateKey(const std::string & key_path,const std::string & tmp_path,const KeyAuthentication & key_authentication,const KeyGeneration & gen,KeyBuffer * key,bool keepOld)393 bool retrieveOrGenerateKey(const std::string& key_path, const std::string& tmp_path,
394                            const KeyAuthentication& key_authentication, const KeyGeneration& gen,
395                            KeyBuffer* key, bool keepOld) {
396     if (pathExists(key_path)) {
397         LOG(DEBUG) << "Key exists, using: " << key_path;
398         if (!retrieveKey(key_path, key_authentication, key, keepOld)) return false;
399     } else {
400         if (!gen.allow_gen) {
401             LOG(ERROR) << "No key found in " << key_path;
402             return false;
403         }
404         LOG(INFO) << "Creating new key in " << key_path;
405         if (!generateStorageKey(gen, key)) return false;
406         if (!storeKeyAtomically(key_path, tmp_path, key_authentication, *key)) return false;
407     }
408     return true;
409 }
410 
reloadKeyFromSessionKeyring(const std::string & mountpoint,const EncryptionPolicy & policy)411 bool reloadKeyFromSessionKeyring(const std::string& mountpoint, const EncryptionPolicy& policy) {
412     key_serial_t device_keyring;
413     if (!fscryptKeyring(&device_keyring)) {
414         return false;
415     }
416 
417     std::string ref = keyrefstring(policy.key_raw_ref);
418     auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0);
419     if (key_serial == -1) {
420         PLOG(ERROR) << "Failed to find fscrypt-provisioning key for " << ref
421                     << " in session keyring";
422         return false;
423     }
424 
425     LOG(DEBUG) << "Installing fscrypt-provisioning key for " << ref << " back into " << mountpoint
426                << " fs-keyring";
427 
428     struct fscrypt_add_key_arg arg;
429     memset(&arg, 0, sizeof(arg));
430     if (!buildKeySpecifier(&arg.key_spec, policy)) return false;
431     arg.key_id = key_serial;
432     if (!installFsKeyringKey(mountpoint, policy.options, &arg)) return false;
433 
434     return true;
435 }
436 
437 }  // namespace vold
438 }  // namespace android
439