blob: ad9f814fdead370eaa420a423139938687c3047b [file] [log] [blame]
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07001/*
2 * This contains functions for filename crypto management
3 *
4 * Copyright (C) 2015, Google, Inc.
5 * Copyright (C) 2015, Motorola Mobility
6 *
7 * Written by Uday Savagaonkar, 2014.
8 * Modified by Jaegeuk Kim, 2015.
9 *
10 * This has not yet undergone a rigorous security audit.
11 */
12
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070013#include <linux/scatterlist.h>
14#include <linux/ratelimit.h>
Theodore Ts'o3325bea2016-11-26 20:32:46 -050015#include "fscrypt_private.h"
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070016
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070017/**
Eric Biggers53fd7552016-09-15 16:51:01 -040018 * fname_crypt_complete() - completion callback for filename crypto
19 * @req: The asynchronous cipher request context
20 * @res: The result of the cipher operation
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070021 */
Eric Biggers53fd7552016-09-15 16:51:01 -040022static void fname_crypt_complete(struct crypto_async_request *req, int res)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070023{
24 struct fscrypt_completion_result *ecr = req->data;
25
26 if (res == -EINPROGRESS)
27 return;
28 ecr->res = res;
29 complete(&ecr->completion);
30}
31
32/**
Eric Biggersef1eb3a2016-09-15 17:25:55 -040033 * fname_encrypt() - encrypt a filename
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070034 *
Eric Biggersef1eb3a2016-09-15 17:25:55 -040035 * The caller must have allocated sufficient memory for the @oname string.
36 *
37 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070038 */
39static int fname_encrypt(struct inode *inode,
40 const struct qstr *iname, struct fscrypt_str *oname)
41{
Linus Torvaldsd4075742016-03-21 11:03:02 -070042 struct skcipher_request *req = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070043 DECLARE_FS_COMPLETION_RESULT(ecr);
44 struct fscrypt_info *ci = inode->i_crypt_info;
Linus Torvaldsd4075742016-03-21 11:03:02 -070045 struct crypto_skcipher *tfm = ci->ci_ctfm;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070046 int res = 0;
47 char iv[FS_CRYPTO_BLOCK_SIZE];
Eric Biggers08ae8772016-11-13 20:35:52 -050048 struct scatterlist sg;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070049 int padding = 4 << (ci->ci_flags & FS_POLICY_FLAGS_PAD_MASK);
Eric Biggers08ae8772016-11-13 20:35:52 -050050 unsigned int lim;
51 unsigned int cryptlen;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070052
53 lim = inode->i_sb->s_cop->max_namelen(inode);
54 if (iname->len <= 0 || iname->len > lim)
55 return -EIO;
56
Eric Biggers08ae8772016-11-13 20:35:52 -050057 /*
58 * Copy the filename to the output buffer for encrypting in-place and
59 * pad it with the needed number of NUL bytes.
60 */
61 cryptlen = max_t(unsigned int, iname->len, FS_CRYPTO_BLOCK_SIZE);
62 cryptlen = round_up(cryptlen, padding);
63 cryptlen = min(cryptlen, lim);
64 memcpy(oname->name, iname->name, iname->len);
65 memset(oname->name + iname->len, 0, cryptlen - iname->len);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070066
Eric Biggers08ae8772016-11-13 20:35:52 -050067 /* Initialize the IV */
68 memset(iv, 0, FS_CRYPTO_BLOCK_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070069
Eric Biggers08ae8772016-11-13 20:35:52 -050070 /* Set up the encryption request */
Linus Torvaldsd4075742016-03-21 11:03:02 -070071 req = skcipher_request_alloc(tfm, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070072 if (!req) {
73 printk_ratelimited(KERN_ERR
Eric Biggers08ae8772016-11-13 20:35:52 -050074 "%s: skcipher_request_alloc() failed\n", __func__);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070075 return -ENOMEM;
76 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070077 skcipher_request_set_callback(req,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070078 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Eric Biggers53fd7552016-09-15 16:51:01 -040079 fname_crypt_complete, &ecr);
Eric Biggers08ae8772016-11-13 20:35:52 -050080 sg_init_one(&sg, oname->name, cryptlen);
81 skcipher_request_set_crypt(req, &sg, &sg, cryptlen, iv);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070082
Eric Biggers08ae8772016-11-13 20:35:52 -050083 /* Do the encryption */
Linus Torvaldsd4075742016-03-21 11:03:02 -070084 res = crypto_skcipher_encrypt(req);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070085 if (res == -EINPROGRESS || res == -EBUSY) {
Eric Biggers08ae8772016-11-13 20:35:52 -050086 /* Request is being completed asynchronously; wait for it */
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070087 wait_for_completion(&ecr.completion);
88 res = ecr.res;
89 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070090 skcipher_request_free(req);
Eric Biggersef1eb3a2016-09-15 17:25:55 -040091 if (res < 0) {
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070092 printk_ratelimited(KERN_ERR
93 "%s: Error (error code %d)\n", __func__, res);
Eric Biggersef1eb3a2016-09-15 17:25:55 -040094 return res;
95 }
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070096
Eric Biggers08ae8772016-11-13 20:35:52 -050097 oname->len = cryptlen;
Eric Biggersef1eb3a2016-09-15 17:25:55 -040098 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070099}
100
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400101/**
102 * fname_decrypt() - decrypt a filename
103 *
104 * The caller must have allocated sufficient memory for the @oname string.
105 *
106 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700107 */
108static int fname_decrypt(struct inode *inode,
109 const struct fscrypt_str *iname,
110 struct fscrypt_str *oname)
111{
Linus Torvaldsd4075742016-03-21 11:03:02 -0700112 struct skcipher_request *req = NULL;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700113 DECLARE_FS_COMPLETION_RESULT(ecr);
114 struct scatterlist src_sg, dst_sg;
115 struct fscrypt_info *ci = inode->i_crypt_info;
Linus Torvaldsd4075742016-03-21 11:03:02 -0700116 struct crypto_skcipher *tfm = ci->ci_ctfm;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700117 int res = 0;
118 char iv[FS_CRYPTO_BLOCK_SIZE];
119 unsigned lim;
120
121 lim = inode->i_sb->s_cop->max_namelen(inode);
122 if (iname->len <= 0 || iname->len > lim)
123 return -EIO;
124
125 /* Allocate request */
Linus Torvaldsd4075742016-03-21 11:03:02 -0700126 req = skcipher_request_alloc(tfm, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700127 if (!req) {
128 printk_ratelimited(KERN_ERR
129 "%s: crypto_request_alloc() failed\n", __func__);
130 return -ENOMEM;
131 }
Linus Torvaldsd4075742016-03-21 11:03:02 -0700132 skcipher_request_set_callback(req,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700133 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Eric Biggers53fd7552016-09-15 16:51:01 -0400134 fname_crypt_complete, &ecr);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700135
136 /* Initialize IV */
137 memset(iv, 0, FS_CRYPTO_BLOCK_SIZE);
138
139 /* Create decryption request */
140 sg_init_one(&src_sg, iname->name, iname->len);
141 sg_init_one(&dst_sg, oname->name, oname->len);
Linus Torvaldsd4075742016-03-21 11:03:02 -0700142 skcipher_request_set_crypt(req, &src_sg, &dst_sg, iname->len, iv);
143 res = crypto_skcipher_decrypt(req);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700144 if (res == -EINPROGRESS || res == -EBUSY) {
145 wait_for_completion(&ecr.completion);
146 res = ecr.res;
147 }
Linus Torvaldsd4075742016-03-21 11:03:02 -0700148 skcipher_request_free(req);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700149 if (res < 0) {
150 printk_ratelimited(KERN_ERR
151 "%s: Error (error code %d)\n", __func__, res);
152 return res;
153 }
154
155 oname->len = strnlen(oname->name, iname->len);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400156 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700157}
158
159static const char *lookup_table =
160 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,";
161
Eric Biggers17159422017-04-24 10:00:10 -0700162#define BASE64_CHARS(nbytes) DIV_ROUND_UP((nbytes) * 4, 3)
163
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700164/**
165 * digest_encode() -
166 *
167 * Encodes the input digest using characters from the set [a-zA-Z0-9_+].
168 * The encoded string is roughly 4/3 times the size of the input string.
169 */
170static int digest_encode(const char *src, int len, char *dst)
171{
172 int i = 0, bits = 0, ac = 0;
173 char *cp = dst;
174
175 while (i < len) {
176 ac += (((unsigned char) src[i]) << bits);
177 bits += 8;
178 do {
179 *cp++ = lookup_table[ac & 0x3f];
180 ac >>= 6;
181 bits -= 6;
182 } while (bits >= 6);
183 i++;
184 }
185 if (bits)
186 *cp++ = lookup_table[ac & 0x3f];
187 return cp - dst;
188}
189
190static int digest_decode(const char *src, int len, char *dst)
191{
192 int i = 0, bits = 0, ac = 0;
193 const char *p;
194 char *cp = dst;
195
196 while (i < len) {
197 p = strchr(lookup_table, src[i]);
198 if (p == NULL || src[i] == 0)
199 return -2;
200 ac += (p - lookup_table) << bits;
201 bits += 6;
202 if (bits >= 8) {
203 *cp++ = ac & 0xff;
204 ac >>= 8;
205 bits -= 8;
206 }
207 i++;
208 }
209 if (ac)
210 return -1;
211 return cp - dst;
212}
213
David Gstir0b93e1b2016-11-13 22:20:47 +0100214u32 fscrypt_fname_encrypted_size(const struct inode *inode, u32 ilen)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700215{
216 int padding = 32;
217 struct fscrypt_info *ci = inode->i_crypt_info;
218
219 if (ci)
220 padding = 4 << (ci->ci_flags & FS_POLICY_FLAGS_PAD_MASK);
Eric Biggers55be3142016-09-30 01:46:18 -0400221 ilen = max(ilen, (u32)FS_CRYPTO_BLOCK_SIZE);
222 return round_up(ilen, padding);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700223}
224EXPORT_SYMBOL(fscrypt_fname_encrypted_size);
225
226/**
227 * fscrypt_fname_crypto_alloc_obuff() -
228 *
229 * Allocates an output buffer that is sufficient for the crypto operation
230 * specified by the context and the direction.
231 */
David Gstir0b93e1b2016-11-13 22:20:47 +0100232int fscrypt_fname_alloc_buffer(const struct inode *inode,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700233 u32 ilen, struct fscrypt_str *crypto_str)
234{
Eric Biggers17159422017-04-24 10:00:10 -0700235 u32 olen = fscrypt_fname_encrypted_size(inode, ilen);
236 const u32 max_encoded_len =
237 max_t(u32, BASE64_CHARS(FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE),
238 1 + BASE64_CHARS(sizeof(struct fscrypt_digested_name)));
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700239
240 crypto_str->len = olen;
Eric Biggers17159422017-04-24 10:00:10 -0700241 olen = max(olen, max_encoded_len);
242
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700243 /*
244 * Allocated buffer can hold one more character to null-terminate the
245 * string
246 */
247 crypto_str->name = kmalloc(olen + 1, GFP_NOFS);
248 if (!(crypto_str->name))
249 return -ENOMEM;
250 return 0;
251}
252EXPORT_SYMBOL(fscrypt_fname_alloc_buffer);
253
254/**
255 * fscrypt_fname_crypto_free_buffer() -
256 *
257 * Frees the buffer allocated for crypto operation.
258 */
259void fscrypt_fname_free_buffer(struct fscrypt_str *crypto_str)
260{
261 if (!crypto_str)
262 return;
263 kfree(crypto_str->name);
264 crypto_str->name = NULL;
265}
266EXPORT_SYMBOL(fscrypt_fname_free_buffer);
267
268/**
269 * fscrypt_fname_disk_to_usr() - converts a filename from disk space to user
270 * space
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400271 *
272 * The caller must have allocated sufficient memory for the @oname string.
273 *
Eric Biggers17159422017-04-24 10:00:10 -0700274 * If the key is available, we'll decrypt the disk name; otherwise, we'll encode
275 * it for presentation. Short names are directly base64-encoded, while long
276 * names are encoded in fscrypt_digested_name format.
277 *
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400278 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700279 */
280int fscrypt_fname_disk_to_usr(struct inode *inode,
281 u32 hash, u32 minor_hash,
282 const struct fscrypt_str *iname,
283 struct fscrypt_str *oname)
284{
285 const struct qstr qname = FSTR_TO_QSTR(iname);
Eric Biggers17159422017-04-24 10:00:10 -0700286 struct fscrypt_digested_name digested_name;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700287
288 if (fscrypt_is_dot_dotdot(&qname)) {
289 oname->name[0] = '.';
290 oname->name[iname->len - 1] = '.';
291 oname->len = iname->len;
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400292 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700293 }
294
295 if (iname->len < FS_CRYPTO_BLOCK_SIZE)
296 return -EUCLEAN;
297
298 if (inode->i_crypt_info)
299 return fname_decrypt(inode, iname, oname);
300
Eric Biggers17159422017-04-24 10:00:10 -0700301 if (iname->len <= FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE) {
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400302 oname->len = digest_encode(iname->name, iname->len,
303 oname->name);
304 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700305 }
306 if (hash) {
Eric Biggers17159422017-04-24 10:00:10 -0700307 digested_name.hash = hash;
308 digested_name.minor_hash = minor_hash;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700309 } else {
Eric Biggers17159422017-04-24 10:00:10 -0700310 digested_name.hash = 0;
311 digested_name.minor_hash = 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700312 }
Eric Biggers17159422017-04-24 10:00:10 -0700313 memcpy(digested_name.digest,
314 FSCRYPT_FNAME_DIGEST(iname->name, iname->len),
315 FSCRYPT_FNAME_DIGEST_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700316 oname->name[0] = '_';
Eric Biggers17159422017-04-24 10:00:10 -0700317 oname->len = 1 + digest_encode((const char *)&digested_name,
318 sizeof(digested_name), oname->name + 1);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400319 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700320}
321EXPORT_SYMBOL(fscrypt_fname_disk_to_usr);
322
323/**
324 * fscrypt_fname_usr_to_disk() - converts a filename from user space to disk
325 * space
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400326 *
327 * The caller must have allocated sufficient memory for the @oname string.
328 *
329 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700330 */
331int fscrypt_fname_usr_to_disk(struct inode *inode,
332 const struct qstr *iname,
333 struct fscrypt_str *oname)
334{
335 if (fscrypt_is_dot_dotdot(iname)) {
336 oname->name[0] = '.';
337 oname->name[iname->len - 1] = '.';
338 oname->len = iname->len;
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400339 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700340 }
341 if (inode->i_crypt_info)
342 return fname_encrypt(inode, iname, oname);
343 /*
344 * Without a proper key, a user is not allowed to modify the filenames
345 * in a directory. Consequently, a user space name cannot be mapped to
346 * a disk-space name
347 */
Eric Biggers54475f52016-12-05 11:12:44 -0800348 return -ENOKEY;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700349}
350EXPORT_SYMBOL(fscrypt_fname_usr_to_disk);
351
Eric Biggers17159422017-04-24 10:00:10 -0700352/**
353 * fscrypt_setup_filename() - prepare to search a possibly encrypted directory
354 * @dir: the directory that will be searched
355 * @iname: the user-provided filename being searched for
356 * @lookup: 1 if we're allowed to proceed without the key because it's
357 * ->lookup() or we're finding the dir_entry for deletion; 0 if we cannot
358 * proceed without the key because we're going to create the dir_entry.
359 * @fname: the filename information to be filled in
360 *
361 * Given a user-provided filename @iname, this function sets @fname->disk_name
362 * to the name that would be stored in the on-disk directory entry, if possible.
363 * If the directory is unencrypted this is simply @iname. Else, if we have the
364 * directory's encryption key, then @iname is the plaintext, so we encrypt it to
365 * get the disk_name.
366 *
367 * Else, for keyless @lookup operations, @iname is the presented ciphertext, so
368 * we decode it to get either the ciphertext disk_name (for short names) or the
369 * fscrypt_digested_name (for long names). Non-@lookup operations will be
370 * impossible in this case, so we fail them with ENOKEY.
371 *
372 * If successful, fscrypt_free_filename() must be called later to clean up.
373 *
374 * Return: 0 on success, -errno on failure
375 */
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700376int fscrypt_setup_filename(struct inode *dir, const struct qstr *iname,
377 int lookup, struct fscrypt_name *fname)
378{
Eric Biggers17159422017-04-24 10:00:10 -0700379 int ret;
380 int digested;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700381
382 memset(fname, 0, sizeof(struct fscrypt_name));
383 fname->usr_fname = iname;
384
385 if (!dir->i_sb->s_cop->is_encrypted(dir) ||
386 fscrypt_is_dot_dotdot(iname)) {
387 fname->disk_name.name = (unsigned char *)iname->name;
388 fname->disk_name.len = iname->len;
389 return 0;
390 }
Eric Biggers1b53cf92017-02-21 15:07:11 -0800391 ret = fscrypt_get_encryption_info(dir);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700392 if (ret && ret != -EOPNOTSUPP)
393 return ret;
394
395 if (dir->i_crypt_info) {
396 ret = fscrypt_fname_alloc_buffer(dir, iname->len,
397 &fname->crypto_buf);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400398 if (ret)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700399 return ret;
400 ret = fname_encrypt(dir, iname, &fname->crypto_buf);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400401 if (ret)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700402 goto errout;
403 fname->disk_name.name = fname->crypto_buf.name;
404 fname->disk_name.len = fname->crypto_buf.len;
405 return 0;
406 }
407 if (!lookup)
Eric Biggers54475f52016-12-05 11:12:44 -0800408 return -ENOKEY;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700409
410 /*
411 * We don't have the key and we are doing a lookup; decode the
412 * user-supplied name
413 */
Eric Biggers17159422017-04-24 10:00:10 -0700414 if (iname->name[0] == '_') {
415 if (iname->len !=
416 1 + BASE64_CHARS(sizeof(struct fscrypt_digested_name)))
417 return -ENOENT;
418 digested = 1;
419 } else {
420 if (iname->len >
421 BASE64_CHARS(FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE))
422 return -ENOENT;
423 digested = 0;
424 }
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700425
Eric Biggers17159422017-04-24 10:00:10 -0700426 fname->crypto_buf.name =
427 kmalloc(max_t(size_t, FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE,
428 sizeof(struct fscrypt_digested_name)),
429 GFP_KERNEL);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700430 if (fname->crypto_buf.name == NULL)
431 return -ENOMEM;
432
Eric Biggers17159422017-04-24 10:00:10 -0700433 ret = digest_decode(iname->name + digested, iname->len - digested,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700434 fname->crypto_buf.name);
435 if (ret < 0) {
436 ret = -ENOENT;
437 goto errout;
438 }
439 fname->crypto_buf.len = ret;
Eric Biggers17159422017-04-24 10:00:10 -0700440 if (digested) {
441 const struct fscrypt_digested_name *n =
442 (const void *)fname->crypto_buf.name;
443 fname->hash = n->hash;
444 fname->minor_hash = n->minor_hash;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700445 } else {
446 fname->disk_name.name = fname->crypto_buf.name;
447 fname->disk_name.len = fname->crypto_buf.len;
448 }
449 return 0;
450
451errout:
452 fscrypt_fname_free_buffer(&fname->crypto_buf);
453 return ret;
454}
455EXPORT_SYMBOL(fscrypt_setup_filename);