Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Encryption policy functions for per-file encryption support. |
| 4 | * |
| 5 | * Copyright (C) 2015, Google, Inc. |
| 6 | * Copyright (C) 2015, Motorola Mobility. |
| 7 | * |
| 8 | * Written by Michael Halcrow, 2015. |
| 9 | * Modified by Jaegeuk Kim, 2015. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/random.h> |
| 13 | #include <linux/string.h> |
Eric Biggers | ba63f23 | 2016-09-08 14:20:38 -0700 | [diff] [blame] | 14 | #include <linux/mount.h> |
Theodore Ts'o | cc4e0df | 2016-11-26 22:05:18 -0500 | [diff] [blame] | 15 | #include "fscrypt_private.h" |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 16 | |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 17 | /* |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 18 | * check whether an encryption policy is consistent with an encryption context |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 19 | */ |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 20 | static bool is_encryption_context_consistent_with_policy( |
| 21 | const struct fscrypt_context *ctx, |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 22 | const struct fscrypt_policy *policy) |
| 23 | { |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 24 | return memcmp(ctx->master_key_descriptor, policy->master_key_descriptor, |
| 25 | FS_KEY_DESCRIPTOR_SIZE) == 0 && |
| 26 | (ctx->flags == policy->flags) && |
| 27 | (ctx->contents_encryption_mode == |
| 28 | policy->contents_encryption_mode) && |
| 29 | (ctx->filenames_encryption_mode == |
| 30 | policy->filenames_encryption_mode); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | static int create_encryption_context_from_policy(struct inode *inode, |
| 34 | const struct fscrypt_policy *policy) |
| 35 | { |
| 36 | struct fscrypt_context ctx; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 37 | |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 38 | ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1; |
| 39 | memcpy(ctx.master_key_descriptor, policy->master_key_descriptor, |
| 40 | FS_KEY_DESCRIPTOR_SIZE); |
| 41 | |
Daniel Walter | b7e7cf7 | 2017-06-19 09:27:58 +0200 | [diff] [blame] | 42 | if (!fscrypt_valid_enc_modes(policy->contents_encryption_mode, |
| 43 | policy->filenames_encryption_mode)) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 44 | return -EINVAL; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 45 | |
| 46 | if (policy->flags & ~FS_POLICY_FLAGS_VALID) |
| 47 | return -EINVAL; |
| 48 | |
| 49 | ctx.contents_encryption_mode = policy->contents_encryption_mode; |
| 50 | ctx.filenames_encryption_mode = policy->filenames_encryption_mode; |
| 51 | ctx.flags = policy->flags; |
| 52 | BUILD_BUG_ON(sizeof(ctx.nonce) != FS_KEY_DERIVATION_NONCE_SIZE); |
| 53 | get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE); |
| 54 | |
| 55 | return inode->i_sb->s_cop->set_context(inode, &ctx, sizeof(ctx), NULL); |
| 56 | } |
| 57 | |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 58 | int fscrypt_ioctl_set_policy(struct file *filp, const void __user *arg) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 59 | { |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 60 | struct fscrypt_policy policy; |
Eric Biggers | ba63f23 | 2016-09-08 14:20:38 -0700 | [diff] [blame] | 61 | struct inode *inode = file_inode(filp); |
| 62 | int ret; |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 63 | struct fscrypt_context ctx; |
Eric Biggers | ba63f23 | 2016-09-08 14:20:38 -0700 | [diff] [blame] | 64 | |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 65 | if (copy_from_user(&policy, arg, sizeof(policy))) |
| 66 | return -EFAULT; |
| 67 | |
Eric Biggers | 163ae1c | 2016-09-08 10:57:08 -0700 | [diff] [blame] | 68 | if (!inode_owner_or_capable(inode)) |
| 69 | return -EACCES; |
| 70 | |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 71 | if (policy.version != 0) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 72 | return -EINVAL; |
| 73 | |
Eric Biggers | ba63f23 | 2016-09-08 14:20:38 -0700 | [diff] [blame] | 74 | ret = mnt_want_write_file(filp); |
| 75 | if (ret) |
| 76 | return ret; |
| 77 | |
Eric Biggers | 8906a82 | 2016-10-15 09:48:50 -0400 | [diff] [blame] | 78 | inode_lock(inode); |
| 79 | |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 80 | ret = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx)); |
| 81 | if (ret == -ENODATA) { |
Eric Biggers | 002ced4 | 2016-09-08 11:36:39 -0700 | [diff] [blame] | 82 | if (!S_ISDIR(inode->i_mode)) |
Eric Biggers | dffd0cf | 2016-12-05 11:12:45 -0800 | [diff] [blame] | 83 | ret = -ENOTDIR; |
Hongjie Fang | 5858bda | 2019-05-22 10:02:53 +0800 | [diff] [blame] | 84 | else if (IS_DEADDIR(inode)) |
| 85 | ret = -ENOENT; |
Eric Biggers | ba63f23 | 2016-09-08 14:20:38 -0700 | [diff] [blame] | 86 | else if (!inode->i_sb->s_cop->empty_dir(inode)) |
| 87 | ret = -ENOTEMPTY; |
| 88 | else |
| 89 | ret = create_encryption_context_from_policy(inode, |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 90 | &policy); |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 91 | } else if (ret == sizeof(ctx) && |
| 92 | is_encryption_context_consistent_with_policy(&ctx, |
| 93 | &policy)) { |
| 94 | /* The file already uses the same encryption policy. */ |
| 95 | ret = 0; |
| 96 | } else if (ret >= 0 || ret == -ERANGE) { |
| 97 | /* The file already uses a different encryption policy. */ |
Eric Biggers | 8488cd9 | 2016-12-05 11:12:46 -0800 | [diff] [blame] | 98 | ret = -EEXIST; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Eric Biggers | 8906a82 | 2016-10-15 09:48:50 -0400 | [diff] [blame] | 101 | inode_unlock(inode); |
| 102 | |
Eric Biggers | ba63f23 | 2016-09-08 14:20:38 -0700 | [diff] [blame] | 103 | mnt_drop_write_file(filp); |
| 104 | return ret; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 105 | } |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 106 | EXPORT_SYMBOL(fscrypt_ioctl_set_policy); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 107 | |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 108 | int fscrypt_ioctl_get_policy(struct file *filp, void __user *arg) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 109 | { |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 110 | struct inode *inode = file_inode(filp); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 111 | struct fscrypt_context ctx; |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 112 | struct fscrypt_policy policy; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 113 | int res; |
| 114 | |
Eric Biggers | e0428a2 | 2017-10-09 12:15:36 -0700 | [diff] [blame] | 115 | if (!IS_ENCRYPTED(inode)) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 116 | return -ENODATA; |
| 117 | |
| 118 | res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx)); |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 119 | if (res < 0 && res != -ERANGE) |
| 120 | return res; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 121 | if (res != sizeof(ctx)) |
Eric Biggers | efee590e | 2016-12-05 11:12:48 -0800 | [diff] [blame] | 122 | return -EINVAL; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 123 | if (ctx.format != FS_ENCRYPTION_CONTEXT_FORMAT_V1) |
| 124 | return -EINVAL; |
| 125 | |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 126 | policy.version = 0; |
| 127 | policy.contents_encryption_mode = ctx.contents_encryption_mode; |
| 128 | policy.filenames_encryption_mode = ctx.filenames_encryption_mode; |
| 129 | policy.flags = ctx.flags; |
| 130 | memcpy(policy.master_key_descriptor, ctx.master_key_descriptor, |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 131 | FS_KEY_DESCRIPTOR_SIZE); |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 132 | |
| 133 | if (copy_to_user(arg, &policy, sizeof(policy))) |
| 134 | return -EFAULT; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 135 | return 0; |
| 136 | } |
Eric Biggers | db717d8 | 2016-11-26 19:07:49 -0500 | [diff] [blame] | 137 | EXPORT_SYMBOL(fscrypt_ioctl_get_policy); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 138 | |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 139 | /** |
| 140 | * fscrypt_has_permitted_context() - is a file's encryption policy permitted |
| 141 | * within its directory? |
| 142 | * |
| 143 | * @parent: inode for parent directory |
| 144 | * @child: inode for file being looked up, opened, or linked into @parent |
| 145 | * |
| 146 | * Filesystems must call this before permitting access to an inode in a |
| 147 | * situation where the parent directory is encrypted (either before allowing |
| 148 | * ->lookup() to succeed, or for a regular file before allowing it to be opened) |
| 149 | * and before any operation that involves linking an inode into an encrypted |
| 150 | * directory, including link, rename, and cross rename. It enforces the |
| 151 | * constraint that within a given encrypted directory tree, all files use the |
| 152 | * same encryption policy. The pre-access check is needed to detect potentially |
| 153 | * malicious offline violations of this constraint, while the link and rename |
| 154 | * checks are needed to prevent online violations of this constraint. |
| 155 | * |
Eric Biggers | f5e55e7 | 2019-01-22 16:20:21 -0800 | [diff] [blame] | 156 | * Return: 1 if permitted, 0 if forbidden. |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 157 | */ |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 158 | int fscrypt_has_permitted_context(struct inode *parent, struct inode *child) |
| 159 | { |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 160 | const struct fscrypt_operations *cops = parent->i_sb->s_cop; |
| 161 | const struct fscrypt_info *parent_ci, *child_ci; |
| 162 | struct fscrypt_context parent_ctx, child_ctx; |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 163 | int res; |
| 164 | |
Eric Biggers | 42d97eb | 2016-12-19 14:20:13 -0800 | [diff] [blame] | 165 | /* No restrictions on file types which are never encrypted */ |
| 166 | if (!S_ISREG(child->i_mode) && !S_ISDIR(child->i_mode) && |
| 167 | !S_ISLNK(child->i_mode)) |
| 168 | return 1; |
| 169 | |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 170 | /* No restrictions if the parent directory is unencrypted */ |
Eric Biggers | e0428a2 | 2017-10-09 12:15:36 -0700 | [diff] [blame] | 171 | if (!IS_ENCRYPTED(parent)) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 172 | return 1; |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 173 | |
| 174 | /* Encrypted directories must not contain unencrypted files */ |
Eric Biggers | e0428a2 | 2017-10-09 12:15:36 -0700 | [diff] [blame] | 175 | if (!IS_ENCRYPTED(child)) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 176 | return 0; |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 177 | |
| 178 | /* |
| 179 | * Both parent and child are encrypted, so verify they use the same |
| 180 | * encryption policy. Compare the fscrypt_info structs if the keys are |
| 181 | * available, otherwise retrieve and compare the fscrypt_contexts. |
| 182 | * |
| 183 | * Note that the fscrypt_context retrieval will be required frequently |
| 184 | * when accessing an encrypted directory tree without the key. |
| 185 | * Performance-wise this is not a big deal because we already don't |
| 186 | * really optimize for file access without the key (to the extent that |
| 187 | * such access is even possible), given that any attempted access |
| 188 | * already causes a fscrypt_context retrieval and keyring search. |
| 189 | * |
| 190 | * In any case, if an unexpected error occurs, fall back to "forbidden". |
| 191 | */ |
| 192 | |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 193 | res = fscrypt_get_encryption_info(parent); |
| 194 | if (res) |
| 195 | return 0; |
| 196 | res = fscrypt_get_encryption_info(child); |
| 197 | if (res) |
| 198 | return 0; |
Eric Biggers | e37a784 | 2019-04-11 14:32:15 -0700 | [diff] [blame] | 199 | parent_ci = READ_ONCE(parent->i_crypt_info); |
| 200 | child_ci = READ_ONCE(child->i_crypt_info); |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 201 | |
| 202 | if (parent_ci && child_ci) { |
Eric Biggers | 8094c3c | 2019-01-06 08:36:21 -0500 | [diff] [blame] | 203 | return memcmp(parent_ci->ci_master_key_descriptor, |
| 204 | child_ci->ci_master_key_descriptor, |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 205 | FS_KEY_DESCRIPTOR_SIZE) == 0 && |
| 206 | (parent_ci->ci_data_mode == child_ci->ci_data_mode) && |
| 207 | (parent_ci->ci_filename_mode == |
| 208 | child_ci->ci_filename_mode) && |
| 209 | (parent_ci->ci_flags == child_ci->ci_flags); |
| 210 | } |
| 211 | |
| 212 | res = cops->get_context(parent, &parent_ctx, sizeof(parent_ctx)); |
| 213 | if (res != sizeof(parent_ctx)) |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 214 | return 0; |
| 215 | |
Eric Biggers | 272f98f | 2017-04-07 10:58:37 -0700 | [diff] [blame] | 216 | res = cops->get_context(child, &child_ctx, sizeof(child_ctx)); |
| 217 | if (res != sizeof(child_ctx)) |
| 218 | return 0; |
| 219 | |
| 220 | return memcmp(parent_ctx.master_key_descriptor, |
| 221 | child_ctx.master_key_descriptor, |
| 222 | FS_KEY_DESCRIPTOR_SIZE) == 0 && |
| 223 | (parent_ctx.contents_encryption_mode == |
| 224 | child_ctx.contents_encryption_mode) && |
| 225 | (parent_ctx.filenames_encryption_mode == |
| 226 | child_ctx.filenames_encryption_mode) && |
| 227 | (parent_ctx.flags == child_ctx.flags); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 228 | } |
| 229 | EXPORT_SYMBOL(fscrypt_has_permitted_context); |
| 230 | |
| 231 | /** |
| 232 | * fscrypt_inherit_context() - Sets a child context from its parent |
| 233 | * @parent: Parent inode from which the context is inherited. |
| 234 | * @child: Child inode that inherits the context from @parent. |
| 235 | * @fs_data: private data given by FS. |
Theodore Ts'o | 5bbdcbb | 2017-01-02 15:12:17 -0500 | [diff] [blame] | 236 | * @preload: preload child i_crypt_info if true |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 237 | * |
Theodore Ts'o | 5bbdcbb | 2017-01-02 15:12:17 -0500 | [diff] [blame] | 238 | * Return: 0 on success, -errno on failure |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 239 | */ |
| 240 | int fscrypt_inherit_context(struct inode *parent, struct inode *child, |
| 241 | void *fs_data, bool preload) |
| 242 | { |
| 243 | struct fscrypt_context ctx; |
| 244 | struct fscrypt_info *ci; |
| 245 | int res; |
| 246 | |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 247 | res = fscrypt_get_encryption_info(parent); |
| 248 | if (res < 0) |
| 249 | return res; |
| 250 | |
Eric Biggers | e37a784 | 2019-04-11 14:32:15 -0700 | [diff] [blame] | 251 | ci = READ_ONCE(parent->i_crypt_info); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 252 | if (ci == NULL) |
| 253 | return -ENOKEY; |
| 254 | |
| 255 | ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1; |
Theodore Ts'o | 5bbdcbb | 2017-01-02 15:12:17 -0500 | [diff] [blame] | 256 | ctx.contents_encryption_mode = ci->ci_data_mode; |
| 257 | ctx.filenames_encryption_mode = ci->ci_filename_mode; |
| 258 | ctx.flags = ci->ci_flags; |
Eric Biggers | 8094c3c | 2019-01-06 08:36:21 -0500 | [diff] [blame] | 259 | memcpy(ctx.master_key_descriptor, ci->ci_master_key_descriptor, |
Theodore Ts'o | 5bbdcbb | 2017-01-02 15:12:17 -0500 | [diff] [blame] | 260 | FS_KEY_DESCRIPTOR_SIZE); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 261 | get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE); |
Tahsin Erdogan | af65207 | 2017-07-06 00:01:59 -0400 | [diff] [blame] | 262 | BUILD_BUG_ON(sizeof(ctx) != FSCRYPT_SET_CONTEXT_MAX_SIZE); |
Jaegeuk Kim | 0b81d07 | 2015-05-15 16:26:10 -0700 | [diff] [blame] | 263 | res = parent->i_sb->s_cop->set_context(child, &ctx, |
| 264 | sizeof(ctx), fs_data); |
| 265 | if (res) |
| 266 | return res; |
| 267 | return preload ? fscrypt_get_encryption_info(child): 0; |
| 268 | } |
| 269 | EXPORT_SYMBOL(fscrypt_inherit_context); |