blob: fd4e5ae210777b53b4819d4e359f858d06f0c054 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Eric Biggersefcc7ae2017-10-09 12:15:40 -07002/*
3 * fs/crypto/hooks.c
4 *
5 * Encryption hooks for higher-level filesystem operations.
6 */
7
Eric Biggersefcc7ae2017-10-09 12:15:40 -07008#include "fscrypt_private.h"
9
10/**
11 * fscrypt_file_open - prepare to open a possibly-encrypted regular file
12 * @inode: the inode being opened
13 * @filp: the struct file being set up
14 *
15 * Currently, an encrypted regular file can only be opened if its encryption key
16 * is available; access to the raw encrypted contents is not supported.
17 * Therefore, we first set up the inode's encryption key (if not already done)
18 * and return an error if it's unavailable.
19 *
20 * We also verify that if the parent directory (from the path via which the file
21 * is being opened) is encrypted, then the inode being opened uses the same
22 * encryption policy. This is needed as part of the enforcement that all files
23 * in an encrypted directory tree use the same encryption policy, as a
24 * protection against certain types of offline attacks. Note that this check is
25 * needed even when opening an *unencrypted* file, since it's forbidden to have
26 * an unencrypted file in an encrypted directory.
27 *
28 * Return: 0 on success, -ENOKEY if the key is missing, or another -errno code
29 */
30int fscrypt_file_open(struct inode *inode, struct file *filp)
31{
32 int err;
33 struct dentry *dir;
34
35 err = fscrypt_require_key(inode);
36 if (err)
37 return err;
38
39 dir = dget_parent(file_dentry(filp));
40 if (IS_ENCRYPTED(d_inode(dir)) &&
41 !fscrypt_has_permitted_context(d_inode(dir), inode)) {
Eric Biggers886da8b2019-07-24 11:07:58 -070042 fscrypt_warn(inode,
43 "Inconsistent encryption context (parent directory: %lu)",
44 d_inode(dir)->i_ino);
Eric Biggersefcc7ae2017-10-09 12:15:40 -070045 err = -EPERM;
46 }
47 dput(dir);
48 return err;
49}
50EXPORT_SYMBOL_GPL(fscrypt_file_open);
Eric Biggers0ea87a92017-10-09 12:15:41 -070051
Eric Biggers968dd6d2019-03-20 11:39:10 -070052int __fscrypt_prepare_link(struct inode *inode, struct inode *dir,
53 struct dentry *dentry)
Eric Biggers0ea87a92017-10-09 12:15:41 -070054{
55 int err;
56
57 err = fscrypt_require_key(dir);
58 if (err)
59 return err;
60
Eric Biggers968dd6d2019-03-20 11:39:10 -070061 /* ... in case we looked up ciphertext name before key was added */
62 if (dentry->d_flags & DCACHE_ENCRYPTED_NAME)
63 return -ENOKEY;
64
Eric Biggers0ea87a92017-10-09 12:15:41 -070065 if (!fscrypt_has_permitted_context(dir, inode))
Eric Biggersf5e55e72019-01-22 16:20:21 -080066 return -EXDEV;
Eric Biggers0ea87a92017-10-09 12:15:41 -070067
68 return 0;
69}
70EXPORT_SYMBOL_GPL(__fscrypt_prepare_link);
Eric Biggers94b26f32017-10-09 12:15:42 -070071
72int __fscrypt_prepare_rename(struct inode *old_dir, struct dentry *old_dentry,
73 struct inode *new_dir, struct dentry *new_dentry,
74 unsigned int flags)
75{
76 int err;
77
78 err = fscrypt_require_key(old_dir);
79 if (err)
80 return err;
81
82 err = fscrypt_require_key(new_dir);
83 if (err)
84 return err;
85
Eric Biggers968dd6d2019-03-20 11:39:10 -070086 /* ... in case we looked up ciphertext name(s) before key was added */
87 if ((old_dentry->d_flags | new_dentry->d_flags) &
88 DCACHE_ENCRYPTED_NAME)
89 return -ENOKEY;
90
Eric Biggers94b26f32017-10-09 12:15:42 -070091 if (old_dir != new_dir) {
92 if (IS_ENCRYPTED(new_dir) &&
93 !fscrypt_has_permitted_context(new_dir,
94 d_inode(old_dentry)))
Eric Biggersf5e55e72019-01-22 16:20:21 -080095 return -EXDEV;
Eric Biggers94b26f32017-10-09 12:15:42 -070096
97 if ((flags & RENAME_EXCHANGE) &&
98 IS_ENCRYPTED(old_dir) &&
99 !fscrypt_has_permitted_context(old_dir,
100 d_inode(new_dentry)))
Eric Biggersf5e55e72019-01-22 16:20:21 -0800101 return -EXDEV;
Eric Biggers94b26f32017-10-09 12:15:42 -0700102 }
103 return 0;
104}
105EXPORT_SYMBOL_GPL(__fscrypt_prepare_rename);
Eric Biggers32c3cf02017-10-09 12:15:43 -0700106
Eric Biggersb01531d2019-03-20 11:39:13 -0700107int __fscrypt_prepare_lookup(struct inode *dir, struct dentry *dentry,
108 struct fscrypt_name *fname)
Eric Biggers32c3cf02017-10-09 12:15:43 -0700109{
Eric Biggersb01531d2019-03-20 11:39:13 -0700110 int err = fscrypt_setup_filename(dir, &dentry->d_name, 1, fname);
Eric Biggers32c3cf02017-10-09 12:15:43 -0700111
Eric Biggersb01531d2019-03-20 11:39:13 -0700112 if (err && err != -ENOENT)
Eric Biggers32c3cf02017-10-09 12:15:43 -0700113 return err;
114
Eric Biggersb01531d2019-03-20 11:39:13 -0700115 if (fname->is_ciphertext_name) {
Eric Biggers32c3cf02017-10-09 12:15:43 -0700116 spin_lock(&dentry->d_lock);
Eric Biggers6cc24862019-03-20 11:39:09 -0700117 dentry->d_flags |= DCACHE_ENCRYPTED_NAME;
Eric Biggers32c3cf02017-10-09 12:15:43 -0700118 spin_unlock(&dentry->d_lock);
Eric Biggersd456a332019-03-20 11:39:12 -0700119 d_set_d_op(dentry, &fscrypt_d_ops);
Eric Biggers32c3cf02017-10-09 12:15:43 -0700120 }
Eric Biggersb01531d2019-03-20 11:39:13 -0700121 return err;
Eric Biggers32c3cf02017-10-09 12:15:43 -0700122}
123EXPORT_SYMBOL_GPL(__fscrypt_prepare_lookup);
Eric Biggers76e81d62018-01-05 10:45:01 -0800124
Daniel Rosenberg6e1918c2020-01-20 14:31:56 -0800125/**
126 * fscrypt_prepare_setflags() - prepare to change flags with FS_IOC_SETFLAGS
127 * @inode: the inode on which flags are being changed
128 * @oldflags: the old flags
129 * @flags: the new flags
130 *
131 * The caller should be holding i_rwsem for write.
132 *
133 * Return: 0 on success; -errno if the flags change isn't allowed or if
134 * another error occurs.
135 */
136int fscrypt_prepare_setflags(struct inode *inode,
137 unsigned int oldflags, unsigned int flags)
138{
139 struct fscrypt_info *ci;
140 int err;
141
142 if (IS_ENCRYPTED(inode) && (flags & ~oldflags & FS_CASEFOLD_FL)) {
143 err = fscrypt_require_key(inode);
144 if (err)
145 return err;
146 ci = inode->i_crypt_info;
147 if (ci->ci_policy.version != FSCRYPT_POLICY_V2)
148 return -EINVAL;
149 }
150 return 0;
151}
152
Eric Biggers76e81d62018-01-05 10:45:01 -0800153int __fscrypt_prepare_symlink(struct inode *dir, unsigned int len,
154 unsigned int max_len,
155 struct fscrypt_str *disk_link)
156{
157 int err;
158
159 /*
160 * To calculate the size of the encrypted symlink target we need to know
161 * the amount of NUL padding, which is determined by the flags set in
162 * the encryption policy which will be inherited from the directory.
163 * The easiest way to get access to this is to just load the directory's
164 * fscrypt_info, since we'll need it to create the dir_entry anyway.
165 *
166 * Note: in test_dummy_encryption mode, @dir may be unencrypted.
167 */
168 err = fscrypt_get_encryption_info(dir);
169 if (err)
170 return err;
171 if (!fscrypt_has_encryption_key(dir))
172 return -ENOKEY;
173
174 /*
175 * Calculate the size of the encrypted symlink and verify it won't
176 * exceed max_len. Note that for historical reasons, encrypted symlink
177 * targets are prefixed with the ciphertext length, despite this
178 * actually being redundant with i_size. This decreases by 2 bytes the
179 * longest symlink target we can accept.
180 *
181 * We could recover 1 byte by not counting a null terminator, but
182 * counting it (even though it is meaningless for ciphertext) is simpler
183 * for now since filesystems will assume it is there and subtract it.
184 */
Eric Biggersb9db0b42018-01-11 23:30:08 -0500185 if (!fscrypt_fname_encrypted_size(dir, len,
186 max_len - sizeof(struct fscrypt_symlink_data),
187 &disk_link->len))
Eric Biggers76e81d62018-01-05 10:45:01 -0800188 return -ENAMETOOLONG;
Eric Biggersb9db0b42018-01-11 23:30:08 -0500189 disk_link->len += sizeof(struct fscrypt_symlink_data);
190
Eric Biggers76e81d62018-01-05 10:45:01 -0800191 disk_link->name = NULL;
192 return 0;
193}
194EXPORT_SYMBOL_GPL(__fscrypt_prepare_symlink);
195
196int __fscrypt_encrypt_symlink(struct inode *inode, const char *target,
197 unsigned int len, struct fscrypt_str *disk_link)
198{
199 int err;
Eric Biggers0b1dfa42018-01-19 13:45:24 -0800200 struct qstr iname = QSTR_INIT(target, len);
Eric Biggers76e81d62018-01-05 10:45:01 -0800201 struct fscrypt_symlink_data *sd;
202 unsigned int ciphertext_len;
Eric Biggers76e81d62018-01-05 10:45:01 -0800203
204 err = fscrypt_require_key(inode);
205 if (err)
206 return err;
207
208 if (disk_link->name) {
209 /* filesystem-provided buffer */
210 sd = (struct fscrypt_symlink_data *)disk_link->name;
211 } else {
212 sd = kmalloc(disk_link->len, GFP_NOFS);
213 if (!sd)
214 return -ENOMEM;
215 }
216 ciphertext_len = disk_link->len - sizeof(*sd);
217 sd->len = cpu_to_le16(ciphertext_len);
218
Eric Biggers1b3b8272020-01-19 23:17:36 -0800219 err = fscrypt_fname_encrypt(inode, &iname, sd->encrypted_path,
220 ciphertext_len);
Eric Biggers2c58d542019-04-10 13:21:15 -0700221 if (err)
222 goto err_free_sd;
223
Eric Biggers76e81d62018-01-05 10:45:01 -0800224 /*
225 * Null-terminating the ciphertext doesn't make sense, but we still
226 * count the null terminator in the length, so we might as well
227 * initialize it just in case the filesystem writes it out.
228 */
229 sd->encrypted_path[ciphertext_len] = '\0';
230
Eric Biggers2c58d542019-04-10 13:21:15 -0700231 /* Cache the plaintext symlink target for later use by get_link() */
232 err = -ENOMEM;
233 inode->i_link = kmemdup(target, len + 1, GFP_NOFS);
234 if (!inode->i_link)
235 goto err_free_sd;
236
Eric Biggers76e81d62018-01-05 10:45:01 -0800237 if (!disk_link->name)
238 disk_link->name = (unsigned char *)sd;
239 return 0;
Eric Biggers2c58d542019-04-10 13:21:15 -0700240
241err_free_sd:
242 if (!disk_link->name)
243 kfree(sd);
244 return err;
Eric Biggers76e81d62018-01-05 10:45:01 -0800245}
246EXPORT_SYMBOL_GPL(__fscrypt_encrypt_symlink);
Eric Biggers3b0d8832018-01-05 10:45:02 -0800247
248/**
249 * fscrypt_get_symlink - get the target of an encrypted symlink
250 * @inode: the symlink inode
251 * @caddr: the on-disk contents of the symlink
252 * @max_size: size of @caddr buffer
Eric Biggers2c58d542019-04-10 13:21:15 -0700253 * @done: if successful, will be set up to free the returned target if needed
Eric Biggers3b0d8832018-01-05 10:45:02 -0800254 *
255 * If the symlink's encryption key is available, we decrypt its target.
256 * Otherwise, we encode its target for presentation.
257 *
258 * This may sleep, so the filesystem must have dropped out of RCU mode already.
259 *
260 * Return: the presentable symlink target or an ERR_PTR()
261 */
262const char *fscrypt_get_symlink(struct inode *inode, const void *caddr,
263 unsigned int max_size,
264 struct delayed_call *done)
265{
266 const struct fscrypt_symlink_data *sd;
267 struct fscrypt_str cstr, pstr;
Eric Biggers2c58d542019-04-10 13:21:15 -0700268 bool has_key;
Eric Biggers3b0d8832018-01-05 10:45:02 -0800269 int err;
270
271 /* This is for encrypted symlinks only */
272 if (WARN_ON(!IS_ENCRYPTED(inode)))
273 return ERR_PTR(-EINVAL);
274
Eric Biggers2c58d542019-04-10 13:21:15 -0700275 /* If the decrypted target is already cached, just return it. */
276 pstr.name = READ_ONCE(inode->i_link);
277 if (pstr.name)
278 return pstr.name;
279
Eric Biggers3b0d8832018-01-05 10:45:02 -0800280 /*
281 * Try to set up the symlink's encryption key, but we can continue
282 * regardless of whether the key is available or not.
283 */
284 err = fscrypt_get_encryption_info(inode);
285 if (err)
286 return ERR_PTR(err);
Eric Biggers2c58d542019-04-10 13:21:15 -0700287 has_key = fscrypt_has_encryption_key(inode);
Eric Biggers3b0d8832018-01-05 10:45:02 -0800288
289 /*
290 * For historical reasons, encrypted symlink targets are prefixed with
291 * the ciphertext length, even though this is redundant with i_size.
292 */
293
294 if (max_size < sizeof(*sd))
295 return ERR_PTR(-EUCLEAN);
296 sd = caddr;
297 cstr.name = (unsigned char *)sd->encrypted_path;
298 cstr.len = le16_to_cpu(sd->len);
299
300 if (cstr.len == 0)
301 return ERR_PTR(-EUCLEAN);
302
303 if (cstr.len + sizeof(*sd) - 1 > max_size)
304 return ERR_PTR(-EUCLEAN);
305
306 err = fscrypt_fname_alloc_buffer(inode, cstr.len, &pstr);
307 if (err)
308 return ERR_PTR(err);
309
310 err = fscrypt_fname_disk_to_usr(inode, 0, 0, &cstr, &pstr);
311 if (err)
312 goto err_kfree;
313
314 err = -EUCLEAN;
315 if (pstr.name[0] == '\0')
316 goto err_kfree;
317
318 pstr.name[pstr.len] = '\0';
Eric Biggers2c58d542019-04-10 13:21:15 -0700319
320 /*
321 * Cache decrypted symlink targets in i_link for later use. Don't cache
322 * symlink targets encoded without the key, since those become outdated
323 * once the key is added. This pairs with the READ_ONCE() above and in
324 * the VFS path lookup code.
325 */
326 if (!has_key ||
327 cmpxchg_release(&inode->i_link, NULL, pstr.name) != NULL)
328 set_delayed_call(done, kfree_link, pstr.name);
329
Eric Biggers3b0d8832018-01-05 10:45:02 -0800330 return pstr.name;
331
332err_kfree:
333 kfree(pstr.name);
334 return ERR_PTR(err);
335}
336EXPORT_SYMBOL_GPL(fscrypt_get_symlink);