blob: 305541bcd108389695c5c20e37350d76936abb2d [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 * This contains functions for filename crypto management
4 *
5 * Copyright (C) 2015, Google, Inc.
6 * Copyright (C) 2015, Motorola Mobility
7 *
8 * Written by Uday Savagaonkar, 2014.
9 * Modified by Jaegeuk Kim, 2015.
10 *
11 * This has not yet undergone a rigorous security audit.
12 */
13
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070014#include <linux/scatterlist.h>
15#include <linux/ratelimit.h>
Theodore Ts'o3325bea2016-11-26 20:32:46 -050016#include "fscrypt_private.h"
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070017
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070018/**
Eric Biggersef1eb3a2016-09-15 17:25:55 -040019 * fname_encrypt() - encrypt a filename
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070020 *
Eric Biggersef1eb3a2016-09-15 17:25:55 -040021 * The caller must have allocated sufficient memory for the @oname string.
22 *
23 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070024 */
25static int fname_encrypt(struct inode *inode,
26 const struct qstr *iname, struct fscrypt_str *oname)
27{
Linus Torvaldsd4075742016-03-21 11:03:02 -070028 struct skcipher_request *req = NULL;
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010029 DECLARE_CRYPTO_WAIT(wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070030 struct fscrypt_info *ci = inode->i_crypt_info;
Linus Torvaldsd4075742016-03-21 11:03:02 -070031 struct crypto_skcipher *tfm = ci->ci_ctfm;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070032 int res = 0;
33 char iv[FS_CRYPTO_BLOCK_SIZE];
Eric Biggers08ae8772016-11-13 20:35:52 -050034 struct scatterlist sg;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070035 int padding = 4 << (ci->ci_flags & FS_POLICY_FLAGS_PAD_MASK);
Eric Biggers08ae8772016-11-13 20:35:52 -050036 unsigned int lim;
37 unsigned int cryptlen;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070038
39 lim = inode->i_sb->s_cop->max_namelen(inode);
40 if (iname->len <= 0 || iname->len > lim)
41 return -EIO;
42
Eric Biggers08ae8772016-11-13 20:35:52 -050043 /*
44 * Copy the filename to the output buffer for encrypting in-place and
45 * pad it with the needed number of NUL bytes.
46 */
47 cryptlen = max_t(unsigned int, iname->len, FS_CRYPTO_BLOCK_SIZE);
48 cryptlen = round_up(cryptlen, padding);
49 cryptlen = min(cryptlen, lim);
50 memcpy(oname->name, iname->name, iname->len);
51 memset(oname->name + iname->len, 0, cryptlen - iname->len);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070052
Eric Biggers08ae8772016-11-13 20:35:52 -050053 /* Initialize the IV */
54 memset(iv, 0, FS_CRYPTO_BLOCK_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070055
Eric Biggers08ae8772016-11-13 20:35:52 -050056 /* Set up the encryption request */
Linus Torvaldsd4075742016-03-21 11:03:02 -070057 req = skcipher_request_alloc(tfm, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070058 if (!req) {
59 printk_ratelimited(KERN_ERR
Eric Biggers08ae8772016-11-13 20:35:52 -050060 "%s: skcipher_request_alloc() failed\n", __func__);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070061 return -ENOMEM;
62 }
Linus Torvaldsd4075742016-03-21 11:03:02 -070063 skcipher_request_set_callback(req,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070064 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010065 crypto_req_done, &wait);
Eric Biggers08ae8772016-11-13 20:35:52 -050066 sg_init_one(&sg, oname->name, cryptlen);
67 skcipher_request_set_crypt(req, &sg, &sg, cryptlen, iv);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070068
Eric Biggers08ae8772016-11-13 20:35:52 -050069 /* Do the encryption */
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010070 res = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
Linus Torvaldsd4075742016-03-21 11:03:02 -070071 skcipher_request_free(req);
Eric Biggersef1eb3a2016-09-15 17:25:55 -040072 if (res < 0) {
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070073 printk_ratelimited(KERN_ERR
74 "%s: Error (error code %d)\n", __func__, res);
Eric Biggersef1eb3a2016-09-15 17:25:55 -040075 return res;
76 }
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070077
Eric Biggers08ae8772016-11-13 20:35:52 -050078 oname->len = cryptlen;
Eric Biggersef1eb3a2016-09-15 17:25:55 -040079 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070080}
81
Eric Biggersef1eb3a2016-09-15 17:25:55 -040082/**
83 * fname_decrypt() - decrypt a filename
84 *
85 * The caller must have allocated sufficient memory for the @oname string.
86 *
87 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070088 */
89static int fname_decrypt(struct inode *inode,
90 const struct fscrypt_str *iname,
91 struct fscrypt_str *oname)
92{
Linus Torvaldsd4075742016-03-21 11:03:02 -070093 struct skcipher_request *req = NULL;
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +010094 DECLARE_CRYPTO_WAIT(wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070095 struct scatterlist src_sg, dst_sg;
96 struct fscrypt_info *ci = inode->i_crypt_info;
Linus Torvaldsd4075742016-03-21 11:03:02 -070097 struct crypto_skcipher *tfm = ci->ci_ctfm;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -070098 int res = 0;
99 char iv[FS_CRYPTO_BLOCK_SIZE];
100 unsigned lim;
101
102 lim = inode->i_sb->s_cop->max_namelen(inode);
103 if (iname->len <= 0 || iname->len > lim)
104 return -EIO;
105
106 /* Allocate request */
Linus Torvaldsd4075742016-03-21 11:03:02 -0700107 req = skcipher_request_alloc(tfm, GFP_NOFS);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700108 if (!req) {
109 printk_ratelimited(KERN_ERR
110 "%s: crypto_request_alloc() failed\n", __func__);
111 return -ENOMEM;
112 }
Linus Torvaldsd4075742016-03-21 11:03:02 -0700113 skcipher_request_set_callback(req,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700114 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +0100115 crypto_req_done, &wait);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700116
117 /* Initialize IV */
118 memset(iv, 0, FS_CRYPTO_BLOCK_SIZE);
119
120 /* Create decryption request */
121 sg_init_one(&src_sg, iname->name, iname->len);
122 sg_init_one(&dst_sg, oname->name, oname->len);
Linus Torvaldsd4075742016-03-21 11:03:02 -0700123 skcipher_request_set_crypt(req, &src_sg, &dst_sg, iname->len, iv);
Gilad Ben-Yossefd0082e12017-10-18 08:00:44 +0100124 res = crypto_wait_req(crypto_skcipher_decrypt(req), &wait);
Linus Torvaldsd4075742016-03-21 11:03:02 -0700125 skcipher_request_free(req);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700126 if (res < 0) {
127 printk_ratelimited(KERN_ERR
128 "%s: Error (error code %d)\n", __func__, res);
129 return res;
130 }
131
132 oname->len = strnlen(oname->name, iname->len);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400133 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700134}
135
136static const char *lookup_table =
137 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,";
138
Eric Biggers17159422017-04-24 10:00:10 -0700139#define BASE64_CHARS(nbytes) DIV_ROUND_UP((nbytes) * 4, 3)
140
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700141/**
142 * digest_encode() -
143 *
144 * Encodes the input digest using characters from the set [a-zA-Z0-9_+].
145 * The encoded string is roughly 4/3 times the size of the input string.
146 */
147static int digest_encode(const char *src, int len, char *dst)
148{
149 int i = 0, bits = 0, ac = 0;
150 char *cp = dst;
151
152 while (i < len) {
153 ac += (((unsigned char) src[i]) << bits);
154 bits += 8;
155 do {
156 *cp++ = lookup_table[ac & 0x3f];
157 ac >>= 6;
158 bits -= 6;
159 } while (bits >= 6);
160 i++;
161 }
162 if (bits)
163 *cp++ = lookup_table[ac & 0x3f];
164 return cp - dst;
165}
166
167static int digest_decode(const char *src, int len, char *dst)
168{
169 int i = 0, bits = 0, ac = 0;
170 const char *p;
171 char *cp = dst;
172
173 while (i < len) {
174 p = strchr(lookup_table, src[i]);
175 if (p == NULL || src[i] == 0)
176 return -2;
177 ac += (p - lookup_table) << bits;
178 bits += 6;
179 if (bits >= 8) {
180 *cp++ = ac & 0xff;
181 ac >>= 8;
182 bits -= 8;
183 }
184 i++;
185 }
186 if (ac)
187 return -1;
188 return cp - dst;
189}
190
David Gstir0b93e1b2016-11-13 22:20:47 +0100191u32 fscrypt_fname_encrypted_size(const struct inode *inode, u32 ilen)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700192{
193 int padding = 32;
194 struct fscrypt_info *ci = inode->i_crypt_info;
195
196 if (ci)
197 padding = 4 << (ci->ci_flags & FS_POLICY_FLAGS_PAD_MASK);
Eric Biggers55be3142016-09-30 01:46:18 -0400198 ilen = max(ilen, (u32)FS_CRYPTO_BLOCK_SIZE);
199 return round_up(ilen, padding);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700200}
201EXPORT_SYMBOL(fscrypt_fname_encrypted_size);
202
203/**
204 * fscrypt_fname_crypto_alloc_obuff() -
205 *
206 * Allocates an output buffer that is sufficient for the crypto operation
207 * specified by the context and the direction.
208 */
David Gstir0b93e1b2016-11-13 22:20:47 +0100209int fscrypt_fname_alloc_buffer(const struct inode *inode,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700210 u32 ilen, struct fscrypt_str *crypto_str)
211{
Eric Biggers17159422017-04-24 10:00:10 -0700212 u32 olen = fscrypt_fname_encrypted_size(inode, ilen);
213 const u32 max_encoded_len =
214 max_t(u32, BASE64_CHARS(FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE),
215 1 + BASE64_CHARS(sizeof(struct fscrypt_digested_name)));
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700216
217 crypto_str->len = olen;
Eric Biggers17159422017-04-24 10:00:10 -0700218 olen = max(olen, max_encoded_len);
219
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700220 /*
221 * Allocated buffer can hold one more character to null-terminate the
222 * string
223 */
224 crypto_str->name = kmalloc(olen + 1, GFP_NOFS);
225 if (!(crypto_str->name))
226 return -ENOMEM;
227 return 0;
228}
229EXPORT_SYMBOL(fscrypt_fname_alloc_buffer);
230
231/**
232 * fscrypt_fname_crypto_free_buffer() -
233 *
234 * Frees the buffer allocated for crypto operation.
235 */
236void fscrypt_fname_free_buffer(struct fscrypt_str *crypto_str)
237{
238 if (!crypto_str)
239 return;
240 kfree(crypto_str->name);
241 crypto_str->name = NULL;
242}
243EXPORT_SYMBOL(fscrypt_fname_free_buffer);
244
245/**
246 * fscrypt_fname_disk_to_usr() - converts a filename from disk space to user
247 * space
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400248 *
249 * The caller must have allocated sufficient memory for the @oname string.
250 *
Eric Biggers17159422017-04-24 10:00:10 -0700251 * If the key is available, we'll decrypt the disk name; otherwise, we'll encode
252 * it for presentation. Short names are directly base64-encoded, while long
253 * names are encoded in fscrypt_digested_name format.
254 *
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400255 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700256 */
257int fscrypt_fname_disk_to_usr(struct inode *inode,
258 u32 hash, u32 minor_hash,
259 const struct fscrypt_str *iname,
260 struct fscrypt_str *oname)
261{
262 const struct qstr qname = FSTR_TO_QSTR(iname);
Eric Biggers17159422017-04-24 10:00:10 -0700263 struct fscrypt_digested_name digested_name;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700264
265 if (fscrypt_is_dot_dotdot(&qname)) {
266 oname->name[0] = '.';
267 oname->name[iname->len - 1] = '.';
268 oname->len = iname->len;
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400269 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700270 }
271
272 if (iname->len < FS_CRYPTO_BLOCK_SIZE)
273 return -EUCLEAN;
274
275 if (inode->i_crypt_info)
276 return fname_decrypt(inode, iname, oname);
277
Eric Biggers17159422017-04-24 10:00:10 -0700278 if (iname->len <= FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE) {
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400279 oname->len = digest_encode(iname->name, iname->len,
280 oname->name);
281 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700282 }
283 if (hash) {
Eric Biggers17159422017-04-24 10:00:10 -0700284 digested_name.hash = hash;
285 digested_name.minor_hash = minor_hash;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700286 } else {
Eric Biggers17159422017-04-24 10:00:10 -0700287 digested_name.hash = 0;
288 digested_name.minor_hash = 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700289 }
Eric Biggers17159422017-04-24 10:00:10 -0700290 memcpy(digested_name.digest,
291 FSCRYPT_FNAME_DIGEST(iname->name, iname->len),
292 FSCRYPT_FNAME_DIGEST_SIZE);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700293 oname->name[0] = '_';
Eric Biggers17159422017-04-24 10:00:10 -0700294 oname->len = 1 + digest_encode((const char *)&digested_name,
295 sizeof(digested_name), oname->name + 1);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400296 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700297}
298EXPORT_SYMBOL(fscrypt_fname_disk_to_usr);
299
300/**
301 * fscrypt_fname_usr_to_disk() - converts a filename from user space to disk
302 * space
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400303 *
304 * The caller must have allocated sufficient memory for the @oname string.
305 *
306 * Return: 0 on success, -errno on failure
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700307 */
308int fscrypt_fname_usr_to_disk(struct inode *inode,
309 const struct qstr *iname,
310 struct fscrypt_str *oname)
311{
312 if (fscrypt_is_dot_dotdot(iname)) {
313 oname->name[0] = '.';
314 oname->name[iname->len - 1] = '.';
315 oname->len = iname->len;
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400316 return 0;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700317 }
318 if (inode->i_crypt_info)
319 return fname_encrypt(inode, iname, oname);
320 /*
321 * Without a proper key, a user is not allowed to modify the filenames
322 * in a directory. Consequently, a user space name cannot be mapped to
323 * a disk-space name
324 */
Eric Biggers54475f52016-12-05 11:12:44 -0800325 return -ENOKEY;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700326}
327EXPORT_SYMBOL(fscrypt_fname_usr_to_disk);
328
Eric Biggers17159422017-04-24 10:00:10 -0700329/**
330 * fscrypt_setup_filename() - prepare to search a possibly encrypted directory
331 * @dir: the directory that will be searched
332 * @iname: the user-provided filename being searched for
333 * @lookup: 1 if we're allowed to proceed without the key because it's
334 * ->lookup() or we're finding the dir_entry for deletion; 0 if we cannot
335 * proceed without the key because we're going to create the dir_entry.
336 * @fname: the filename information to be filled in
337 *
338 * Given a user-provided filename @iname, this function sets @fname->disk_name
339 * to the name that would be stored in the on-disk directory entry, if possible.
340 * If the directory is unencrypted this is simply @iname. Else, if we have the
341 * directory's encryption key, then @iname is the plaintext, so we encrypt it to
342 * get the disk_name.
343 *
344 * Else, for keyless @lookup operations, @iname is the presented ciphertext, so
345 * we decode it to get either the ciphertext disk_name (for short names) or the
346 * fscrypt_digested_name (for long names). Non-@lookup operations will be
347 * impossible in this case, so we fail them with ENOKEY.
348 *
349 * If successful, fscrypt_free_filename() must be called later to clean up.
350 *
351 * Return: 0 on success, -errno on failure
352 */
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700353int fscrypt_setup_filename(struct inode *dir, const struct qstr *iname,
354 int lookup, struct fscrypt_name *fname)
355{
Eric Biggers17159422017-04-24 10:00:10 -0700356 int ret;
357 int digested;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700358
359 memset(fname, 0, sizeof(struct fscrypt_name));
360 fname->usr_fname = iname;
361
Eric Biggerse0428a22017-10-09 12:15:36 -0700362 if (!IS_ENCRYPTED(dir) || fscrypt_is_dot_dotdot(iname)) {
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700363 fname->disk_name.name = (unsigned char *)iname->name;
364 fname->disk_name.len = iname->len;
365 return 0;
366 }
Eric Biggers1b53cf92017-02-21 15:07:11 -0800367 ret = fscrypt_get_encryption_info(dir);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700368 if (ret && ret != -EOPNOTSUPP)
369 return ret;
370
371 if (dir->i_crypt_info) {
372 ret = fscrypt_fname_alloc_buffer(dir, iname->len,
373 &fname->crypto_buf);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400374 if (ret)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700375 return ret;
376 ret = fname_encrypt(dir, iname, &fname->crypto_buf);
Eric Biggersef1eb3a2016-09-15 17:25:55 -0400377 if (ret)
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700378 goto errout;
379 fname->disk_name.name = fname->crypto_buf.name;
380 fname->disk_name.len = fname->crypto_buf.len;
381 return 0;
382 }
383 if (!lookup)
Eric Biggers54475f52016-12-05 11:12:44 -0800384 return -ENOKEY;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700385
386 /*
387 * We don't have the key and we are doing a lookup; decode the
388 * user-supplied name
389 */
Eric Biggers17159422017-04-24 10:00:10 -0700390 if (iname->name[0] == '_') {
391 if (iname->len !=
392 1 + BASE64_CHARS(sizeof(struct fscrypt_digested_name)))
393 return -ENOENT;
394 digested = 1;
395 } else {
396 if (iname->len >
397 BASE64_CHARS(FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE))
398 return -ENOENT;
399 digested = 0;
400 }
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700401
Eric Biggers17159422017-04-24 10:00:10 -0700402 fname->crypto_buf.name =
403 kmalloc(max_t(size_t, FSCRYPT_FNAME_MAX_UNDIGESTED_SIZE,
404 sizeof(struct fscrypt_digested_name)),
405 GFP_KERNEL);
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700406 if (fname->crypto_buf.name == NULL)
407 return -ENOMEM;
408
Eric Biggers17159422017-04-24 10:00:10 -0700409 ret = digest_decode(iname->name + digested, iname->len - digested,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700410 fname->crypto_buf.name);
411 if (ret < 0) {
412 ret = -ENOENT;
413 goto errout;
414 }
415 fname->crypto_buf.len = ret;
Eric Biggers17159422017-04-24 10:00:10 -0700416 if (digested) {
417 const struct fscrypt_digested_name *n =
418 (const void *)fname->crypto_buf.name;
419 fname->hash = n->hash;
420 fname->minor_hash = n->minor_hash;
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700421 } else {
422 fname->disk_name.name = fname->crypto_buf.name;
423 fname->disk_name.len = fname->crypto_buf.len;
424 }
425 return 0;
426
427errout:
428 fscrypt_fname_free_buffer(&fname->crypto_buf);
429 return ret;
430}
431EXPORT_SYMBOL(fscrypt_setup_filename);