blob: e997ca51192f56f4e104fd87597efd2559be455a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002/*
3 * key management facility for FS encryption support.
4 *
5 * Copyright (C) 2015, Google, Inc.
6 *
7 * This contains encryption key functions.
8 *
9 * Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015.
10 */
11
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070012#include <keys/user-type.h>
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070013#include <linux/scatterlist.h>
Daniel Walterb7e7cf72017-06-19 09:27:58 +020014#include <linux/ratelimit.h>
15#include <crypto/aes.h>
16#include <crypto/sha.h>
Eric Biggersa5757842018-01-05 10:45:00 -080017#include <crypto/skcipher.h>
Theodore Ts'o3325bea2016-11-26 20:32:46 -050018#include "fscrypt_private.h"
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070019
Daniel Walterb7e7cf72017-06-19 09:27:58 +020020static struct crypto_shash *essiv_hash_tfm;
21
Eric Biggers646b7d42018-04-30 15:51:49 -070022/*
23 * Key derivation function. This generates the derived key by encrypting the
24 * master key with AES-128-ECB using the inode's nonce as the AES key.
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070025 *
Eric Biggers646b7d42018-04-30 15:51:49 -070026 * The master key must be at least as long as the derived key. If the master
27 * key is longer, then only the first 'derived_keysize' bytes are used.
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070028 */
Eric Biggers646b7d42018-04-30 15:51:49 -070029static int derive_key_aes(const u8 *master_key,
30 const struct fscrypt_context *ctx,
31 u8 *derived_key, unsigned int derived_keysize)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070032{
33 int res = 0;
Linus Torvaldsd4075742016-03-21 11:03:02 -070034 struct skcipher_request *req = NULL;
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010035 DECLARE_CRYPTO_WAIT(wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070036 struct scatterlist src_sg, dst_sg;
Linus Torvaldsd4075742016-03-21 11:03:02 -070037 struct crypto_skcipher *tfm = crypto_alloc_skcipher("ecb(aes)", 0, 0);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070038
39 if (IS_ERR(tfm)) {
40 res = PTR_ERR(tfm);
41 tfm = NULL;
42 goto out;
43 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070044 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
45 req = skcipher_request_alloc(tfm, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070046 if (!req) {
47 res = -ENOMEM;
48 goto out;
49 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070050 skcipher_request_set_callback(req,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070051 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010052 crypto_req_done, &wait);
Eric Biggers646b7d42018-04-30 15:51:49 -070053 res = crypto_skcipher_setkey(tfm, ctx->nonce, sizeof(ctx->nonce));
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070054 if (res < 0)
55 goto out;
56
Eric Biggers646b7d42018-04-30 15:51:49 -070057 sg_init_one(&src_sg, master_key, derived_keysize);
58 sg_init_one(&dst_sg, derived_key, derived_keysize);
59 skcipher_request_set_crypt(req, &src_sg, &dst_sg, derived_keysize,
Daniel Walterb7e7cf72017-06-19 09:27:58 +020060 NULL);
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010061 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070062out:
Linus Torvaldsd4075742016-03-21 11:03:02 -070063 skcipher_request_free(req);
64 crypto_free_skcipher(tfm);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070065 return res;
66}
67
Eric Biggers590f4972018-04-30 15:51:48 -070068/*
69 * Search the current task's subscribed keyrings for a "logon" key with
70 * description prefix:descriptor, and if found acquire a read lock on it and
71 * return a pointer to its validated payload in *payload_ret.
72 */
73static struct key *
74find_and_lock_process_key(const char *prefix,
75 const u8 descriptor[FS_KEY_DESCRIPTOR_SIZE],
76 unsigned int min_keysize,
77 const struct fscrypt_key **payload_ret)
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070078{
Eric Biggersa5d431e2017-01-05 13:51:18 -080079 char *description;
Eric Biggers590f4972018-04-30 15:51:48 -070080 struct key *key;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070081 const struct user_key_payload *ukp;
Eric Biggers590f4972018-04-30 15:51:48 -070082 const struct fscrypt_key *payload;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070083
Eric Biggersa5d431e2017-01-05 13:51:18 -080084 description = kasprintf(GFP_NOFS, "%s%*phN", prefix,
Eric Biggers590f4972018-04-30 15:51:48 -070085 FS_KEY_DESCRIPTOR_SIZE, descriptor);
Eric Biggersa5d431e2017-01-05 13:51:18 -080086 if (!description)
Eric Biggers590f4972018-04-30 15:51:48 -070087 return ERR_PTR(-ENOMEM);
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070088
Eric Biggers590f4972018-04-30 15:51:48 -070089 key = request_key(&key_type_logon, description, NULL);
Eric Biggersa5d431e2017-01-05 13:51:18 -080090 kfree(description);
Eric Biggers590f4972018-04-30 15:51:48 -070091 if (IS_ERR(key))
92 return key;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070093
Eric Biggers590f4972018-04-30 15:51:48 -070094 down_read(&key->sem);
95 ukp = user_key_payload_locked(key);
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -070096
Eric Biggers590f4972018-04-30 15:51:48 -070097 if (!ukp) /* was the key revoked before we acquired its semaphore? */
98 goto invalid;
99
100 payload = (const struct fscrypt_key *)ukp->data;
101
102 if (ukp->datalen != sizeof(struct fscrypt_key) ||
103 payload->size < 1 || payload->size > FS_MAX_KEY_SIZE) {
104 fscrypt_warn(NULL,
105 "key with description '%s' has invalid payload",
106 key->description);
107 goto invalid;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -0700108 }
Eric Biggers590f4972018-04-30 15:51:48 -0700109
Eric Biggers646b7d42018-04-30 15:51:49 -0700110 if (payload->size < min_keysize) {
Eric Biggers590f4972018-04-30 15:51:48 -0700111 fscrypt_warn(NULL,
Eric Biggers646b7d42018-04-30 15:51:49 -0700112 "key with description '%s' is too short (got %u bytes, need %u+ bytes)",
Eric Biggers590f4972018-04-30 15:51:48 -0700113 key->description, payload->size, min_keysize);
114 goto invalid;
115 }
116
117 *payload_ret = payload;
118 return key;
119
120invalid:
121 up_read(&key->sem);
122 key_put(key);
123 return ERR_PTR(-ENOKEY);
124}
125
126/* Find the master key, then derive the inode's actual encryption key */
127static int find_and_derive_key(const struct inode *inode,
128 const struct fscrypt_context *ctx,
129 u8 *derived_key, unsigned int derived_keysize)
130{
131 struct key *key;
132 const struct fscrypt_key *payload;
133 int err;
134
135 key = find_and_lock_process_key(FS_KEY_DESC_PREFIX,
136 ctx->master_key_descriptor,
137 derived_keysize, &payload);
138 if (key == ERR_PTR(-ENOKEY) && inode->i_sb->s_cop->key_prefix) {
139 key = find_and_lock_process_key(inode->i_sb->s_cop->key_prefix,
140 ctx->master_key_descriptor,
141 derived_keysize, &payload);
142 }
143 if (IS_ERR(key))
144 return PTR_ERR(key);
Eric Biggers646b7d42018-04-30 15:51:49 -0700145 err = derive_key_aes(payload->raw, ctx, derived_key, derived_keysize);
Eric Biggers590f4972018-04-30 15:51:48 -0700146 up_read(&key->sem);
147 key_put(key);
148 return err;
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -0700149}
150
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700151static struct fscrypt_mode {
152 const char *friendly_name;
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200153 const char *cipher_str;
154 int keysize;
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700155 bool logged_impl_name;
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200156} available_modes[] = {
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700157 [FS_ENCRYPTION_MODE_AES_256_XTS] = {
158 .friendly_name = "AES-256-XTS",
159 .cipher_str = "xts(aes)",
160 .keysize = 64,
161 },
162 [FS_ENCRYPTION_MODE_AES_256_CTS] = {
163 .friendly_name = "AES-256-CTS-CBC",
164 .cipher_str = "cts(cbc(aes))",
165 .keysize = 32,
166 },
167 [FS_ENCRYPTION_MODE_AES_128_CBC] = {
168 .friendly_name = "AES-128-CBC",
169 .cipher_str = "cbc(aes)",
170 .keysize = 16,
171 },
172 [FS_ENCRYPTION_MODE_AES_128_CTS] = {
173 .friendly_name = "AES-128-CTS-CBC",
174 .cipher_str = "cts(cbc(aes))",
175 .keysize = 16,
176 },
177 [FS_ENCRYPTION_MODE_SPECK128_256_XTS] = {
178 .friendly_name = "Speck128/256-XTS",
179 .cipher_str = "xts(speck128)",
180 .keysize = 64,
181 },
182 [FS_ENCRYPTION_MODE_SPECK128_256_CTS] = {
183 .friendly_name = "Speck128/256-CTS-CBC",
184 .cipher_str = "cts(cbc(speck128))",
185 .keysize = 32,
186 },
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200187};
188
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700189static struct fscrypt_mode *
190select_encryption_mode(const struct fscrypt_info *ci, const struct inode *inode)
Eric Biggers8f398502016-09-15 13:32:11 -0400191{
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200192 if (!fscrypt_valid_enc_modes(ci->ci_data_mode, ci->ci_filename_mode)) {
Eric Biggers544d08f2018-04-30 15:51:47 -0700193 fscrypt_warn(inode->i_sb,
194 "inode %lu uses unsupported encryption modes (contents mode %d, filenames mode %d)",
195 inode->i_ino, ci->ci_data_mode,
196 ci->ci_filename_mode);
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700197 return ERR_PTR(-EINVAL);
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200198 }
199
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700200 if (S_ISREG(inode->i_mode))
201 return &available_modes[ci->ci_data_mode];
Eric Biggers8f398502016-09-15 13:32:11 -0400202
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700203 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
204 return &available_modes[ci->ci_filename_mode];
205
206 WARN_ONCE(1, "fscrypt: filesystem tried to load encryption info for inode %lu, which is not encryptable (file type %d)\n",
207 inode->i_ino, (inode->i_mode & S_IFMT));
208 return ERR_PTR(-EINVAL);
Eric Biggers8f398502016-09-15 13:32:11 -0400209}
210
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700211static void put_crypt_info(struct fscrypt_info *ci)
212{
213 if (!ci)
214 return;
215
Linus Torvaldsd4075742016-03-21 11:03:02 -0700216 crypto_free_skcipher(ci->ci_ctfm);
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200217 crypto_free_cipher(ci->ci_essiv_tfm);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700218 kmem_cache_free(fscrypt_info_cachep, ci);
219}
220
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200221static int derive_essiv_salt(const u8 *key, int keysize, u8 *salt)
222{
223 struct crypto_shash *tfm = READ_ONCE(essiv_hash_tfm);
224
225 /* init hash transform on demand */
226 if (unlikely(!tfm)) {
227 struct crypto_shash *prev_tfm;
228
229 tfm = crypto_alloc_shash("sha256", 0, 0);
230 if (IS_ERR(tfm)) {
Eric Biggers544d08f2018-04-30 15:51:47 -0700231 fscrypt_warn(NULL,
232 "error allocating SHA-256 transform: %ld",
233 PTR_ERR(tfm));
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200234 return PTR_ERR(tfm);
235 }
236 prev_tfm = cmpxchg(&essiv_hash_tfm, NULL, tfm);
237 if (prev_tfm) {
238 crypto_free_shash(tfm);
239 tfm = prev_tfm;
240 }
241 }
242
243 {
244 SHASH_DESC_ON_STACK(desc, tfm);
245 desc->tfm = tfm;
246 desc->flags = 0;
247
248 return crypto_shash_digest(desc, key, keysize, salt);
249 }
250}
251
252static int init_essiv_generator(struct fscrypt_info *ci, const u8 *raw_key,
253 int keysize)
254{
255 int err;
256 struct crypto_cipher *essiv_tfm;
257 u8 salt[SHA256_DIGEST_SIZE];
258
259 essiv_tfm = crypto_alloc_cipher("aes", 0, 0);
260 if (IS_ERR(essiv_tfm))
261 return PTR_ERR(essiv_tfm);
262
263 ci->ci_essiv_tfm = essiv_tfm;
264
265 err = derive_essiv_salt(raw_key, keysize, salt);
266 if (err)
267 goto out;
268
269 /*
270 * Using SHA256 to derive the salt/key will result in AES-256 being
271 * used for IV generation. File contents encryption will still use the
272 * configured keysize (AES-128) nevertheless.
273 */
274 err = crypto_cipher_setkey(essiv_tfm, salt, sizeof(salt));
275 if (err)
276 goto out;
277
278out:
279 memzero_explicit(salt, sizeof(salt));
280 return err;
281}
282
283void __exit fscrypt_essiv_cleanup(void)
284{
285 crypto_free_shash(essiv_hash_tfm);
286}
287
Eric Biggers1b53cf92017-02-21 15:07:11 -0800288int fscrypt_get_encryption_info(struct inode *inode)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700289{
290 struct fscrypt_info *crypt_info;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700291 struct fscrypt_context ctx;
Linus Torvaldsd4075742016-03-21 11:03:02 -0700292 struct crypto_skcipher *ctfm;
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700293 struct fscrypt_mode *mode;
Eric Biggersa6e08912016-11-13 20:41:09 -0500294 u8 *raw_key = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700295 int res;
296
Eric Biggers1b53cf92017-02-21 15:07:11 -0800297 if (inode->i_crypt_info)
298 return 0;
299
David Gstirf32d7ac2016-12-06 23:53:57 +0100300 res = fscrypt_initialize(inode->i_sb->s_cop->flags);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700301 if (res)
302 return res;
303
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700304 res = inode->i_sb->s_cop->get_context(inode, &ctx, sizeof(ctx));
305 if (res < 0) {
Theodore Ts'o5bbdcbb2017-01-02 15:12:17 -0500306 if (!fscrypt_dummy_context_enabled(inode) ||
Eric Biggerse0428a22017-10-09 12:15:36 -0700307 IS_ENCRYPTED(inode))
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700308 return res;
Theodore Ts'o5bbdcbb2017-01-02 15:12:17 -0500309 /* Fake up a context for an unencrypted directory */
310 memset(&ctx, 0, sizeof(ctx));
Eric Biggers8f398502016-09-15 13:32:11 -0400311 ctx.format = FS_ENCRYPTION_CONTEXT_FORMAT_V1;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700312 ctx.contents_encryption_mode = FS_ENCRYPTION_MODE_AES_256_XTS;
313 ctx.filenames_encryption_mode = FS_ENCRYPTION_MODE_AES_256_CTS;
Theodore Ts'o5bbdcbb2017-01-02 15:12:17 -0500314 memset(ctx.master_key_descriptor, 0x42, FS_KEY_DESCRIPTOR_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700315 } else if (res != sizeof(ctx)) {
316 return -EINVAL;
317 }
Eric Biggers8f398502016-09-15 13:32:11 -0400318
319 if (ctx.format != FS_ENCRYPTION_CONTEXT_FORMAT_V1)
320 return -EINVAL;
321
322 if (ctx.flags & ~FS_POLICY_FLAGS_VALID)
323 return -EINVAL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700324
325 crypt_info = kmem_cache_alloc(fscrypt_info_cachep, GFP_NOFS);
326 if (!crypt_info)
327 return -ENOMEM;
328
329 crypt_info->ci_flags = ctx.flags;
330 crypt_info->ci_data_mode = ctx.contents_encryption_mode;
331 crypt_info->ci_filename_mode = ctx.filenames_encryption_mode;
332 crypt_info->ci_ctfm = NULL;
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200333 crypt_info->ci_essiv_tfm = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700334 memcpy(crypt_info->ci_master_key, ctx.master_key_descriptor,
335 sizeof(crypt_info->ci_master_key));
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700336
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700337 mode = select_encryption_mode(crypt_info, inode);
338 if (IS_ERR(mode)) {
339 res = PTR_ERR(mode);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700340 goto out;
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700341 }
Eric Biggers8f398502016-09-15 13:32:11 -0400342
Eric Biggersa6e08912016-11-13 20:41:09 -0500343 /*
344 * This cannot be a stack buffer because it is passed to the scatterlist
345 * crypto API as part of key derivation.
346 */
347 res = -ENOMEM;
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700348 raw_key = kmalloc(mode->keysize, GFP_NOFS);
Eric Biggersa6e08912016-11-13 20:41:09 -0500349 if (!raw_key)
350 goto out;
351
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700352 res = find_and_derive_key(inode, &ctx, raw_key, mode->keysize);
Eric Biggers590f4972018-04-30 15:51:48 -0700353 if (res)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700354 goto out;
Eric Biggers590f4972018-04-30 15:51:48 -0700355
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700356 ctfm = crypto_alloc_skcipher(mode->cipher_str, 0, 0);
Eric Biggers99194792018-04-30 15:51:37 -0700357 if (IS_ERR(ctfm)) {
358 res = PTR_ERR(ctfm);
Eric Biggers544d08f2018-04-30 15:51:47 -0700359 fscrypt_warn(inode->i_sb,
360 "error allocating '%s' transform for inode %lu: %d",
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700361 mode->cipher_str, inode->i_ino, res);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700362 goto out;
363 }
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700364 if (unlikely(!mode->logged_impl_name)) {
365 /*
366 * fscrypt performance can vary greatly depending on which
367 * crypto algorithm implementation is used. Help people debug
368 * performance problems by logging the ->cra_driver_name the
369 * first time a mode is used. Note that multiple threads can
370 * race here, but it doesn't really matter.
371 */
372 mode->logged_impl_name = true;
373 pr_info("fscrypt: %s using implementation \"%s\"\n",
374 mode->friendly_name,
375 crypto_skcipher_alg(ctfm)->base.cra_driver_name);
376 }
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700377 crypt_info->ci_ctfm = ctfm;
Linus Torvaldsd4075742016-03-21 11:03:02 -0700378 crypto_skcipher_set_flags(ctfm, CRYPTO_TFM_REQ_WEAK_KEY);
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700379 res = crypto_skcipher_setkey(ctfm, raw_key, mode->keysize);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700380 if (res)
381 goto out;
382
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200383 if (S_ISREG(inode->i_mode) &&
384 crypt_info->ci_data_mode == FS_ENCRYPTION_MODE_AES_128_CBC) {
Eric Biggerse1cc40e2018-05-18 10:58:14 -0700385 res = init_essiv_generator(crypt_info, raw_key, mode->keysize);
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200386 if (res) {
Eric Biggers544d08f2018-04-30 15:51:47 -0700387 fscrypt_warn(inode->i_sb,
388 "error initializing ESSIV generator for inode %lu: %d",
389 inode->i_ino, res);
Daniel Walterb7e7cf72017-06-19 09:27:58 +0200390 goto out;
391 }
392 }
Eric Biggers1b53cf92017-02-21 15:07:11 -0800393 if (cmpxchg(&inode->i_crypt_info, NULL, crypt_info) == NULL)
394 crypt_info = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700395out:
396 if (res == -ENOKEY)
397 res = 0;
398 put_crypt_info(crypt_info);
Eric Biggersa6e08912016-11-13 20:41:09 -0500399 kzfree(raw_key);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700400 return res;
401}
Eric Biggers1b53cf92017-02-21 15:07:11 -0800402EXPORT_SYMBOL(fscrypt_get_encryption_info);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700403
Eric Biggers3d204e22018-01-11 23:30:13 -0500404void fscrypt_put_encryption_info(struct inode *inode)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700405{
Eric Biggers3d204e22018-01-11 23:30:13 -0500406 put_crypt_info(inode->i_crypt_info);
407 inode->i_crypt_info = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700408}
409EXPORT_SYMBOL(fscrypt_put_encryption_info);