blob: 374d0e790315e8c6223b8fab2f04c8e7308bfbbb [file] [log] [blame]
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -04001/*
2 * linux/fs/ext4/crypto_fname.c
3 *
4 * Copyright (C) 2015, Google, Inc.
5 *
6 * This contains functions for filename crypto management in ext4
7 *
8 * Written by Uday Savagaonkar, 2014.
9 *
10 * This has not yet undergone a rigorous security audit.
11 *
12 */
13
14#include <crypto/hash.h>
15#include <crypto/sha.h>
16#include <keys/encrypted-type.h>
17#include <keys/user-type.h>
18#include <linux/crypto.h>
19#include <linux/gfp.h>
20#include <linux/kernel.h>
21#include <linux/key.h>
22#include <linux/key.h>
23#include <linux/list.h>
24#include <linux/mempool.h>
25#include <linux/random.h>
26#include <linux/scatterlist.h>
27#include <linux/spinlock_types.h>
28
29#include "ext4.h"
30#include "ext4_crypto.h"
31#include "xattr.h"
32
33/**
34 * ext4_dir_crypt_complete() -
35 */
36static void ext4_dir_crypt_complete(struct crypto_async_request *req, int res)
37{
38 struct ext4_completion_result *ecr = req->data;
39
40 if (res == -EINPROGRESS)
41 return;
42 ecr->res = res;
43 complete(&ecr->completion);
44}
45
46bool ext4_valid_filenames_enc_mode(uint32_t mode)
47{
48 return (mode == EXT4_ENCRYPTION_MODE_AES_256_CTS);
49}
50
Theodore Ts'ob7236e22015-05-18 13:17:47 -040051static unsigned max_name_len(struct inode *inode)
52{
53 return S_ISLNK(inode->i_mode) ? inode->i_sb->s_blocksize :
54 EXT4_NAME_LEN;
55}
56
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040057/**
58 * ext4_fname_encrypt() -
59 *
60 * This function encrypts the input filename, and returns the length of the
61 * ciphertext. Errors are returned as negative numbers. We trust the caller to
62 * allocate sufficient memory to oname string.
63 */
Theodore Ts'ob7236e22015-05-18 13:17:47 -040064static int ext4_fname_encrypt(struct inode *inode,
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040065 const struct qstr *iname,
66 struct ext4_str *oname)
67{
68 u32 ciphertext_len;
69 struct ablkcipher_request *req = NULL;
70 DECLARE_EXT4_COMPLETION_RESULT(ecr);
Theodore Ts'ob7236e22015-05-18 13:17:47 -040071 struct ext4_crypt_info *ci = EXT4_I(inode)->i_crypt_info;
72 struct crypto_ablkcipher *tfm = ci->ci_ctfm;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040073 int res = 0;
74 char iv[EXT4_CRYPTO_BLOCK_SIZE];
Theodore Ts'od2299592015-05-18 13:15:47 -040075 struct scatterlist src_sg, dst_sg;
Theodore Ts'ob7236e22015-05-18 13:17:47 -040076 int padding = 4 << (ci->ci_flags & EXT4_POLICY_FLAGS_PAD_MASK);
Theodore Ts'od2299592015-05-18 13:15:47 -040077 char *workbuf, buf[32], *alloc_buf = NULL;
Theodore Ts'ob7236e22015-05-18 13:17:47 -040078 unsigned lim = max_name_len(inode);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040079
Theodore Ts'ob7236e22015-05-18 13:17:47 -040080 if (iname->len <= 0 || iname->len > lim)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040081 return -EIO;
82
83 ciphertext_len = (iname->len < EXT4_CRYPTO_BLOCK_SIZE) ?
84 EXT4_CRYPTO_BLOCK_SIZE : iname->len;
Theodore Ts'oa44cd7a2015-05-01 16:56:50 -040085 ciphertext_len = ext4_fname_crypto_round_up(ciphertext_len, padding);
Theodore Ts'ob7236e22015-05-18 13:17:47 -040086 ciphertext_len = (ciphertext_len > lim)
87 ? lim : ciphertext_len;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040088
Theodore Ts'od2299592015-05-18 13:15:47 -040089 if (ciphertext_len <= sizeof(buf)) {
90 workbuf = buf;
91 } else {
92 alloc_buf = kmalloc(ciphertext_len, GFP_NOFS);
93 if (!alloc_buf)
94 return -ENOMEM;
95 workbuf = alloc_buf;
96 }
97
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -040098 /* Allocate request */
99 req = ablkcipher_request_alloc(tfm, GFP_NOFS);
100 if (!req) {
101 printk_ratelimited(
102 KERN_ERR "%s: crypto_request_alloc() failed\n", __func__);
Theodore Ts'od2299592015-05-18 13:15:47 -0400103 kfree(alloc_buf);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400104 return -ENOMEM;
105 }
106 ablkcipher_request_set_callback(req,
107 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
108 ext4_dir_crypt_complete, &ecr);
109
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400110 /* Copy the input */
111 memcpy(workbuf, iname->name, iname->len);
112 if (iname->len < ciphertext_len)
113 memset(workbuf + iname->len, 0, ciphertext_len - iname->len);
114
115 /* Initialize IV */
116 memset(iv, 0, EXT4_CRYPTO_BLOCK_SIZE);
117
118 /* Create encryption request */
Theodore Ts'od2299592015-05-18 13:15:47 -0400119 sg_init_one(&src_sg, workbuf, ciphertext_len);
120 sg_init_one(&dst_sg, oname->name, ciphertext_len);
121 ablkcipher_request_set_crypt(req, &src_sg, &dst_sg, ciphertext_len, iv);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400122 res = crypto_ablkcipher_encrypt(req);
123 if (res == -EINPROGRESS || res == -EBUSY) {
124 BUG_ON(req->base.data != &ecr);
125 wait_for_completion(&ecr.completion);
126 res = ecr.res;
127 }
Theodore Ts'od2299592015-05-18 13:15:47 -0400128 kfree(alloc_buf);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400129 ablkcipher_request_free(req);
130 if (res < 0) {
131 printk_ratelimited(
132 KERN_ERR "%s: Error (error code %d)\n", __func__, res);
133 }
134 oname->len = ciphertext_len;
135 return res;
136}
137
138/*
139 * ext4_fname_decrypt()
140 * This function decrypts the input filename, and returns
141 * the length of the plaintext.
142 * Errors are returned as negative numbers.
143 * We trust the caller to allocate sufficient memory to oname string.
144 */
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400145static int ext4_fname_decrypt(struct inode *inode,
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400146 const struct ext4_str *iname,
147 struct ext4_str *oname)
148{
149 struct ext4_str tmp_in[2], tmp_out[1];
150 struct ablkcipher_request *req = NULL;
151 DECLARE_EXT4_COMPLETION_RESULT(ecr);
Theodore Ts'od2299592015-05-18 13:15:47 -0400152 struct scatterlist src_sg, dst_sg;
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400153 struct ext4_crypt_info *ci = EXT4_I(inode)->i_crypt_info;
154 struct crypto_ablkcipher *tfm = ci->ci_ctfm;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400155 int res = 0;
156 char iv[EXT4_CRYPTO_BLOCK_SIZE];
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400157 unsigned lim = max_name_len(inode);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400158
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400159 if (iname->len <= 0 || iname->len > lim)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400160 return -EIO;
161
162 tmp_in[0].name = iname->name;
163 tmp_in[0].len = iname->len;
164 tmp_out[0].name = oname->name;
165
166 /* Allocate request */
167 req = ablkcipher_request_alloc(tfm, GFP_NOFS);
168 if (!req) {
169 printk_ratelimited(
170 KERN_ERR "%s: crypto_request_alloc() failed\n", __func__);
171 return -ENOMEM;
172 }
173 ablkcipher_request_set_callback(req,
174 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
175 ext4_dir_crypt_complete, &ecr);
176
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400177 /* Initialize IV */
178 memset(iv, 0, EXT4_CRYPTO_BLOCK_SIZE);
179
180 /* Create encryption request */
Theodore Ts'od2299592015-05-18 13:15:47 -0400181 sg_init_one(&src_sg, iname->name, iname->len);
182 sg_init_one(&dst_sg, oname->name, oname->len);
183 ablkcipher_request_set_crypt(req, &src_sg, &dst_sg, iname->len, iv);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400184 res = crypto_ablkcipher_decrypt(req);
185 if (res == -EINPROGRESS || res == -EBUSY) {
186 BUG_ON(req->base.data != &ecr);
187 wait_for_completion(&ecr.completion);
188 res = ecr.res;
189 }
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400190 ablkcipher_request_free(req);
191 if (res < 0) {
192 printk_ratelimited(
193 KERN_ERR "%s: Error in ext4_fname_encrypt (error code %d)\n",
194 __func__, res);
195 return res;
196 }
197
198 oname->len = strnlen(oname->name, iname->len);
199 return oname->len;
200}
201
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400202static const char *lookup_table =
203 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,";
204
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400205/**
206 * ext4_fname_encode_digest() -
207 *
208 * Encodes the input digest using characters from the set [a-zA-Z0-9_+].
209 * The encoded string is roughly 4/3 times the size of the input string.
210 */
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400211static int digest_encode(const char *src, int len, char *dst)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400212{
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400213 int i = 0, bits = 0, ac = 0;
214 char *cp = dst;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400215
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400216 while (i < len) {
217 ac += (((unsigned char) src[i]) << bits);
218 bits += 8;
219 do {
220 *cp++ = lookup_table[ac & 0x3f];
221 ac >>= 6;
222 bits -= 6;
223 } while (bits >= 6);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400224 i++;
225 }
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400226 if (bits)
227 *cp++ = lookup_table[ac & 0x3f];
228 return cp - dst;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400229}
230
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400231static int digest_decode(const char *src, int len, char *dst)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400232{
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400233 int i = 0, bits = 0, ac = 0;
234 const char *p;
235 char *cp = dst;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400236
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400237 while (i < len) {
238 p = strchr(lookup_table, src[i]);
239 if (p == NULL || src[i] == 0)
240 return -2;
241 ac += (p - lookup_table) << bits;
242 bits += 6;
243 if (bits >= 8) {
244 *cp++ = ac & 0xff;
245 ac >>= 8;
246 bits -= 8;
247 }
248 i++;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400249 }
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400250 if (ac)
251 return -1;
252 return cp - dst;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400253}
254
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400255int ext4_setup_fname_crypto(struct inode *inode)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400256{
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400257 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400258 struct ext4_crypt_info *ci = ei->i_crypt_info;
259 struct crypto_ablkcipher *ctfm;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400260 int res;
261
262 /* Check if the crypto policy is set on the inode */
263 res = ext4_encrypted_inode(inode);
264 if (res == 0)
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400265 return 0;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400266
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400267 res = ext4_get_encryption_info(inode);
268 if (res < 0)
269 return res;
270 ci = ei->i_crypt_info;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400271
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400272 if (!ci || ci->ci_ctfm)
273 return 0;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400274
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400275 if (ci->ci_mode != EXT4_ENCRYPTION_MODE_AES_256_CTS) {
276 printk_once(KERN_WARNING "ext4: unsupported key mode %d\n",
277 ci->ci_mode);
278 return -ENOKEY;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400279 }
280
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400281 ctfm = crypto_alloc_ablkcipher("cts(cbc(aes))", 0, 0);
282 if (!ctfm || IS_ERR(ctfm)) {
283 res = ctfm ? PTR_ERR(ctfm) : -ENOMEM;
284 printk(KERN_DEBUG "%s: error (%d) allocating crypto tfm\n",
285 __func__, res);
286 return res;
287 }
288 crypto_ablkcipher_clear_flags(ctfm, ~0);
289 crypto_tfm_set_flags(crypto_ablkcipher_tfm(ctfm),
290 CRYPTO_TFM_REQ_WEAK_KEY);
291
292 res = crypto_ablkcipher_setkey(ctfm, ci->ci_raw, ci->ci_size);
293 if (res) {
294 crypto_free_ablkcipher(ctfm);
295 return -EIO;
296 }
297 ci->ci_ctfm = ctfm;
298 return 0;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400299}
300
301/**
302 * ext4_fname_crypto_round_up() -
303 *
304 * Return: The next multiple of block size
305 */
306u32 ext4_fname_crypto_round_up(u32 size, u32 blksize)
307{
308 return ((size+blksize-1)/blksize)*blksize;
309}
310
311/**
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400312 * ext4_fname_crypto_alloc_obuff() -
313 *
314 * Allocates an output buffer that is sufficient for the crypto operation
315 * specified by the context and the direction.
316 */
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400317int ext4_fname_crypto_alloc_buffer(struct inode *inode,
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400318 u32 ilen, struct ext4_str *crypto_str)
319{
320 unsigned int olen;
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400321 int padding = 16;
322 struct ext4_crypt_info *ci = EXT4_I(inode)->i_crypt_info;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400323
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400324 if (ci)
325 padding = 4 << (ci->ci_flags & EXT4_POLICY_FLAGS_PAD_MASK);
Theodore Ts'oa44cd7a2015-05-01 16:56:50 -0400326 if (padding < EXT4_CRYPTO_BLOCK_SIZE)
327 padding = EXT4_CRYPTO_BLOCK_SIZE;
328 olen = ext4_fname_crypto_round_up(ilen, padding);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400329 crypto_str->len = olen;
330 if (olen < EXT4_FNAME_CRYPTO_DIGEST_SIZE*2)
331 olen = EXT4_FNAME_CRYPTO_DIGEST_SIZE*2;
332 /* Allocated buffer can hold one more character to null-terminate the
333 * string */
334 crypto_str->name = kmalloc(olen+1, GFP_NOFS);
335 if (!(crypto_str->name))
336 return -ENOMEM;
337 return 0;
338}
339
340/**
341 * ext4_fname_crypto_free_buffer() -
342 *
343 * Frees the buffer allocated for crypto operation.
344 */
345void ext4_fname_crypto_free_buffer(struct ext4_str *crypto_str)
346{
347 if (!crypto_str)
348 return;
349 kfree(crypto_str->name);
350 crypto_str->name = NULL;
351}
352
353/**
354 * ext4_fname_disk_to_usr() - converts a filename from disk space to user space
355 */
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400356int _ext4_fname_disk_to_usr(struct inode *inode,
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400357 struct dx_hash_info *hinfo,
358 const struct ext4_str *iname,
359 struct ext4_str *oname)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400360{
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400361 char buf[24];
362 int ret;
363
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400364 if (iname->len < 3) {
365 /*Check for . and .. */
366 if (iname->name[0] == '.' && iname->name[iname->len-1] == '.') {
367 oname->name[0] = '.';
368 oname->name[iname->len-1] = '.';
369 oname->len = iname->len;
370 return oname->len;
371 }
372 }
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400373 if (EXT4_I(inode)->i_crypt_info)
374 return ext4_fname_decrypt(inode, iname, oname);
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400375
376 if (iname->len <= EXT4_FNAME_CRYPTO_DIGEST_SIZE) {
377 ret = digest_encode(iname->name, iname->len, oname->name);
378 oname->len = ret;
379 return ret;
380 }
381 if (hinfo) {
382 memcpy(buf, &hinfo->hash, 4);
383 memcpy(buf+4, &hinfo->minor_hash, 4);
384 } else
385 memset(buf, 0, 8);
386 memcpy(buf + 8, iname->name + iname->len - 16, 16);
387 oname->name[0] = '_';
388 ret = digest_encode(buf, 24, oname->name+1);
389 oname->len = ret + 1;
390 return ret + 1;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400391}
392
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400393int ext4_fname_disk_to_usr(struct inode *inode,
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400394 struct dx_hash_info *hinfo,
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400395 const struct ext4_dir_entry_2 *de,
396 struct ext4_str *oname)
397{
398 struct ext4_str iname = {.name = (unsigned char *) de->name,
399 .len = de->name_len };
400
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400401 return _ext4_fname_disk_to_usr(inode, hinfo, &iname, oname);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400402}
403
404
405/**
406 * ext4_fname_usr_to_disk() - converts a filename from user space to disk space
407 */
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400408int ext4_fname_usr_to_disk(struct inode *inode,
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400409 const struct qstr *iname,
410 struct ext4_str *oname)
411{
412 int res;
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400413 struct ext4_crypt_info *ci = EXT4_I(inode)->i_crypt_info;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400414
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400415 if (iname->len < 3) {
416 /*Check for . and .. */
417 if (iname->name[0] == '.' &&
418 iname->name[iname->len-1] == '.') {
419 oname->name[0] = '.';
420 oname->name[iname->len-1] = '.';
421 oname->len = iname->len;
422 return oname->len;
423 }
424 }
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400425 if (ci) {
426 res = ext4_fname_encrypt(inode, iname, oname);
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400427 return res;
428 }
429 /* Without a proper key, a user is not allowed to modify the filenames
430 * in a directory. Consequently, a user space name cannot be mapped to
431 * a disk-space name */
432 return -EACCES;
433}
434
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400435int ext4_fname_setup_filename(struct inode *dir, const struct qstr *iname,
436 int lookup, struct ext4_filename *fname)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400437{
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400438 struct ext4_crypt_info *ci;
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400439 int ret = 0, bigname = 0;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400440
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400441 memset(fname, 0, sizeof(struct ext4_filename));
442 fname->usr_fname = iname;
443
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400444 if (!ext4_encrypted_inode(dir) ||
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400445 ((iname->name[0] == '.') &&
446 ((iname->len == 1) ||
447 ((iname->name[1] == '.') && (iname->len == 2))))) {
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400448 fname->disk_name.name = (unsigned char *) iname->name;
449 fname->disk_name.len = iname->len;
450 goto out;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400451 }
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400452 ret = ext4_setup_fname_crypto(dir);
453 if (ret)
454 return ret;
455 ci = EXT4_I(dir)->i_crypt_info;
456 if (ci) {
457 ret = ext4_fname_crypto_alloc_buffer(dir, iname->len,
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400458 &fname->crypto_buf);
459 if (ret < 0)
460 goto out;
Theodore Ts'ob7236e22015-05-18 13:17:47 -0400461 ret = ext4_fname_encrypt(dir, iname, &fname->crypto_buf);
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400462 if (ret < 0)
463 goto out;
464 fname->disk_name.name = fname->crypto_buf.name;
465 fname->disk_name.len = fname->crypto_buf.len;
Theodore Ts'o5de0b4d2015-05-01 16:56:45 -0400466 ret = 0;
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400467 goto out;
468 }
469 if (!lookup) {
470 ret = -EACCES;
471 goto out;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400472 }
473
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400474 /* We don't have the key and we are doing a lookup; decode the
475 * user-supplied name
476 */
477 if (iname->name[0] == '_')
478 bigname = 1;
479 if ((bigname && (iname->len != 33)) ||
480 (!bigname && (iname->len > 43))) {
481 ret = -ENOENT;
482 }
483 fname->crypto_buf.name = kmalloc(32, GFP_KERNEL);
484 if (fname->crypto_buf.name == NULL) {
485 ret = -ENOMEM;
486 goto out;
487 }
488 ret = digest_decode(iname->name + bigname, iname->len - bigname,
489 fname->crypto_buf.name);
490 if (ret < 0) {
491 ret = -ENOENT;
492 goto out;
493 }
494 fname->crypto_buf.len = ret;
495 if (bigname) {
496 memcpy(&fname->hinfo.hash, fname->crypto_buf.name, 4);
497 memcpy(&fname->hinfo.minor_hash, fname->crypto_buf.name + 4, 4);
498 } else {
499 fname->disk_name.name = fname->crypto_buf.name;
500 fname->disk_name.len = fname->crypto_buf.len;
501 }
502 ret = 0;
503out:
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400504 return ret;
505}
506
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400507void ext4_fname_free_filename(struct ext4_filename *fname)
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400508{
Theodore Ts'o5b643f92015-05-18 13:14:47 -0400509 kfree(fname->crypto_buf.name);
510 fname->crypto_buf.name = NULL;
511 fname->usr_fname = NULL;
512 fname->disk_name.name = NULL;
Michael Halcrowd5d0e8c2015-04-12 00:56:17 -0400513}