Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Eric Biggers | efcc7ae | 2017-10-09 12:15:40 -0700 | [diff] [blame] | 2 | /* |
| 3 | * fs/crypto/hooks.c |
| 4 | * |
| 5 | * Encryption hooks for higher-level filesystem operations. |
| 6 | */ |
| 7 | |
Eric Biggers | efcc7ae | 2017-10-09 12:15:40 -0700 | [diff] [blame] | 8 | #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 | */ |
| 30 | int 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 Biggers | 886da8b | 2019-07-24 11:07:58 -0700 | [diff] [blame] | 42 | fscrypt_warn(inode, |
| 43 | "Inconsistent encryption context (parent directory: %lu)", |
| 44 | d_inode(dir)->i_ino); |
Eric Biggers | efcc7ae | 2017-10-09 12:15:40 -0700 | [diff] [blame] | 45 | err = -EPERM; |
| 46 | } |
| 47 | dput(dir); |
| 48 | return err; |
| 49 | } |
| 50 | EXPORT_SYMBOL_GPL(fscrypt_file_open); |
Eric Biggers | 0ea87a9 | 2017-10-09 12:15:41 -0700 | [diff] [blame] | 51 | |
Eric Biggers | 968dd6d | 2019-03-20 11:39:10 -0700 | [diff] [blame] | 52 | int __fscrypt_prepare_link(struct inode *inode, struct inode *dir, |
| 53 | struct dentry *dentry) |
Eric Biggers | 0ea87a9 | 2017-10-09 12:15:41 -0700 | [diff] [blame] | 54 | { |
| 55 | int err; |
| 56 | |
| 57 | err = fscrypt_require_key(dir); |
| 58 | if (err) |
| 59 | return err; |
| 60 | |
Eric Biggers | 968dd6d | 2019-03-20 11:39:10 -0700 | [diff] [blame] | 61 | /* ... in case we looked up ciphertext name before key was added */ |
| 62 | if (dentry->d_flags & DCACHE_ENCRYPTED_NAME) |
| 63 | return -ENOKEY; |
| 64 | |
Eric Biggers | 0ea87a9 | 2017-10-09 12:15:41 -0700 | [diff] [blame] | 65 | if (!fscrypt_has_permitted_context(dir, inode)) |
Eric Biggers | f5e55e7 | 2019-01-22 16:20:21 -0800 | [diff] [blame] | 66 | return -EXDEV; |
Eric Biggers | 0ea87a9 | 2017-10-09 12:15:41 -0700 | [diff] [blame] | 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | EXPORT_SYMBOL_GPL(__fscrypt_prepare_link); |
Eric Biggers | 94b26f3 | 2017-10-09 12:15:42 -0700 | [diff] [blame] | 71 | |
| 72 | int __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 Biggers | 968dd6d | 2019-03-20 11:39:10 -0700 | [diff] [blame] | 86 | /* ... 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 Biggers | 94b26f3 | 2017-10-09 12:15:42 -0700 | [diff] [blame] | 91 | if (old_dir != new_dir) { |
| 92 | if (IS_ENCRYPTED(new_dir) && |
| 93 | !fscrypt_has_permitted_context(new_dir, |
| 94 | d_inode(old_dentry))) |
Eric Biggers | f5e55e7 | 2019-01-22 16:20:21 -0800 | [diff] [blame] | 95 | return -EXDEV; |
Eric Biggers | 94b26f3 | 2017-10-09 12:15:42 -0700 | [diff] [blame] | 96 | |
| 97 | if ((flags & RENAME_EXCHANGE) && |
| 98 | IS_ENCRYPTED(old_dir) && |
| 99 | !fscrypt_has_permitted_context(old_dir, |
| 100 | d_inode(new_dentry))) |
Eric Biggers | f5e55e7 | 2019-01-22 16:20:21 -0800 | [diff] [blame] | 101 | return -EXDEV; |
Eric Biggers | 94b26f3 | 2017-10-09 12:15:42 -0700 | [diff] [blame] | 102 | } |
| 103 | return 0; |
| 104 | } |
| 105 | EXPORT_SYMBOL_GPL(__fscrypt_prepare_rename); |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 106 | |
Eric Biggers | b01531d | 2019-03-20 11:39:13 -0700 | [diff] [blame] | 107 | int __fscrypt_prepare_lookup(struct inode *dir, struct dentry *dentry, |
| 108 | struct fscrypt_name *fname) |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 109 | { |
Eric Biggers | b01531d | 2019-03-20 11:39:13 -0700 | [diff] [blame] | 110 | int err = fscrypt_setup_filename(dir, &dentry->d_name, 1, fname); |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 111 | |
Eric Biggers | b01531d | 2019-03-20 11:39:13 -0700 | [diff] [blame] | 112 | if (err && err != -ENOENT) |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 113 | return err; |
| 114 | |
Eric Biggers | b01531d | 2019-03-20 11:39:13 -0700 | [diff] [blame] | 115 | if (fname->is_ciphertext_name) { |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 116 | spin_lock(&dentry->d_lock); |
Eric Biggers | 6cc2486 | 2019-03-20 11:39:09 -0700 | [diff] [blame] | 117 | dentry->d_flags |= DCACHE_ENCRYPTED_NAME; |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 118 | spin_unlock(&dentry->d_lock); |
Eric Biggers | d456a33 | 2019-03-20 11:39:12 -0700 | [diff] [blame] | 119 | d_set_d_op(dentry, &fscrypt_d_ops); |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 120 | } |
Eric Biggers | b01531d | 2019-03-20 11:39:13 -0700 | [diff] [blame] | 121 | return err; |
Eric Biggers | 32c3cf0 | 2017-10-09 12:15:43 -0700 | [diff] [blame] | 122 | } |
| 123 | EXPORT_SYMBOL_GPL(__fscrypt_prepare_lookup); |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 124 | |
Daniel Rosenberg | 6e1918c | 2020-01-20 14:31:56 -0800 | [diff] [blame^] | 125 | /** |
| 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 | */ |
| 136 | int 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 Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 153 | int __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 Biggers | b9db0b4 | 2018-01-11 23:30:08 -0500 | [diff] [blame] | 185 | if (!fscrypt_fname_encrypted_size(dir, len, |
| 186 | max_len - sizeof(struct fscrypt_symlink_data), |
| 187 | &disk_link->len)) |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 188 | return -ENAMETOOLONG; |
Eric Biggers | b9db0b4 | 2018-01-11 23:30:08 -0500 | [diff] [blame] | 189 | disk_link->len += sizeof(struct fscrypt_symlink_data); |
| 190 | |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 191 | disk_link->name = NULL; |
| 192 | return 0; |
| 193 | } |
| 194 | EXPORT_SYMBOL_GPL(__fscrypt_prepare_symlink); |
| 195 | |
| 196 | int __fscrypt_encrypt_symlink(struct inode *inode, const char *target, |
| 197 | unsigned int len, struct fscrypt_str *disk_link) |
| 198 | { |
| 199 | int err; |
Eric Biggers | 0b1dfa4 | 2018-01-19 13:45:24 -0800 | [diff] [blame] | 200 | struct qstr iname = QSTR_INIT(target, len); |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 201 | struct fscrypt_symlink_data *sd; |
| 202 | unsigned int ciphertext_len; |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 203 | |
| 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 Biggers | 1b3b827 | 2020-01-19 23:17:36 -0800 | [diff] [blame] | 219 | err = fscrypt_fname_encrypt(inode, &iname, sd->encrypted_path, |
| 220 | ciphertext_len); |
Eric Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 221 | if (err) |
| 222 | goto err_free_sd; |
| 223 | |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 224 | /* |
| 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 Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 231 | /* 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 Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 237 | if (!disk_link->name) |
| 238 | disk_link->name = (unsigned char *)sd; |
| 239 | return 0; |
Eric Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 240 | |
| 241 | err_free_sd: |
| 242 | if (!disk_link->name) |
| 243 | kfree(sd); |
| 244 | return err; |
Eric Biggers | 76e81d6 | 2018-01-05 10:45:01 -0800 | [diff] [blame] | 245 | } |
| 246 | EXPORT_SYMBOL_GPL(__fscrypt_encrypt_symlink); |
Eric Biggers | 3b0d883 | 2018-01-05 10:45:02 -0800 | [diff] [blame] | 247 | |
| 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 Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 253 | * @done: if successful, will be set up to free the returned target if needed |
Eric Biggers | 3b0d883 | 2018-01-05 10:45:02 -0800 | [diff] [blame] | 254 | * |
| 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 | */ |
| 262 | const 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 Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 268 | bool has_key; |
Eric Biggers | 3b0d883 | 2018-01-05 10:45:02 -0800 | [diff] [blame] | 269 | int err; |
| 270 | |
| 271 | /* This is for encrypted symlinks only */ |
| 272 | if (WARN_ON(!IS_ENCRYPTED(inode))) |
| 273 | return ERR_PTR(-EINVAL); |
| 274 | |
Eric Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 275 | /* 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 Biggers | 3b0d883 | 2018-01-05 10:45:02 -0800 | [diff] [blame] | 280 | /* |
| 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 Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 287 | has_key = fscrypt_has_encryption_key(inode); |
Eric Biggers | 3b0d883 | 2018-01-05 10:45:02 -0800 | [diff] [blame] | 288 | |
| 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 Biggers | 2c58d54 | 2019-04-10 13:21:15 -0700 | [diff] [blame] | 319 | |
| 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 Biggers | 3b0d883 | 2018-01-05 10:45:02 -0800 | [diff] [blame] | 330 | return pstr.name; |
| 331 | |
| 332 | err_kfree: |
| 333 | kfree(pstr.name); |
| 334 | return ERR_PTR(err); |
| 335 | } |
| 336 | EXPORT_SYMBOL_GPL(fscrypt_get_symlink); |