blob: 57a97b38a2fa2c87e5a252d61a8f562f18c55bd3 [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>
13#include <linux/fscrypto.h>
Eric Biggersba63f232016-09-08 14:20:38 -070014#include <linux/mount.h>
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070015
16static int inode_has_encryption_context(struct inode *inode)
17{
18 if (!inode->i_sb->s_cop->get_context)
19 return 0;
20 return (inode->i_sb->s_cop->get_context(inode, NULL, 0L) > 0);
21}
22
23/*
24 * check whether the policy is consistent with the encryption context
25 * for the inode
26 */
27static int is_encryption_context_consistent_with_policy(struct inode *inode,
28 const struct fscrypt_policy *policy)
29{
30 struct fscrypt_context ctx;
31 int res;
32
33 if (!inode->i_sb->s_cop->get_context)
34 return 0;
35
36 res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
37 if (res != sizeof(ctx))
38 return 0;
39
40 return (memcmp(ctx.master_key_descriptor, policy->master_key_descriptor,
41 FS_KEY_DESCRIPTOR_SIZE) == 0 &&
42 (ctx.flags == policy->flags) &&
43 (ctx.contents_encryption_mode ==
44 policy->contents_encryption_mode) &&
45 (ctx.filenames_encryption_mode ==
46 policy->filenames_encryption_mode));
47}
48
49static int create_encryption_context_from_policy(struct inode *inode,
50 const struct fscrypt_policy *policy)
51{
52 struct fscrypt_context ctx;
53 int res;
54
55 if (!inode->i_sb->s_cop->set_context)
56 return -EOPNOTSUPP;
57
58 if (inode->i_sb->s_cop->prepare_context) {
59 res = inode->i_sb->s_cop->prepare_context(inode);
60 if (res)
61 return res;
62 }
63
64 ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
65 memcpy(ctx.master_key_descriptor, policy->master_key_descriptor,
66 FS_KEY_DESCRIPTOR_SIZE);
67
68 if (!fscrypt_valid_contents_enc_mode(
69 policy->contents_encryption_mode)) {
70 printk(KERN_WARNING
71 "%s: Invalid contents encryption mode %d\n", __func__,
72 policy->contents_encryption_mode);
73 return -EINVAL;
74 }
75
76 if (!fscrypt_valid_filenames_enc_mode(
77 policy->filenames_encryption_mode)) {
78 printk(KERN_WARNING
79 "%s: Invalid filenames encryption mode %d\n", __func__,
80 policy->filenames_encryption_mode);
81 return -EINVAL;
82 }
83
84 if (policy->flags & ~FS_POLICY_FLAGS_VALID)
85 return -EINVAL;
86
87 ctx.contents_encryption_mode = policy->contents_encryption_mode;
88 ctx.filenames_encryption_mode = policy->filenames_encryption_mode;
89 ctx.flags = policy->flags;
90 BUILD_BUG_ON(sizeof(ctx.nonce) != FS_KEY_DERIVATION_NONCE_SIZE);
91 get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
92
93 return inode->i_sb->s_cop->set_context(inode, &ctx, sizeof(ctx), NULL);
94}
95
Eric Biggersba63f232016-09-08 14:20:38 -070096int fscrypt_process_policy(struct file *filp,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070097 const struct fscrypt_policy *policy)
98{
Eric Biggersba63f232016-09-08 14:20:38 -070099 struct inode *inode = file_inode(filp);
100 int ret;
101
Eric Biggers163ae1c2016-09-08 10:57:08 -0700102 if (!inode_owner_or_capable(inode))
103 return -EACCES;
104
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700105 if (policy->version != 0)
106 return -EINVAL;
107
Eric Biggersba63f232016-09-08 14:20:38 -0700108 ret = mnt_want_write_file(filp);
109 if (ret)
110 return ret;
111
Eric Biggers8906a822016-10-15 09:48:50 -0400112 inode_lock(inode);
113
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700114 if (!inode_has_encryption_context(inode)) {
Eric Biggers002ced42016-09-08 11:36:39 -0700115 if (!S_ISDIR(inode->i_mode))
Eric Biggersd3d5e692016-12-05 11:12:45 -0800116 ret = -ENOTDIR;
Hongjie Fange722fb72019-05-22 10:02:53 +0800117 else if (IS_DEADDIR(inode))
118 ret = -ENOENT;
Eric Biggersba63f232016-09-08 14:20:38 -0700119 else if (!inode->i_sb->s_cop->empty_dir)
120 ret = -EOPNOTSUPP;
121 else if (!inode->i_sb->s_cop->empty_dir(inode))
122 ret = -ENOTEMPTY;
123 else
124 ret = create_encryption_context_from_policy(inode,
125 policy);
126 } else if (!is_encryption_context_consistent_with_policy(inode,
127 policy)) {
128 printk(KERN_WARNING
129 "%s: Policy inconsistent with encryption context\n",
130 __func__);
131 ret = -EINVAL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700132 }
133
Eric Biggers8906a822016-10-15 09:48:50 -0400134 inode_unlock(inode);
135
Eric Biggersba63f232016-09-08 14:20:38 -0700136 mnt_drop_write_file(filp);
137 return ret;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700138}
139EXPORT_SYMBOL(fscrypt_process_policy);
140
141int fscrypt_get_policy(struct inode *inode, struct fscrypt_policy *policy)
142{
143 struct fscrypt_context ctx;
144 int res;
145
146 if (!inode->i_sb->s_cop->get_context ||
147 !inode->i_sb->s_cop->is_encrypted(inode))
148 return -ENODATA;
149
150 res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
151 if (res != sizeof(ctx))
152 return -ENODATA;
153 if (ctx.format != FS_ENCRYPTION_CONTEXT_FORMAT_V1)
154 return -EINVAL;
155
156 policy->version = 0;
157 policy->contents_encryption_mode = ctx.contents_encryption_mode;
158 policy->filenames_encryption_mode = ctx.filenames_encryption_mode;
159 policy->flags = ctx.flags;
160 memcpy(&policy->master_key_descriptor, ctx.master_key_descriptor,
161 FS_KEY_DESCRIPTOR_SIZE);
162 return 0;
163}
164EXPORT_SYMBOL(fscrypt_get_policy);
165
Eric Biggers64a599a2017-04-07 10:58:37 -0700166/**
167 * fscrypt_has_permitted_context() - is a file's encryption policy permitted
168 * within its directory?
169 *
170 * @parent: inode for parent directory
171 * @child: inode for file being looked up, opened, or linked into @parent
172 *
173 * Filesystems must call this before permitting access to an inode in a
174 * situation where the parent directory is encrypted (either before allowing
175 * ->lookup() to succeed, or for a regular file before allowing it to be opened)
176 * and before any operation that involves linking an inode into an encrypted
177 * directory, including link, rename, and cross rename. It enforces the
178 * constraint that within a given encrypted directory tree, all files use the
179 * same encryption policy. The pre-access check is needed to detect potentially
180 * malicious offline violations of this constraint, while the link and rename
181 * checks are needed to prevent online violations of this constraint.
182 *
183 * Return: 1 if permitted, 0 if forbidden. If forbidden, the caller must fail
184 * the filesystem operation with EPERM.
185 */
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700186int fscrypt_has_permitted_context(struct inode *parent, struct inode *child)
187{
Eric Biggers64a599a2017-04-07 10:58:37 -0700188 const struct fscrypt_operations *cops = parent->i_sb->s_cop;
189 const struct fscrypt_info *parent_ci, *child_ci;
190 struct fscrypt_context parent_ctx, child_ctx;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700191 int res;
192
Eric Biggersd259b682016-12-19 14:20:13 -0800193 /* No restrictions on file types which are never encrypted */
194 if (!S_ISREG(child->i_mode) && !S_ISDIR(child->i_mode) &&
195 !S_ISLNK(child->i_mode))
196 return 1;
197
Eric Biggers64a599a2017-04-07 10:58:37 -0700198 /* No restrictions if the parent directory is unencrypted */
199 if (!cops->is_encrypted(parent))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700200 return 1;
Eric Biggers64a599a2017-04-07 10:58:37 -0700201
202 /* Encrypted directories must not contain unencrypted files */
203 if (!cops->is_encrypted(child))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700204 return 0;
Eric Biggers64a599a2017-04-07 10:58:37 -0700205
206 /*
207 * Both parent and child are encrypted, so verify they use the same
208 * encryption policy. Compare the fscrypt_info structs if the keys are
209 * available, otherwise retrieve and compare the fscrypt_contexts.
210 *
211 * Note that the fscrypt_context retrieval will be required frequently
212 * when accessing an encrypted directory tree without the key.
213 * Performance-wise this is not a big deal because we already don't
214 * really optimize for file access without the key (to the extent that
215 * such access is even possible), given that any attempted access
216 * already causes a fscrypt_context retrieval and keyring search.
217 *
218 * In any case, if an unexpected error occurs, fall back to "forbidden".
219 */
220
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700221 res = fscrypt_get_encryption_info(parent);
222 if (res)
223 return 0;
224 res = fscrypt_get_encryption_info(child);
225 if (res)
226 return 0;
227 parent_ci = parent->i_crypt_info;
228 child_ci = child->i_crypt_info;
Eric Biggers64a599a2017-04-07 10:58:37 -0700229
230 if (parent_ci && child_ci) {
231 return memcmp(parent_ci->ci_master_key, child_ci->ci_master_key,
232 FS_KEY_DESCRIPTOR_SIZE) == 0 &&
233 (parent_ci->ci_data_mode == child_ci->ci_data_mode) &&
234 (parent_ci->ci_filename_mode ==
235 child_ci->ci_filename_mode) &&
236 (parent_ci->ci_flags == child_ci->ci_flags);
237 }
238
239 res = cops->get_context(parent, &parent_ctx, sizeof(parent_ctx));
240 if (res != sizeof(parent_ctx))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700241 return 0;
242
Eric Biggers64a599a2017-04-07 10:58:37 -0700243 res = cops->get_context(child, &child_ctx, sizeof(child_ctx));
244 if (res != sizeof(child_ctx))
245 return 0;
246
247 return memcmp(parent_ctx.master_key_descriptor,
248 child_ctx.master_key_descriptor,
249 FS_KEY_DESCRIPTOR_SIZE) == 0 &&
250 (parent_ctx.contents_encryption_mode ==
251 child_ctx.contents_encryption_mode) &&
252 (parent_ctx.filenames_encryption_mode ==
253 child_ctx.filenames_encryption_mode) &&
254 (parent_ctx.flags == child_ctx.flags);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700255}
256EXPORT_SYMBOL(fscrypt_has_permitted_context);
257
258/**
259 * fscrypt_inherit_context() - Sets a child context from its parent
260 * @parent: Parent inode from which the context is inherited.
261 * @child: Child inode that inherits the context from @parent.
262 * @fs_data: private data given by FS.
263 * @preload: preload child i_crypt_info
264 *
265 * Return: Zero on success, non-zero otherwise
266 */
267int fscrypt_inherit_context(struct inode *parent, struct inode *child,
268 void *fs_data, bool preload)
269{
270 struct fscrypt_context ctx;
271 struct fscrypt_info *ci;
272 int res;
273
274 if (!parent->i_sb->s_cop->set_context)
275 return -EOPNOTSUPP;
276
277 res = fscrypt_get_encryption_info(parent);
278 if (res < 0)
279 return res;
280
281 ci = parent->i_crypt_info;
282 if (ci == NULL)
283 return -ENOKEY;
284
285 ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
286 if (fscrypt_dummy_context_enabled(parent)) {
287 ctx.contents_encryption_mode = FS_ENCRYPTION_MODE_AES_256_XTS;
288 ctx.filenames_encryption_mode = FS_ENCRYPTION_MODE_AES_256_CTS;
289 ctx.flags = 0;
290 memset(ctx.master_key_descriptor, 0x42, FS_KEY_DESCRIPTOR_SIZE);
291 res = 0;
292 } else {
293 ctx.contents_encryption_mode = ci->ci_data_mode;
294 ctx.filenames_encryption_mode = ci->ci_filename_mode;
295 ctx.flags = ci->ci_flags;
296 memcpy(ctx.master_key_descriptor, ci->ci_master_key,
297 FS_KEY_DESCRIPTOR_SIZE);
298 }
299 get_random_bytes(ctx.nonce, FS_KEY_DERIVATION_NONCE_SIZE);
300 res = parent->i_sb->s_cop->set_context(child, &ctx,
301 sizeof(ctx), fs_data);
302 if (res)
303 return res;
304 return preload ? fscrypt_get_encryption_info(child): 0;
305}
306EXPORT_SYMBOL(fscrypt_inherit_context);