blob: 3da9b257f2f78f999bc6badbbe750b47760feb0b [file] [log] [blame]
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07001/*
2 * Encryption policy functions for per-file encryption support.
3 *
4 * Copyright (C) 2015, Google, Inc.
5 * Copyright (C) 2015, Motorola Mobility.
6 *
7 * Written by Michael Halcrow, 2015.
8 * Modified by Jaegeuk Kim, 2015.
9 */
10
11#include <linux/random.h>
12#include <linux/string.h>
Eric Biggersba63f232016-09-08 14:20:38 -070013#include <linux/mount.h>
Hyojun Kim63da4202017-10-06 17:10:08 -070014#include "fscrypt_private.h"
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070015
16/*
Hyojun Kim63da4202017-10-06 17:10:08 -070017 * check whether an encryption policy is consistent with an encryption context
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070018 */
Hyojun Kim63da4202017-10-06 17:10:08 -070019static bool is_encryption_context_consistent_with_policy(
20 const struct fscrypt_context *ctx,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070021 const struct fscrypt_policy *policy)
22{
Hyojun Kim63da4202017-10-06 17:10:08 -070023 return memcmp(ctx->master_key_descriptor, policy->master_key_descriptor,
24 FS_KEY_DESCRIPTOR_SIZE) == 0 &&
25 (ctx->flags == policy->flags) &&
26 (ctx->contents_encryption_mode ==
27 policy->contents_encryption_mode) &&
28 (ctx->filenames_encryption_mode ==
29 policy->filenames_encryption_mode);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070030}
31
32static int create_encryption_context_from_policy(struct inode *inode,
33 const struct fscrypt_policy *policy)
34{
35 struct fscrypt_context ctx;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070036
37 ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
38 memcpy(ctx.master_key_descriptor, policy->master_key_descriptor,
39 FS_KEY_DESCRIPTOR_SIZE);
40
Hyojun Kim63da4202017-10-06 17:10:08 -070041 if (!fscrypt_valid_enc_modes(policy->contents_encryption_mode,
42 policy->filenames_encryption_mode))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070043 return -EINVAL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070044
45 if (policy->flags & ~FS_POLICY_FLAGS_VALID)
46 return -EINVAL;
47
48 ctx.contents_encryption_mode = policy->contents_encryption_mode;
49 ctx.filenames_encryption_mode = policy->filenames_encryption_mode;
50 ctx.flags = policy->flags;
51 BUILD_BUG_ON(sizeof(ctx.nonce) != FS_KEY_DERIVATION_NONCE_SIZE);
52 get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
53
54 return inode->i_sb->s_cop->set_context(inode, &ctx, sizeof(ctx), NULL);
55}
56
Hyojun Kim63da4202017-10-06 17:10:08 -070057int fscrypt_ioctl_set_policy(struct file *filp, const void __user *arg)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070058{
Hyojun Kim63da4202017-10-06 17:10:08 -070059 struct fscrypt_policy policy;
Eric Biggersba63f232016-09-08 14:20:38 -070060 struct inode *inode = file_inode(filp);
61 int ret;
Hyojun Kim63da4202017-10-06 17:10:08 -070062 struct fscrypt_context ctx;
63
64 if (copy_from_user(&policy, arg, sizeof(policy)))
65 return -EFAULT;
Eric Biggersba63f232016-09-08 14:20:38 -070066
Eric Biggers163ae1c2016-09-08 10:57:08 -070067 if (!inode_owner_or_capable(inode))
68 return -EACCES;
69
Hyojun Kim63da4202017-10-06 17:10:08 -070070 if (policy.version != 0)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070071 return -EINVAL;
72
Eric Biggersba63f232016-09-08 14:20:38 -070073 ret = mnt_want_write_file(filp);
74 if (ret)
75 return ret;
76
Eric Biggers8906a822016-10-15 09:48:50 -040077 inode_lock(inode);
78
Hyojun Kim63da4202017-10-06 17:10:08 -070079 ret = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
80 if (ret == -ENODATA) {
Eric Biggers002ced42016-09-08 11:36:39 -070081 if (!S_ISDIR(inode->i_mode))
Hyojun Kim63da4202017-10-06 17:10:08 -070082 ret = -ENOTDIR;
Hongjie Fange722fb72019-05-22 10:02:53 +080083 else if (IS_DEADDIR(inode))
84 ret = -ENOENT;
Eric Biggersba63f232016-09-08 14:20:38 -070085 else if (!inode->i_sb->s_cop->empty_dir(inode))
86 ret = -ENOTEMPTY;
87 else
88 ret = create_encryption_context_from_policy(inode,
Hyojun Kim63da4202017-10-06 17:10:08 -070089 &policy);
90 } else if (ret == sizeof(ctx) &&
91 is_encryption_context_consistent_with_policy(&ctx,
92 &policy)) {
93 /* The file already uses the same encryption policy. */
94 ret = 0;
95 } else if (ret >= 0 || ret == -ERANGE) {
96 /* The file already uses a different encryption policy. */
97 ret = -EEXIST;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070098 }
99
Eric Biggers8906a822016-10-15 09:48:50 -0400100 inode_unlock(inode);
101
Eric Biggersba63f232016-09-08 14:20:38 -0700102 mnt_drop_write_file(filp);
103 return ret;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700104}
Hyojun Kim63da4202017-10-06 17:10:08 -0700105EXPORT_SYMBOL(fscrypt_ioctl_set_policy);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700106
Hyojun Kim63da4202017-10-06 17:10:08 -0700107int fscrypt_ioctl_get_policy(struct file *filp, void __user *arg)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700108{
Hyojun Kim63da4202017-10-06 17:10:08 -0700109 struct inode *inode = file_inode(filp);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700110 struct fscrypt_context ctx;
Hyojun Kim63da4202017-10-06 17:10:08 -0700111 struct fscrypt_policy policy;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700112 int res;
113
Jaegeuk Kim8dec0742017-06-22 12:14:40 -0700114 if (!IS_ENCRYPTED(inode))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700115 return -ENODATA;
116
117 res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
Hyojun Kim63da4202017-10-06 17:10:08 -0700118 if (res < 0 && res != -ERANGE)
119 return res;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700120 if (res != sizeof(ctx))
Hyojun Kim63da4202017-10-06 17:10:08 -0700121 return -EINVAL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700122 if (ctx.format != FS_ENCRYPTION_CONTEXT_FORMAT_V1)
123 return -EINVAL;
124
Hyojun Kim63da4202017-10-06 17:10:08 -0700125 policy.version = 0;
126 policy.contents_encryption_mode = ctx.contents_encryption_mode;
127 policy.filenames_encryption_mode = ctx.filenames_encryption_mode;
128 policy.flags = ctx.flags;
129 memcpy(policy.master_key_descriptor, ctx.master_key_descriptor,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700130 FS_KEY_DESCRIPTOR_SIZE);
Hyojun Kim63da4202017-10-06 17:10:08 -0700131
132 if (copy_to_user(arg, &policy, sizeof(policy)))
133 return -EFAULT;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700134 return 0;
135}
Hyojun Kim63da4202017-10-06 17:10:08 -0700136EXPORT_SYMBOL(fscrypt_ioctl_get_policy);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700137
Eric Biggers64a599a2017-04-07 10:58:37 -0700138/**
139 * fscrypt_has_permitted_context() - is a file's encryption policy permitted
140 * within its directory?
141 *
142 * @parent: inode for parent directory
143 * @child: inode for file being looked up, opened, or linked into @parent
144 *
145 * Filesystems must call this before permitting access to an inode in a
146 * situation where the parent directory is encrypted (either before allowing
147 * ->lookup() to succeed, or for a regular file before allowing it to be opened)
148 * and before any operation that involves linking an inode into an encrypted
149 * directory, including link, rename, and cross rename. It enforces the
150 * constraint that within a given encrypted directory tree, all files use the
151 * same encryption policy. The pre-access check is needed to detect potentially
152 * malicious offline violations of this constraint, while the link and rename
153 * checks are needed to prevent online violations of this constraint.
154 *
155 * Return: 1 if permitted, 0 if forbidden. If forbidden, the caller must fail
156 * the filesystem operation with EPERM.
157 */
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700158int fscrypt_has_permitted_context(struct inode *parent, struct inode *child)
159{
Eric Biggers64a599a2017-04-07 10:58:37 -0700160 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 Kim0b81d072015-05-15 16:26:10 -0700163 int res;
164
Eric Biggersd259b682016-12-19 14:20:13 -0800165 /* 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 Biggers64a599a2017-04-07 10:58:37 -0700170 /* No restrictions if the parent directory is unencrypted */
Jaegeuk Kim8dec0742017-06-22 12:14:40 -0700171 if (!IS_ENCRYPTED(parent))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700172 return 1;
Eric Biggers64a599a2017-04-07 10:58:37 -0700173
174 /* Encrypted directories must not contain unencrypted files */
Jaegeuk Kim8dec0742017-06-22 12:14:40 -0700175 if (!IS_ENCRYPTED(child))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700176 return 0;
Eric Biggers64a599a2017-04-07 10:58:37 -0700177
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 Kim0b81d072015-05-15 16:26:10 -0700193 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;
199 parent_ci = parent->i_crypt_info;
200 child_ci = child->i_crypt_info;
Eric Biggers64a599a2017-04-07 10:58:37 -0700201
202 if (parent_ci && child_ci) {
Eric Biggerse33fa312018-11-26 11:27:37 -0800203 return memcmp(parent_ci->ci_master_key_descriptor,
204 child_ci->ci_master_key_descriptor,
Eric Biggers64a599a2017-04-07 10:58:37 -0700205 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 Kim0b81d072015-05-15 16:26:10 -0700214 return 0;
215
Eric Biggers64a599a2017-04-07 10:58:37 -0700216 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 Kim0b81d072015-05-15 16:26:10 -0700228}
229EXPORT_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.
Hyojun Kim63da4202017-10-06 17:10:08 -0700236 * @preload: preload child i_crypt_info if true
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700237 *
Hyojun Kim63da4202017-10-06 17:10:08 -0700238 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700239 */
240int 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 Kim0b81d072015-05-15 16:26:10 -0700247 res = fscrypt_get_encryption_info(parent);
248 if (res < 0)
249 return res;
250
251 ci = parent->i_crypt_info;
252 if (ci == NULL)
253 return -ENOKEY;
254
255 ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
Hyojun Kim63da4202017-10-06 17:10:08 -0700256 ctx.contents_encryption_mode = ci->ci_data_mode;
257 ctx.filenames_encryption_mode = ci->ci_filename_mode;
258 ctx.flags = ci->ci_flags;
Eric Biggerse33fa312018-11-26 11:27:37 -0800259 memcpy(ctx.master_key_descriptor, ci->ci_master_key_descriptor,
Hyojun Kim63da4202017-10-06 17:10:08 -0700260 FS_KEY_DESCRIPTOR_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700261 get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
262 res = parent->i_sb->s_cop->set_context(child, &ctx,
263 sizeof(ctx), fs_data);
264 if (res)
265 return res;
266 return preload ? fscrypt_get_encryption_info(child): 0;
267}
268EXPORT_SYMBOL(fscrypt_inherit_context);