1 // SPDX-License-Identifier: GPL-2.0
3 * Filesystem-level keyring for fscrypt
5 * Copyright 2019 Google LLC
9 * This file implements management of fscrypt master keys in the
10 * filesystem-level keyring, including the ioctls:
12 * - FS_IOC_ADD_ENCRYPTION_KEY
13 * - FS_IOC_REMOVE_ENCRYPTION_KEY
14 * - FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS
15 * - FS_IOC_GET_ENCRYPTION_KEY_STATUS
17 * See the "User API" section of Documentation/filesystems/fscrypt.rst for more
18 * information about these ioctls.
21 #include <crypto/skcipher.h>
22 #include <linux/key-type.h>
23 #include <linux/random.h>
24 #include <linux/seq_file.h>
26 #include "fscrypt_private.h"
28 static void wipe_master_key_secret(struct fscrypt_master_key_secret *secret)
30 fscrypt_destroy_hkdf(&secret->hkdf);
31 memzero_explicit(secret, sizeof(*secret));
34 static void move_master_key_secret(struct fscrypt_master_key_secret *dst,
35 struct fscrypt_master_key_secret *src)
37 memcpy(dst, src, sizeof(*dst));
38 memzero_explicit(src, sizeof(*src));
41 static void free_master_key(struct fscrypt_master_key *mk)
45 wipe_master_key_secret(&mk->mk_secret);
47 for (i = 0; i <= FSCRYPT_MODE_MAX; i++) {
48 fscrypt_destroy_prepared_key(&mk->mk_direct_keys[i]);
49 fscrypt_destroy_prepared_key(&mk->mk_iv_ino_lblk_64_keys[i]);
50 fscrypt_destroy_prepared_key(&mk->mk_iv_ino_lblk_32_keys[i]);
53 key_put(mk->mk_users);
57 static inline bool valid_key_spec(const struct fscrypt_key_specifier *spec)
61 return master_key_spec_len(spec) != 0;
64 static int fscrypt_key_instantiate(struct key *key,
65 struct key_preparsed_payload *prep)
67 key->payload.data[0] = (struct fscrypt_master_key *)prep->data;
71 static void fscrypt_key_destroy(struct key *key)
73 free_master_key(key->payload.data[0]);
76 static void fscrypt_key_describe(const struct key *key, struct seq_file *m)
78 seq_puts(m, key->description);
80 if (key_is_positive(key)) {
81 const struct fscrypt_master_key *mk = key->payload.data[0];
83 if (!is_master_key_secret_present(&mk->mk_secret))
84 seq_puts(m, ": secret removed");
89 * Type of key in ->s_master_keys. Each key of this type represents a master
90 * key which has been added to the filesystem. Its payload is a
91 * 'struct fscrypt_master_key'. The "." prefix in the key type name prevents
92 * users from adding keys of this type via the keyrings syscalls rather than via
93 * the intended method of FS_IOC_ADD_ENCRYPTION_KEY.
95 static struct key_type key_type_fscrypt = {
97 .instantiate = fscrypt_key_instantiate,
98 .destroy = fscrypt_key_destroy,
99 .describe = fscrypt_key_describe,
102 static int fscrypt_user_key_instantiate(struct key *key,
103 struct key_preparsed_payload *prep)
106 * We just charge FSCRYPT_MAX_KEY_SIZE bytes to the user's key quota for
107 * each key, regardless of the exact key size. The amount of memory
108 * actually used is greater than the size of the raw key anyway.
110 return key_payload_reserve(key, FSCRYPT_MAX_KEY_SIZE);
113 static void fscrypt_user_key_describe(const struct key *key, struct seq_file *m)
115 seq_puts(m, key->description);
119 * Type of key in ->mk_users. Each key of this type represents a particular
120 * user who has added a particular master key.
122 * Note that the name of this key type really should be something like
123 * ".fscrypt-user" instead of simply ".fscrypt". But the shorter name is chosen
124 * mainly for simplicity of presentation in /proc/keys when read by a non-root
125 * user. And it is expected to be rare that a key is actually added by multiple
126 * users, since users should keep their encryption keys confidential.
128 static struct key_type key_type_fscrypt_user = {
130 .instantiate = fscrypt_user_key_instantiate,
131 .describe = fscrypt_user_key_describe,
134 /* Search ->s_master_keys or ->mk_users */
135 static struct key *search_fscrypt_keyring(struct key *keyring,
136 struct key_type *type,
137 const char *description)
140 * We need to mark the keyring reference as "possessed" so that we
141 * acquire permission to search it, via the KEY_POS_SEARCH permission.
143 key_ref_t keyref = make_key_ref(keyring, true /* possessed */);
145 keyref = keyring_search(keyref, type, description, false);
146 if (IS_ERR(keyref)) {
147 if (PTR_ERR(keyref) == -EAGAIN || /* not found */
148 PTR_ERR(keyref) == -EKEYREVOKED) /* recently invalidated */
149 keyref = ERR_PTR(-ENOKEY);
150 return ERR_CAST(keyref);
152 return key_ref_to_ptr(keyref);
155 #define FSCRYPT_FS_KEYRING_DESCRIPTION_SIZE \
156 (CONST_STRLEN("fscrypt-") + sizeof_field(struct super_block, s_id))
158 #define FSCRYPT_MK_DESCRIPTION_SIZE (2 * FSCRYPT_KEY_IDENTIFIER_SIZE + 1)
160 #define FSCRYPT_MK_USERS_DESCRIPTION_SIZE \
161 (CONST_STRLEN("fscrypt-") + 2 * FSCRYPT_KEY_IDENTIFIER_SIZE + \
162 CONST_STRLEN("-users") + 1)
164 #define FSCRYPT_MK_USER_DESCRIPTION_SIZE \
165 (2 * FSCRYPT_KEY_IDENTIFIER_SIZE + CONST_STRLEN(".uid.") + 10 + 1)
167 static void format_fs_keyring_description(
168 char description[FSCRYPT_FS_KEYRING_DESCRIPTION_SIZE],
169 const struct super_block *sb)
171 sprintf(description, "fscrypt-%s", sb->s_id);
174 static void format_mk_description(
175 char description[FSCRYPT_MK_DESCRIPTION_SIZE],
176 const struct fscrypt_key_specifier *mk_spec)
178 sprintf(description, "%*phN",
179 master_key_spec_len(mk_spec), (u8 *)&mk_spec->u);
182 static void format_mk_users_keyring_description(
183 char description[FSCRYPT_MK_USERS_DESCRIPTION_SIZE],
184 const u8 mk_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE])
186 sprintf(description, "fscrypt-%*phN-users",
187 FSCRYPT_KEY_IDENTIFIER_SIZE, mk_identifier);
190 static void format_mk_user_description(
191 char description[FSCRYPT_MK_USER_DESCRIPTION_SIZE],
192 const u8 mk_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE])
195 sprintf(description, "%*phN.uid.%u", FSCRYPT_KEY_IDENTIFIER_SIZE,
196 mk_identifier, __kuid_val(current_fsuid()));
199 /* Create ->s_master_keys if needed. Synchronized by fscrypt_add_key_mutex. */
200 static int allocate_filesystem_keyring(struct super_block *sb)
202 char description[FSCRYPT_FS_KEYRING_DESCRIPTION_SIZE];
205 if (sb->s_master_keys)
208 format_fs_keyring_description(description, sb);
209 keyring = keyring_alloc(description, GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
210 current_cred(), KEY_POS_SEARCH |
211 KEY_USR_SEARCH | KEY_USR_READ | KEY_USR_VIEW,
212 KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
214 return PTR_ERR(keyring);
217 * Pairs with the smp_load_acquire() in fscrypt_find_master_key().
218 * I.e., here we publish ->s_master_keys with a RELEASE barrier so that
219 * concurrent tasks can ACQUIRE it.
221 smp_store_release(&sb->s_master_keys, keyring);
225 void fscrypt_sb_free(struct super_block *sb)
227 key_put(sb->s_master_keys);
228 sb->s_master_keys = NULL;
232 * Find the specified master key in ->s_master_keys.
233 * Returns ERR_PTR(-ENOKEY) if not found.
235 struct key *fscrypt_find_master_key(struct super_block *sb,
236 const struct fscrypt_key_specifier *mk_spec)
239 char description[FSCRYPT_MK_DESCRIPTION_SIZE];
242 * Pairs with the smp_store_release() in allocate_filesystem_keyring().
243 * I.e., another task can publish ->s_master_keys concurrently,
244 * executing a RELEASE barrier. We need to use smp_load_acquire() here
245 * to safely ACQUIRE the memory the other task published.
247 keyring = smp_load_acquire(&sb->s_master_keys);
249 return ERR_PTR(-ENOKEY); /* No keyring yet, so no keys yet. */
251 format_mk_description(description, mk_spec);
252 return search_fscrypt_keyring(keyring, &key_type_fscrypt, description);
255 static int allocate_master_key_users_keyring(struct fscrypt_master_key *mk)
257 char description[FSCRYPT_MK_USERS_DESCRIPTION_SIZE];
260 format_mk_users_keyring_description(description,
261 mk->mk_spec.u.identifier);
262 keyring = keyring_alloc(description, GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
263 current_cred(), KEY_POS_SEARCH |
264 KEY_USR_SEARCH | KEY_USR_READ | KEY_USR_VIEW,
265 KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
267 return PTR_ERR(keyring);
269 mk->mk_users = keyring;
274 * Find the current user's "key" in the master key's ->mk_users.
275 * Returns ERR_PTR(-ENOKEY) if not found.
277 static struct key *find_master_key_user(struct fscrypt_master_key *mk)
279 char description[FSCRYPT_MK_USER_DESCRIPTION_SIZE];
281 format_mk_user_description(description, mk->mk_spec.u.identifier);
282 return search_fscrypt_keyring(mk->mk_users, &key_type_fscrypt_user,
287 * Give the current user a "key" in ->mk_users. This charges the user's quota
288 * and marks the master key as added by the current user, so that it cannot be
289 * removed by another user with the key. Either the master key's key->sem must
290 * be held for write, or the master key must be still undergoing initialization.
292 static int add_master_key_user(struct fscrypt_master_key *mk)
294 char description[FSCRYPT_MK_USER_DESCRIPTION_SIZE];
298 format_mk_user_description(description, mk->mk_spec.u.identifier);
299 mk_user = key_alloc(&key_type_fscrypt_user, description,
300 current_fsuid(), current_gid(), current_cred(),
301 KEY_POS_SEARCH | KEY_USR_VIEW, 0, NULL);
303 return PTR_ERR(mk_user);
305 err = key_instantiate_and_link(mk_user, NULL, 0, mk->mk_users, NULL);
311 * Remove the current user's "key" from ->mk_users.
312 * The master key's key->sem must be held for write.
314 * Returns 0 if removed, -ENOKEY if not found, or another -errno code.
316 static int remove_master_key_user(struct fscrypt_master_key *mk)
321 mk_user = find_master_key_user(mk);
323 return PTR_ERR(mk_user);
324 err = key_unlink(mk->mk_users, mk_user);
330 * Allocate a new fscrypt_master_key which contains the given secret, set it as
331 * the payload of a new 'struct key' of type fscrypt, and link the 'struct key'
332 * into the given keyring. Synchronized by fscrypt_add_key_mutex.
334 static int add_new_master_key(struct fscrypt_master_key_secret *secret,
335 const struct fscrypt_key_specifier *mk_spec,
338 struct fscrypt_master_key *mk;
339 char description[FSCRYPT_MK_DESCRIPTION_SIZE];
343 mk = kzalloc(sizeof(*mk), GFP_KERNEL);
347 mk->mk_spec = *mk_spec;
349 move_master_key_secret(&mk->mk_secret, secret);
351 refcount_set(&mk->mk_refcount, 1); /* secret is present */
352 INIT_LIST_HEAD(&mk->mk_decrypted_inodes);
353 spin_lock_init(&mk->mk_decrypted_inodes_lock);
355 if (mk_spec->type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) {
356 err = allocate_master_key_users_keyring(mk);
359 err = add_master_key_user(mk);
365 * Note that we don't charge this key to anyone's quota, since when
366 * ->mk_users is in use those keys are charged instead, and otherwise
367 * (when ->mk_users isn't in use) only root can add these keys.
369 format_mk_description(description, mk_spec);
370 key = key_alloc(&key_type_fscrypt, description,
371 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, current_cred(),
372 KEY_POS_SEARCH | KEY_USR_SEARCH | KEY_USR_VIEW,
373 KEY_ALLOC_NOT_IN_QUOTA, NULL);
378 err = key_instantiate_and_link(key, mk, sizeof(*mk), keyring, NULL);
392 static int add_existing_master_key(struct fscrypt_master_key *mk,
393 struct fscrypt_master_key_secret *secret)
400 * If the current user is already in ->mk_users, then there's nothing to
401 * do. (Not applicable for v1 policy keys, which have NULL ->mk_users.)
404 mk_user = find_master_key_user(mk);
405 if (mk_user != ERR_PTR(-ENOKEY)) {
407 return PTR_ERR(mk_user);
413 /* If we'll be re-adding ->mk_secret, try to take the reference. */
414 rekey = !is_master_key_secret_present(&mk->mk_secret);
415 if (rekey && !refcount_inc_not_zero(&mk->mk_refcount))
418 /* Add the current user to ->mk_users, if applicable. */
420 err = add_master_key_user(mk);
422 if (rekey && refcount_dec_and_test(&mk->mk_refcount))
428 /* Re-add the secret if needed. */
430 move_master_key_secret(&mk->mk_secret, secret);
434 static int do_add_master_key(struct super_block *sb,
435 struct fscrypt_master_key_secret *secret,
436 const struct fscrypt_key_specifier *mk_spec)
438 static DEFINE_MUTEX(fscrypt_add_key_mutex);
442 mutex_lock(&fscrypt_add_key_mutex); /* serialize find + link */
444 key = fscrypt_find_master_key(sb, mk_spec);
449 /* Didn't find the key in ->s_master_keys. Add it. */
450 err = allocate_filesystem_keyring(sb);
453 err = add_new_master_key(secret, mk_spec, sb->s_master_keys);
456 * Found the key in ->s_master_keys. Re-add the secret if
457 * needed, and add the user to ->mk_users if needed.
459 down_write(&key->sem);
460 err = add_existing_master_key(key->payload.data[0], secret);
462 if (err == KEY_DEAD) {
463 /* Key being removed or needs to be removed */
471 mutex_unlock(&fscrypt_add_key_mutex);
475 static int add_master_key(struct super_block *sb,
476 struct fscrypt_master_key_secret *secret,
477 struct fscrypt_key_specifier *key_spec)
481 if (key_spec->type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) {
482 err = fscrypt_init_hkdf(&secret->hkdf, secret->raw,
488 * Now that the HKDF context is initialized, the raw key is no
491 memzero_explicit(secret->raw, secret->size);
493 /* Calculate the key identifier */
494 err = fscrypt_hkdf_expand(&secret->hkdf,
495 HKDF_CONTEXT_KEY_IDENTIFIER, NULL, 0,
496 key_spec->u.identifier,
497 FSCRYPT_KEY_IDENTIFIER_SIZE);
501 return do_add_master_key(sb, secret, key_spec);
504 static int fscrypt_provisioning_key_preparse(struct key_preparsed_payload *prep)
506 const struct fscrypt_provisioning_key_payload *payload = prep->data;
508 if (prep->datalen < sizeof(*payload) + FSCRYPT_MIN_KEY_SIZE ||
509 prep->datalen > sizeof(*payload) + FSCRYPT_MAX_KEY_SIZE)
512 if (payload->type != FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR &&
513 payload->type != FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER)
516 if (payload->__reserved)
519 prep->payload.data[0] = kmemdup(payload, prep->datalen, GFP_KERNEL);
520 if (!prep->payload.data[0])
523 prep->quotalen = prep->datalen;
527 static void fscrypt_provisioning_key_free_preparse(
528 struct key_preparsed_payload *prep)
530 kfree_sensitive(prep->payload.data[0]);
533 static void fscrypt_provisioning_key_describe(const struct key *key,
536 seq_puts(m, key->description);
537 if (key_is_positive(key)) {
538 const struct fscrypt_provisioning_key_payload *payload =
539 key->payload.data[0];
541 seq_printf(m, ": %u [%u]", key->datalen, payload->type);
545 static void fscrypt_provisioning_key_destroy(struct key *key)
547 kfree_sensitive(key->payload.data[0]);
550 static struct key_type key_type_fscrypt_provisioning = {
551 .name = "fscrypt-provisioning",
552 .preparse = fscrypt_provisioning_key_preparse,
553 .free_preparse = fscrypt_provisioning_key_free_preparse,
554 .instantiate = generic_key_instantiate,
555 .describe = fscrypt_provisioning_key_describe,
556 .destroy = fscrypt_provisioning_key_destroy,
560 * Retrieve the raw key from the Linux keyring key specified by 'key_id', and
561 * store it into 'secret'.
563 * The key must be of type "fscrypt-provisioning" and must have the field
564 * fscrypt_provisioning_key_payload::type set to 'type', indicating that it's
565 * only usable with fscrypt with the particular KDF version identified by
566 * 'type'. We don't use the "logon" key type because there's no way to
567 * completely restrict the use of such keys; they can be used by any kernel API
568 * that accepts "logon" keys and doesn't require a specific service prefix.
570 * The ability to specify the key via Linux keyring key is intended for cases
571 * where userspace needs to re-add keys after the filesystem is unmounted and
572 * re-mounted. Most users should just provide the raw key directly instead.
574 static int get_keyring_key(u32 key_id, u32 type,
575 struct fscrypt_master_key_secret *secret)
579 const struct fscrypt_provisioning_key_payload *payload;
582 ref = lookup_user_key(key_id, 0, KEY_NEED_SEARCH);
585 key = key_ref_to_ptr(ref);
587 if (key->type != &key_type_fscrypt_provisioning)
589 payload = key->payload.data[0];
591 /* Don't allow fscrypt v1 keys to be used as v2 keys and vice versa. */
592 if (payload->type != type)
595 secret->size = key->datalen - sizeof(*payload);
596 memcpy(secret->raw, payload->raw, secret->size);
608 * Add a master encryption key to the filesystem, causing all files which were
609 * encrypted with it to appear "unlocked" (decrypted) when accessed.
611 * When adding a key for use by v1 encryption policies, this ioctl is
612 * privileged, and userspace must provide the 'key_descriptor'.
614 * When adding a key for use by v2+ encryption policies, this ioctl is
615 * unprivileged. This is needed, in general, to allow non-root users to use
616 * encryption without encountering the visibility problems of process-subscribed
617 * keyrings and the inability to properly remove keys. This works by having
618 * each key identified by its cryptographically secure hash --- the
619 * 'key_identifier'. The cryptographic hash ensures that a malicious user
620 * cannot add the wrong key for a given identifier. Furthermore, each added key
621 * is charged to the appropriate user's quota for the keyrings service, which
622 * prevents a malicious user from adding too many keys. Finally, we forbid a
623 * user from removing a key while other users have added it too, which prevents
624 * a user who knows another user's key from causing a denial-of-service by
625 * removing it at an inopportune time. (We tolerate that a user who knows a key
626 * can prevent other users from removing it.)
628 * For more details, see the "FS_IOC_ADD_ENCRYPTION_KEY" section of
629 * Documentation/filesystems/fscrypt.rst.
631 int fscrypt_ioctl_add_key(struct file *filp, void __user *_uarg)
633 struct super_block *sb = file_inode(filp)->i_sb;
634 struct fscrypt_add_key_arg __user *uarg = _uarg;
635 struct fscrypt_add_key_arg arg;
636 struct fscrypt_master_key_secret secret;
639 if (copy_from_user(&arg, uarg, sizeof(arg)))
642 if (!valid_key_spec(&arg.key_spec))
645 if (memchr_inv(arg.__reserved, 0, sizeof(arg.__reserved)))
649 * Only root can add keys that are identified by an arbitrary descriptor
650 * rather than by a cryptographic hash --- since otherwise a malicious
651 * user could add the wrong key.
653 if (arg.key_spec.type == FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR &&
654 !capable(CAP_SYS_ADMIN))
657 memset(&secret, 0, sizeof(secret));
659 if (arg.raw_size != 0)
661 err = get_keyring_key(arg.key_id, arg.key_spec.type, &secret);
663 goto out_wipe_secret;
665 if (arg.raw_size < FSCRYPT_MIN_KEY_SIZE ||
666 arg.raw_size > FSCRYPT_MAX_KEY_SIZE)
668 secret.size = arg.raw_size;
670 if (copy_from_user(secret.raw, uarg->raw, secret.size))
671 goto out_wipe_secret;
674 err = add_master_key(sb, &secret, &arg.key_spec);
676 goto out_wipe_secret;
678 /* Return the key identifier to userspace, if applicable */
680 if (arg.key_spec.type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER &&
681 copy_to_user(uarg->key_spec.u.identifier, arg.key_spec.u.identifier,
682 FSCRYPT_KEY_IDENTIFIER_SIZE))
683 goto out_wipe_secret;
686 wipe_master_key_secret(&secret);
689 EXPORT_SYMBOL_GPL(fscrypt_ioctl_add_key);
692 * Add the key for '-o test_dummy_encryption' to the filesystem keyring.
694 * Use a per-boot random key to prevent people from misusing this option.
696 int fscrypt_add_test_dummy_key(struct super_block *sb,
697 struct fscrypt_key_specifier *key_spec)
699 static u8 test_key[FSCRYPT_MAX_KEY_SIZE];
700 struct fscrypt_master_key_secret secret;
703 get_random_once(test_key, FSCRYPT_MAX_KEY_SIZE);
705 memset(&secret, 0, sizeof(secret));
706 secret.size = FSCRYPT_MAX_KEY_SIZE;
707 memcpy(secret.raw, test_key, FSCRYPT_MAX_KEY_SIZE);
709 err = add_master_key(sb, &secret, key_spec);
710 wipe_master_key_secret(&secret);
715 * Verify that the current user has added a master key with the given identifier
716 * (returns -ENOKEY if not). This is needed to prevent a user from encrypting
717 * their files using some other user's key which they don't actually know.
718 * Cryptographically this isn't much of a problem, but the semantics of this
719 * would be a bit weird, so it's best to just forbid it.
721 * The system administrator (CAP_FOWNER) can override this, which should be
722 * enough for any use cases where encryption policies are being set using keys
723 * that were chosen ahead of time but aren't available at the moment.
725 * Note that the key may have already removed by the time this returns, but
726 * that's okay; we just care whether the key was there at some point.
728 * Return: 0 if the key is added, -ENOKEY if it isn't, or another -errno code
730 int fscrypt_verify_key_added(struct super_block *sb,
731 const u8 identifier[FSCRYPT_KEY_IDENTIFIER_SIZE])
733 struct fscrypt_key_specifier mk_spec;
734 struct key *key, *mk_user;
735 struct fscrypt_master_key *mk;
738 mk_spec.type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
739 memcpy(mk_spec.u.identifier, identifier, FSCRYPT_KEY_IDENTIFIER_SIZE);
741 key = fscrypt_find_master_key(sb, &mk_spec);
746 mk = key->payload.data[0];
747 mk_user = find_master_key_user(mk);
748 if (IS_ERR(mk_user)) {
749 err = PTR_ERR(mk_user);
756 if (err == -ENOKEY && capable(CAP_FOWNER))
762 * Try to evict the inode's dentries from the dentry cache. If the inode is a
763 * directory, then it can have at most one dentry; however, that dentry may be
764 * pinned by child dentries, so first try to evict the children too.
766 static void shrink_dcache_inode(struct inode *inode)
768 struct dentry *dentry;
770 if (S_ISDIR(inode->i_mode)) {
771 dentry = d_find_any_alias(inode);
773 shrink_dcache_parent(dentry);
777 d_prune_aliases(inode);
780 static void evict_dentries_for_decrypted_inodes(struct fscrypt_master_key *mk)
782 struct fscrypt_info *ci;
784 struct inode *toput_inode = NULL;
786 spin_lock(&mk->mk_decrypted_inodes_lock);
788 list_for_each_entry(ci, &mk->mk_decrypted_inodes, ci_master_key_link) {
789 inode = ci->ci_inode;
790 spin_lock(&inode->i_lock);
791 if (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW)) {
792 spin_unlock(&inode->i_lock);
796 spin_unlock(&inode->i_lock);
797 spin_unlock(&mk->mk_decrypted_inodes_lock);
799 shrink_dcache_inode(inode);
803 spin_lock(&mk->mk_decrypted_inodes_lock);
806 spin_unlock(&mk->mk_decrypted_inodes_lock);
810 static int check_for_busy_inodes(struct super_block *sb,
811 struct fscrypt_master_key *mk)
813 struct list_head *pos;
814 size_t busy_count = 0;
816 char ino_str[50] = "";
818 spin_lock(&mk->mk_decrypted_inodes_lock);
820 list_for_each(pos, &mk->mk_decrypted_inodes)
823 if (busy_count == 0) {
824 spin_unlock(&mk->mk_decrypted_inodes_lock);
829 /* select an example file to show for debugging purposes */
830 struct inode *inode =
831 list_first_entry(&mk->mk_decrypted_inodes,
833 ci_master_key_link)->ci_inode;
836 spin_unlock(&mk->mk_decrypted_inodes_lock);
838 /* If the inode is currently being created, ino may still be 0. */
840 snprintf(ino_str, sizeof(ino_str), ", including ino %lu", ino);
843 "%s: %zu inode(s) still busy after removing key with %s %*phN%s",
844 sb->s_id, busy_count, master_key_spec_type(&mk->mk_spec),
845 master_key_spec_len(&mk->mk_spec), (u8 *)&mk->mk_spec.u,
850 static int try_to_lock_encrypted_files(struct super_block *sb,
851 struct fscrypt_master_key *mk)
857 * An inode can't be evicted while it is dirty or has dirty pages.
858 * Thus, we first have to clean the inodes in ->mk_decrypted_inodes.
860 * Just do it the easy way: call sync_filesystem(). It's overkill, but
861 * it works, and it's more important to minimize the amount of caches we
862 * drop than the amount of data we sync. Also, unprivileged users can
863 * already call sync_filesystem() via sys_syncfs() or sys_sync().
865 down_read(&sb->s_umount);
866 err1 = sync_filesystem(sb);
867 up_read(&sb->s_umount);
868 /* If a sync error occurs, still try to evict as much as possible. */
871 * Inodes are pinned by their dentries, so we have to evict their
872 * dentries. shrink_dcache_sb() would suffice, but would be overkill
873 * and inappropriate for use by unprivileged users. So instead go
874 * through the inodes' alias lists and try to evict each dentry.
876 evict_dentries_for_decrypted_inodes(mk);
879 * evict_dentries_for_decrypted_inodes() already iput() each inode in
880 * the list; any inodes for which that dropped the last reference will
881 * have been evicted due to fscrypt_drop_inode() detecting the key
882 * removal and telling the VFS to evict the inode. So to finish, we
883 * just need to check whether any inodes couldn't be evicted.
885 err2 = check_for_busy_inodes(sb, mk);
891 * Try to remove an fscrypt master encryption key.
893 * FS_IOC_REMOVE_ENCRYPTION_KEY (all_users=false) removes the current user's
894 * claim to the key, then removes the key itself if no other users have claims.
895 * FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS (all_users=true) always removes the
898 * To "remove the key itself", first we wipe the actual master key secret, so
899 * that no more inodes can be unlocked with it. Then we try to evict all cached
900 * inodes that had been unlocked with the key.
902 * If all inodes were evicted, then we unlink the fscrypt_master_key from the
903 * keyring. Otherwise it remains in the keyring in the "incompletely removed"
904 * state (without the actual secret key) where it tracks the list of remaining
905 * inodes. Userspace can execute the ioctl again later to retry eviction, or
906 * alternatively can re-add the secret key again.
908 * For more details, see the "Removing keys" section of
909 * Documentation/filesystems/fscrypt.rst.
911 static int do_remove_key(struct file *filp, void __user *_uarg, bool all_users)
913 struct super_block *sb = file_inode(filp)->i_sb;
914 struct fscrypt_remove_key_arg __user *uarg = _uarg;
915 struct fscrypt_remove_key_arg arg;
917 struct fscrypt_master_key *mk;
918 u32 status_flags = 0;
922 if (copy_from_user(&arg, uarg, sizeof(arg)))
925 if (!valid_key_spec(&arg.key_spec))
928 if (memchr_inv(arg.__reserved, 0, sizeof(arg.__reserved)))
932 * Only root can add and remove keys that are identified by an arbitrary
933 * descriptor rather than by a cryptographic hash.
935 if (arg.key_spec.type == FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR &&
936 !capable(CAP_SYS_ADMIN))
939 /* Find the key being removed. */
940 key = fscrypt_find_master_key(sb, &arg.key_spec);
943 mk = key->payload.data[0];
945 down_write(&key->sem);
947 /* If relevant, remove current user's (or all users) claim to the key */
948 if (mk->mk_users && mk->mk_users->keys.nr_leaves_on_tree != 0) {
950 err = keyring_clear(mk->mk_users);
952 err = remove_master_key_user(mk);
957 if (mk->mk_users->keys.nr_leaves_on_tree != 0) {
959 * Other users have still added the key too. We removed
960 * the current user's claim to the key, but we still
961 * can't remove the key itself.
964 FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS;
971 /* No user claims remaining. Go ahead and wipe the secret. */
973 if (is_master_key_secret_present(&mk->mk_secret)) {
974 wipe_master_key_secret(&mk->mk_secret);
975 dead = refcount_dec_and_test(&mk->mk_refcount);
980 * No inodes reference the key, and we wiped the secret, so the
981 * key object is free to be removed from the keyring.
986 /* Some inodes still reference this key; try to evict them. */
987 err = try_to_lock_encrypted_files(sb, mk);
990 FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY;
995 * We return 0 if we successfully did something: removed a claim to the
996 * key, wiped the secret, or tried locking the files again. Users need
997 * to check the informational status flags if they care whether the key
998 * has been fully removed including all files locked.
1003 err = put_user(status_flags, &uarg->removal_status_flags);
1007 int fscrypt_ioctl_remove_key(struct file *filp, void __user *uarg)
1009 return do_remove_key(filp, uarg, false);
1011 EXPORT_SYMBOL_GPL(fscrypt_ioctl_remove_key);
1013 int fscrypt_ioctl_remove_key_all_users(struct file *filp, void __user *uarg)
1015 if (!capable(CAP_SYS_ADMIN))
1017 return do_remove_key(filp, uarg, true);
1019 EXPORT_SYMBOL_GPL(fscrypt_ioctl_remove_key_all_users);
1022 * Retrieve the status of an fscrypt master encryption key.
1024 * We set ->status to indicate whether the key is absent, present, or
1025 * incompletely removed. "Incompletely removed" means that the master key
1026 * secret has been removed, but some files which had been unlocked with it are
1027 * still in use. This field allows applications to easily determine the state
1028 * of an encrypted directory without using a hack such as trying to open a
1029 * regular file in it (which can confuse the "incompletely removed" state with
1030 * absent or present).
1032 * In addition, for v2 policy keys we allow applications to determine, via
1033 * ->status_flags and ->user_count, whether the key has been added by the
1034 * current user, by other users, or by both. Most applications should not need
1035 * this, since ordinarily only one user should know a given key. However, if a
1036 * secret key is shared by multiple users, applications may wish to add an
1037 * already-present key to prevent other users from removing it. This ioctl can
1038 * be used to check whether that really is the case before the work is done to
1039 * add the key --- which might e.g. require prompting the user for a passphrase.
1041 * For more details, see the "FS_IOC_GET_ENCRYPTION_KEY_STATUS" section of
1042 * Documentation/filesystems/fscrypt.rst.
1044 int fscrypt_ioctl_get_key_status(struct file *filp, void __user *uarg)
1046 struct super_block *sb = file_inode(filp)->i_sb;
1047 struct fscrypt_get_key_status_arg arg;
1049 struct fscrypt_master_key *mk;
1052 if (copy_from_user(&arg, uarg, sizeof(arg)))
1055 if (!valid_key_spec(&arg.key_spec))
1058 if (memchr_inv(arg.__reserved, 0, sizeof(arg.__reserved)))
1061 arg.status_flags = 0;
1063 memset(arg.__out_reserved, 0, sizeof(arg.__out_reserved));
1065 key = fscrypt_find_master_key(sb, &arg.key_spec);
1067 if (key != ERR_PTR(-ENOKEY))
1068 return PTR_ERR(key);
1069 arg.status = FSCRYPT_KEY_STATUS_ABSENT;
1073 mk = key->payload.data[0];
1074 down_read(&key->sem);
1076 if (!is_master_key_secret_present(&mk->mk_secret)) {
1077 arg.status = FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED;
1079 goto out_release_key;
1082 arg.status = FSCRYPT_KEY_STATUS_PRESENT;
1084 struct key *mk_user;
1086 arg.user_count = mk->mk_users->keys.nr_leaves_on_tree;
1087 mk_user = find_master_key_user(mk);
1088 if (!IS_ERR(mk_user)) {
1090 FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF;
1092 } else if (mk_user != ERR_PTR(-ENOKEY)) {
1093 err = PTR_ERR(mk_user);
1094 goto out_release_key;
1102 if (!err && copy_to_user(uarg, &arg, sizeof(arg)))
1106 EXPORT_SYMBOL_GPL(fscrypt_ioctl_get_key_status);
1108 int __init fscrypt_init_keyring(void)
1112 err = register_key_type(&key_type_fscrypt);
1116 err = register_key_type(&key_type_fscrypt_user);
1118 goto err_unregister_fscrypt;
1120 err = register_key_type(&key_type_fscrypt_provisioning);
1122 goto err_unregister_fscrypt_user;
1126 err_unregister_fscrypt_user:
1127 unregister_key_type(&key_type_fscrypt_user);
1128 err_unregister_fscrypt:
1129 unregister_key_type(&key_type_fscrypt);