blob: 9845d2fd250692f52a282e65e270d277532e5e61 [file] [log] [blame]
Michael Halcrow237fead2006-10-04 02:16:22 -07001/**
2 * eCryptfs: Linux filesystem encryption layer
3 *
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08006 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -07007 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8 * Michael C. Thompson <mcthomps@us.ibm.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 * 02111-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/mount.h>
28#include <linux/pagemap.h>
29#include <linux/random.h>
30#include <linux/compiler.h>
31#include <linux/key.h>
32#include <linux/namei.h>
33#include <linux/crypto.h>
34#include <linux/file.h>
35#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Harvey Harrison29335c62008-07-23 21:30:06 -070037#include <asm/unaligned.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070038#include "ecryptfs_kernel.h"
39
Tyler Hicks00a69942013-04-05 23:26:22 -070040#define DECRYPT 0
41#define ENCRYPT 1
42
Tyler Hicksa8ca90e2013-04-05 23:37:51 -070043static int crypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
Tyler Hicks28916d12013-04-15 16:37:27 -070044 struct page *dst_page, struct page *src_page,
Tyler Hicksa8ca90e2013-04-05 23:37:51 -070045 int offset, int size, unsigned char *iv, int op);
Michael Halcrow237fead2006-10-04 02:16:22 -070046
47/**
48 * ecryptfs_to_hex
49 * @dst: Buffer to take hex character representation of contents of
50 * src; must be at least of size (src_size * 2)
51 * @src: Buffer to be converted to a hex string respresentation
52 * @src_size: number of bytes to convert
53 */
54void ecryptfs_to_hex(char *dst, char *src, size_t src_size)
55{
56 int x;
57
58 for (x = 0; x < src_size; x++)
59 sprintf(&dst[x * 2], "%.2x", (unsigned char)src[x]);
60}
61
62/**
63 * ecryptfs_from_hex
64 * @dst: Buffer to take the bytes from src hex; must be at least of
65 * size (src_size / 2)
66 * @src: Buffer to be converted from a hex string respresentation to raw value
67 * @dst_size: size of dst buffer, or number of hex characters pairs to convert
68 */
69void ecryptfs_from_hex(char *dst, char *src, int dst_size)
70{
71 int x;
72 char tmp[3] = { 0, };
73
74 for (x = 0; x < dst_size; x++) {
75 tmp[0] = src[x * 2];
76 tmp[1] = src[x * 2 + 1];
77 dst[x] = (unsigned char)simple_strtol(tmp, NULL, 16);
78 }
79}
80
81/**
82 * ecryptfs_calculate_md5 - calculates the md5 of @src
83 * @dst: Pointer to 16 bytes of allocated memory
84 * @crypt_stat: Pointer to crypt_stat struct for the current inode
85 * @src: Data to be md5'd
86 * @len: Length of @src
87 *
88 * Uses the allocated crypto context that crypt_stat references to
89 * generate the MD5 sum of the contents of src.
90 */
91static int ecryptfs_calculate_md5(char *dst,
92 struct ecryptfs_crypt_stat *crypt_stat,
93 char *src, int len)
94{
Michael Halcrow237fead2006-10-04 02:16:22 -070095 struct scatterlist sg;
Michael Halcrow565d97242006-10-30 22:07:17 -080096 struct hash_desc desc = {
97 .tfm = crypt_stat->hash_tfm,
98 .flags = CRYPTO_TFM_REQ_MAY_SLEEP
99 };
100 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700101
Michael Halcrow565d97242006-10-30 22:07:17 -0800102 mutex_lock(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700103 sg_init_one(&sg, (u8 *)src, len);
Michael Halcrow565d97242006-10-30 22:07:17 -0800104 if (!desc.tfm) {
105 desc.tfm = crypto_alloc_hash(ECRYPTFS_DEFAULT_HASH, 0,
106 CRYPTO_ALG_ASYNC);
107 if (IS_ERR(desc.tfm)) {
108 rc = PTR_ERR(desc.tfm);
Michael Halcrow237fead2006-10-04 02:16:22 -0700109 ecryptfs_printk(KERN_ERR, "Error attempting to "
Michael Halcrow565d97242006-10-30 22:07:17 -0800110 "allocate crypto context; rc = [%d]\n",
111 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700112 goto out;
113 }
Michael Halcrow565d97242006-10-30 22:07:17 -0800114 crypt_stat->hash_tfm = desc.tfm;
Michael Halcrow237fead2006-10-04 02:16:22 -0700115 }
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800116 rc = crypto_hash_init(&desc);
117 if (rc) {
118 printk(KERN_ERR
119 "%s: Error initializing crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700120 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800121 goto out;
122 }
123 rc = crypto_hash_update(&desc, &sg, len);
124 if (rc) {
125 printk(KERN_ERR
126 "%s: Error updating crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700127 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800128 goto out;
129 }
130 rc = crypto_hash_final(&desc, dst);
131 if (rc) {
132 printk(KERN_ERR
133 "%s: Error finalizing crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700134 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800135 goto out;
136 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700137out:
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800138 mutex_unlock(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700139 return rc;
140}
141
Michael Halcrowcd9d67d2007-10-16 01:28:04 -0700142static int ecryptfs_crypto_api_algify_cipher_name(char **algified_name,
143 char *cipher_name,
144 char *chaining_modifier)
Michael Halcrow8bba0662006-10-30 22:07:18 -0800145{
146 int cipher_name_len = strlen(cipher_name);
147 int chaining_modifier_len = strlen(chaining_modifier);
148 int algified_name_len;
149 int rc;
150
151 algified_name_len = (chaining_modifier_len + cipher_name_len + 3);
152 (*algified_name) = kmalloc(algified_name_len, GFP_KERNEL);
Michael Halcrow7bd473f2006-11-02 22:06:56 -0800153 if (!(*algified_name)) {
Michael Halcrow8bba0662006-10-30 22:07:18 -0800154 rc = -ENOMEM;
155 goto out;
156 }
157 snprintf((*algified_name), algified_name_len, "%s(%s)",
158 chaining_modifier, cipher_name);
159 rc = 0;
160out:
161 return rc;
162}
163
Michael Halcrow237fead2006-10-04 02:16:22 -0700164/**
165 * ecryptfs_derive_iv
166 * @iv: destination for the derived iv vale
167 * @crypt_stat: Pointer to crypt_stat struct for the current inode
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700168 * @offset: Offset of the extent whose IV we are to derive
Michael Halcrow237fead2006-10-04 02:16:22 -0700169 *
170 * Generate the initialization vector from the given root IV and page
171 * offset.
172 *
173 * Returns zero on success; non-zero on error.
174 */
Michael Halcrowa34f60f2009-01-06 14:41:58 -0800175int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat,
176 loff_t offset)
Michael Halcrow237fead2006-10-04 02:16:22 -0700177{
178 int rc = 0;
179 char dst[MD5_DIGEST_SIZE];
180 char src[ECRYPTFS_MAX_IV_BYTES + 16];
181
182 if (unlikely(ecryptfs_verbosity > 0)) {
183 ecryptfs_printk(KERN_DEBUG, "root iv:\n");
184 ecryptfs_dump_hex(crypt_stat->root_iv, crypt_stat->iv_bytes);
185 }
186 /* TODO: It is probably secure to just cast the least
187 * significant bits of the root IV into an unsigned long and
188 * add the offset to that rather than go through all this
189 * hashing business. -Halcrow */
190 memcpy(src, crypt_stat->root_iv, crypt_stat->iv_bytes);
191 memset((src + crypt_stat->iv_bytes), 0, 16);
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700192 snprintf((src + crypt_stat->iv_bytes), 16, "%lld", offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700193 if (unlikely(ecryptfs_verbosity > 0)) {
194 ecryptfs_printk(KERN_DEBUG, "source:\n");
195 ecryptfs_dump_hex(src, (crypt_stat->iv_bytes + 16));
196 }
197 rc = ecryptfs_calculate_md5(dst, crypt_stat, src,
198 (crypt_stat->iv_bytes + 16));
199 if (rc) {
200 ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
201 "MD5 while generating IV for a page\n");
202 goto out;
203 }
204 memcpy(iv, dst, crypt_stat->iv_bytes);
205 if (unlikely(ecryptfs_verbosity > 0)) {
206 ecryptfs_printk(KERN_DEBUG, "derived iv:\n");
207 ecryptfs_dump_hex(iv, crypt_stat->iv_bytes);
208 }
209out:
210 return rc;
211}
212
213/**
214 * ecryptfs_init_crypt_stat
215 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
216 *
217 * Initialize the crypt_stat structure.
218 */
219void
220ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
221{
222 memset((void *)crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
Michael Halcrowf4aad162007-10-16 01:27:53 -0700223 INIT_LIST_HEAD(&crypt_stat->keysig_list);
224 mutex_init(&crypt_stat->keysig_list_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700225 mutex_init(&crypt_stat->cs_mutex);
226 mutex_init(&crypt_stat->cs_tfm_mutex);
Michael Halcrow565d97242006-10-30 22:07:17 -0800227 mutex_init(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800228 crypt_stat->flags |= ECRYPTFS_STRUCT_INITIALIZED;
Michael Halcrow237fead2006-10-04 02:16:22 -0700229}
230
231/**
Michael Halcrowfcd12832007-10-16 01:28:01 -0700232 * ecryptfs_destroy_crypt_stat
Michael Halcrow237fead2006-10-04 02:16:22 -0700233 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
234 *
235 * Releases all memory associated with a crypt_stat struct.
236 */
Michael Halcrowfcd12832007-10-16 01:28:01 -0700237void ecryptfs_destroy_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
Michael Halcrow237fead2006-10-04 02:16:22 -0700238{
Michael Halcrowf4aad162007-10-16 01:27:53 -0700239 struct ecryptfs_key_sig *key_sig, *key_sig_tmp;
240
Michael Halcrow237fead2006-10-04 02:16:22 -0700241 if (crypt_stat->tfm)
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700242 crypto_free_ablkcipher(crypt_stat->tfm);
Michael Halcrow565d97242006-10-30 22:07:17 -0800243 if (crypt_stat->hash_tfm)
244 crypto_free_hash(crypt_stat->hash_tfm);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700245 list_for_each_entry_safe(key_sig, key_sig_tmp,
246 &crypt_stat->keysig_list, crypt_stat_list) {
247 list_del(&key_sig->crypt_stat_list);
248 kmem_cache_free(ecryptfs_key_sig_cache, key_sig);
249 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700250 memset(crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
251}
252
Michael Halcrowfcd12832007-10-16 01:28:01 -0700253void ecryptfs_destroy_mount_crypt_stat(
Michael Halcrow237fead2006-10-04 02:16:22 -0700254 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
255{
Michael Halcrowf4aad162007-10-16 01:27:53 -0700256 struct ecryptfs_global_auth_tok *auth_tok, *auth_tok_tmp;
257
258 if (!(mount_crypt_stat->flags & ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED))
259 return;
260 mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
261 list_for_each_entry_safe(auth_tok, auth_tok_tmp,
262 &mount_crypt_stat->global_auth_tok_list,
263 mount_crypt_stat_list) {
264 list_del(&auth_tok->mount_crypt_stat_list);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700265 if (auth_tok->global_auth_tok_key
266 && !(auth_tok->flags & ECRYPTFS_AUTH_TOK_INVALID))
267 key_put(auth_tok->global_auth_tok_key);
268 kmem_cache_free(ecryptfs_global_auth_tok_cache, auth_tok);
269 }
270 mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700271 memset(mount_crypt_stat, 0, sizeof(struct ecryptfs_mount_crypt_stat));
272}
273
274/**
275 * virt_to_scatterlist
276 * @addr: Virtual address
277 * @size: Size of data; should be an even multiple of the block size
278 * @sg: Pointer to scatterlist array; set to NULL to obtain only
279 * the number of scatterlist structs required in array
280 * @sg_size: Max array size
281 *
282 * Fills in a scatterlist array with page references for a passed
283 * virtual address.
284 *
285 * Returns the number of scatterlist structs in array used
286 */
287int virt_to_scatterlist(const void *addr, int size, struct scatterlist *sg,
288 int sg_size)
289{
290 int i = 0;
291 struct page *pg;
292 int offset;
293 int remainder_of_page;
294
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700295 sg_init_table(sg, sg_size);
296
Michael Halcrow237fead2006-10-04 02:16:22 -0700297 while (size > 0 && i < sg_size) {
298 pg = virt_to_page(addr);
299 offset = offset_in_page(addr);
Dan Carpentera07c48a2013-01-26 10:48:42 +0300300 sg_set_page(&sg[i], pg, 0, offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700301 remainder_of_page = PAGE_CACHE_SIZE - offset;
302 if (size >= remainder_of_page) {
Dan Carpentera07c48a2013-01-26 10:48:42 +0300303 sg[i].length = remainder_of_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700304 addr += remainder_of_page;
305 size -= remainder_of_page;
306 } else {
Dan Carpentera07c48a2013-01-26 10:48:42 +0300307 sg[i].length = size;
Michael Halcrow237fead2006-10-04 02:16:22 -0700308 addr += size;
309 size = 0;
310 }
311 i++;
312 }
313 if (size > 0)
314 return -ENOMEM;
315 return i;
316}
317
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700318struct extent_crypt_result {
319 struct completion completion;
320 int rc;
321};
322
323static void extent_crypt_complete(struct crypto_async_request *req, int rc)
324{
325 struct extent_crypt_result *ecr = req->data;
326
327 if (rc == -EINPROGRESS)
328 return;
329
330 ecr->rc = rc;
331 complete(&ecr->completion);
332}
333
Michael Halcrow237fead2006-10-04 02:16:22 -0700334/**
Tyler Hicks00a69942013-04-05 23:26:22 -0700335 * crypt_scatterlist
Michael Halcrow237fead2006-10-04 02:16:22 -0700336 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
Tyler Hicks00a69942013-04-05 23:26:22 -0700337 * @dest_sg: Destination of the data after performing the crypto operation
338 * @src_sg: Data to be encrypted or decrypted
339 * @size: Length of data
340 * @iv: IV to use
341 * @op: ENCRYPT or DECRYPT to indicate the desired operation
Michael Halcrow237fead2006-10-04 02:16:22 -0700342 *
Tyler Hicks00a69942013-04-05 23:26:22 -0700343 * Returns the number of bytes encrypted or decrypted; negative value on error
Michael Halcrow237fead2006-10-04 02:16:22 -0700344 */
Tyler Hicks00a69942013-04-05 23:26:22 -0700345static int crypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
346 struct scatterlist *dest_sg,
347 struct scatterlist *src_sg, int size,
348 unsigned char *iv, int op)
Michael Halcrow237fead2006-10-04 02:16:22 -0700349{
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700350 struct ablkcipher_request *req = NULL;
351 struct extent_crypt_result ecr;
Michael Halcrow237fead2006-10-04 02:16:22 -0700352 int rc = 0;
353
354 BUG_ON(!crypt_stat || !crypt_stat->tfm
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800355 || !(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED));
Michael Halcrow237fead2006-10-04 02:16:22 -0700356 if (unlikely(ecryptfs_verbosity > 0)) {
Tyler Hicksf24b3882010-11-15 17:36:38 -0600357 ecryptfs_printk(KERN_DEBUG, "Key size [%zd]; key:\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700358 crypt_stat->key_size);
359 ecryptfs_dump_hex(crypt_stat->key,
360 crypt_stat->key_size);
361 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700362
363 init_completion(&ecr.completion);
364
Michael Halcrow237fead2006-10-04 02:16:22 -0700365 mutex_lock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700366 req = ablkcipher_request_alloc(crypt_stat->tfm, GFP_NOFS);
367 if (!req) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700368 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700369 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700370 goto out;
371 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700372
373 ablkcipher_request_set_callback(req,
374 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
375 extent_crypt_complete, &ecr);
376 /* Consider doing this once, when the file is opened */
377 if (!(crypt_stat->flags & ECRYPTFS_KEY_SET)) {
378 rc = crypto_ablkcipher_setkey(crypt_stat->tfm, crypt_stat->key,
379 crypt_stat->key_size);
380 if (rc) {
381 ecryptfs_printk(KERN_ERR,
382 "Error setting key; rc = [%d]\n",
383 rc);
384 mutex_unlock(&crypt_stat->cs_tfm_mutex);
385 rc = -EINVAL;
386 goto out;
387 }
388 crypt_stat->flags |= ECRYPTFS_KEY_SET;
389 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700390 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700391 ablkcipher_request_set_crypt(req, src_sg, dest_sg, size, iv);
Tyler Hicks00a69942013-04-05 23:26:22 -0700392 rc = op == ENCRYPT ? crypto_ablkcipher_encrypt(req) :
393 crypto_ablkcipher_decrypt(req);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700394 if (rc == -EINPROGRESS || rc == -EBUSY) {
395 struct extent_crypt_result *ecr = req->base.data;
396
397 wait_for_completion(&ecr->completion);
398 rc = ecr->rc;
399 INIT_COMPLETION(ecr->completion);
400 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700401out:
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700402 ablkcipher_request_free(req);
Michael Halcrow237fead2006-10-04 02:16:22 -0700403 return rc;
404}
405
Michael Halcrow237fead2006-10-04 02:16:22 -0700406/**
Tyler Hicks24d15262013-04-15 17:28:09 -0700407 * lower_offset_for_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700408 *
409 * Convert an eCryptfs page index into a lower byte offset
410 */
Tyler Hicks24d15262013-04-15 17:28:09 -0700411static loff_t lower_offset_for_page(struct ecryptfs_crypt_stat *crypt_stat,
412 struct page *page)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700413{
Tyler Hicks24d15262013-04-15 17:28:09 -0700414 return ecryptfs_lower_header_size(crypt_stat) +
415 (page->index << PAGE_CACHE_SHIFT);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700416}
417
418/**
Tyler Hicksd78de612013-04-06 00:08:48 -0700419 * crypt_extent
420 * @dst_page: The page to write the result into
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700421 * @crypt_stat: crypt_stat containing cryptographic context for the
422 * encryption operation
Tyler Hicksd78de612013-04-06 00:08:48 -0700423 * @src_page: The page to read from
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700424 * @extent_offset: Page extent offset for use in generating IV
Tyler Hicksd78de612013-04-06 00:08:48 -0700425 * @op: ENCRYPT or DECRYPT to indicate the desired operation
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700426 *
Tyler Hicksd78de612013-04-06 00:08:48 -0700427 * Encrypts or decrypts one extent of data.
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700428 *
429 * Return zero on success; non-zero otherwise
430 */
Tyler Hicksd78de612013-04-06 00:08:48 -0700431static int crypt_extent(struct page *dst_page,
432 struct ecryptfs_crypt_stat *crypt_stat,
433 struct page *src_page,
434 unsigned long extent_offset, int op)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700435{
Tyler Hicksd78de612013-04-06 00:08:48 -0700436 pgoff_t page_index = op == ENCRYPT ? src_page->index : dst_page->index;
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700437 loff_t extent_base;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700438 char extent_iv[ECRYPTFS_MAX_IV_BYTES];
439 int rc;
440
Tyler Hicksd78de612013-04-06 00:08:48 -0700441 extent_base = (((loff_t)page_index)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700442 * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
443 rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
444 (extent_base + extent_offset));
445 if (rc) {
Joe Perches888d57b2010-11-10 15:46:16 -0800446 ecryptfs_printk(KERN_ERR, "Error attempting to derive IV for "
447 "extent [0x%.16llx]; rc = [%d]\n",
448 (unsigned long long)(extent_base + extent_offset), rc);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700449 goto out;
450 }
Tyler Hicksd78de612013-04-06 00:08:48 -0700451 rc = crypt_page_offset(crypt_stat, dst_page, src_page,
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700452 (extent_offset * crypt_stat->extent_size),
Tyler Hicksd78de612013-04-06 00:08:48 -0700453 crypt_stat->extent_size, extent_iv, op);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700454 if (rc < 0) {
Tyler Hicksd78de612013-04-06 00:08:48 -0700455 printk(KERN_ERR "%s: Error attempting to crypt page with "
456 "page_index = [%ld], extent_offset = [%ld]; "
457 "rc = [%d]\n", __func__, page_index, extent_offset, rc);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700458 goto out;
459 }
460 rc = 0;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700461out:
462 return rc;
463}
464
465/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700466 * ecryptfs_encrypt_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700467 * @page: Page mapped from the eCryptfs inode for the file; contains
468 * decrypted content that needs to be encrypted (to a temporary
469 * page; not in place) and written out to the lower file
Michael Halcrow237fead2006-10-04 02:16:22 -0700470 *
471 * Encrypt an eCryptfs page. This is done on a per-extent basis. Note
472 * that eCryptfs pages may straddle the lower pages -- for instance,
473 * if the file was created on a machine with an 8K page size
474 * (resulting in an 8K header), and then the file is copied onto a
475 * host with a 32K page size, then when reading page 0 of the eCryptfs
476 * file, 24K of page 0 of the lower file will be read and decrypted,
477 * and then 8K of page 1 of the lower file will be read and decrypted.
478 *
Michael Halcrow237fead2006-10-04 02:16:22 -0700479 * Returns zero on success; negative on error
480 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700481int ecryptfs_encrypt_page(struct page *page)
Michael Halcrow237fead2006-10-04 02:16:22 -0700482{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700483 struct inode *ecryptfs_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700484 struct ecryptfs_crypt_stat *crypt_stat;
Eric Sandeen7fcba052008-07-28 15:46:39 -0700485 char *enc_extent_virt;
486 struct page *enc_extent_page = NULL;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700487 loff_t extent_offset;
Tyler Hicks0f896172013-04-15 16:16:24 -0700488 loff_t lower_offset;
Michael Halcrow237fead2006-10-04 02:16:22 -0700489 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700490
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700491 ecryptfs_inode = page->mapping->host;
492 crypt_stat =
493 &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500494 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Eric Sandeen7fcba052008-07-28 15:46:39 -0700495 enc_extent_page = alloc_page(GFP_USER);
496 if (!enc_extent_page) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700497 rc = -ENOMEM;
498 ecryptfs_printk(KERN_ERR, "Error allocating memory for "
499 "encrypted extent\n");
500 goto out;
501 }
Tyler Hicks0f896172013-04-15 16:16:24 -0700502
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700503 for (extent_offset = 0;
504 extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
505 extent_offset++) {
Tyler Hicksd78de612013-04-06 00:08:48 -0700506 rc = crypt_extent(enc_extent_page, crypt_stat, page,
507 extent_offset, ENCRYPT);
Michael Halcrow237fead2006-10-04 02:16:22 -0700508 if (rc) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700509 printk(KERN_ERR "%s: Error encrypting extent; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700510 "rc = [%d]\n", __func__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700511 goto out;
512 }
Tyler Hicks0f896172013-04-15 16:16:24 -0700513 }
514
Tyler Hicks24d15262013-04-15 17:28:09 -0700515 lower_offset = lower_offset_for_page(crypt_stat, page);
Tyler Hicks0f896172013-04-15 16:16:24 -0700516 enc_extent_virt = kmap(enc_extent_page);
517 rc = ecryptfs_write_lower(ecryptfs_inode, enc_extent_virt, lower_offset,
518 PAGE_CACHE_SIZE);
519 kunmap(enc_extent_page);
520 if (rc < 0) {
521 ecryptfs_printk(KERN_ERR,
522 "Error attempting to write lower page; rc = [%d]\n",
523 rc);
524 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700525 }
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500526 rc = 0;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700527out:
Eric Sandeen7fcba052008-07-28 15:46:39 -0700528 if (enc_extent_page) {
Eric Sandeen7fcba052008-07-28 15:46:39 -0700529 __free_page(enc_extent_page);
530 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700531 return rc;
532}
533
Michael Halcrow237fead2006-10-04 02:16:22 -0700534/**
535 * ecryptfs_decrypt_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700536 * @page: Page mapped from the eCryptfs inode for the file; data read
537 * and decrypted from the lower file will be written into this
538 * page
Michael Halcrow237fead2006-10-04 02:16:22 -0700539 *
540 * Decrypt an eCryptfs page. This is done on a per-extent basis. Note
541 * that eCryptfs pages may straddle the lower pages -- for instance,
542 * if the file was created on a machine with an 8K page size
543 * (resulting in an 8K header), and then the file is copied onto a
544 * host with a 32K page size, then when reading page 0 of the eCryptfs
545 * file, 24K of page 0 of the lower file will be read and decrypted,
546 * and then 8K of page 1 of the lower file will be read and decrypted.
547 *
548 * Returns zero on success; negative on error
549 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700550int ecryptfs_decrypt_page(struct page *page)
Michael Halcrow237fead2006-10-04 02:16:22 -0700551{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700552 struct inode *ecryptfs_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700553 struct ecryptfs_crypt_stat *crypt_stat;
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700554 char *page_virt;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700555 unsigned long extent_offset;
Tyler Hicks0f896172013-04-15 16:16:24 -0700556 loff_t lower_offset;
Michael Halcrow237fead2006-10-04 02:16:22 -0700557 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700558
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700559 ecryptfs_inode = page->mapping->host;
560 crypt_stat =
561 &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500562 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Tyler Hicks0f896172013-04-15 16:16:24 -0700563
Tyler Hicks24d15262013-04-15 17:28:09 -0700564 lower_offset = lower_offset_for_page(crypt_stat, page);
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700565 page_virt = kmap(page);
566 rc = ecryptfs_read_lower(page_virt, lower_offset, PAGE_CACHE_SIZE,
Tyler Hicks0f896172013-04-15 16:16:24 -0700567 ecryptfs_inode);
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700568 kunmap(page);
Tyler Hicks0f896172013-04-15 16:16:24 -0700569 if (rc < 0) {
570 ecryptfs_printk(KERN_ERR,
571 "Error attempting to read lower page; rc = [%d]\n",
572 rc);
573 goto out;
574 }
575
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700576 for (extent_offset = 0;
577 extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
578 extent_offset++) {
Tyler Hicksd78de612013-04-06 00:08:48 -0700579 rc = crypt_extent(page, crypt_stat, page,
580 extent_offset, DECRYPT);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700581 if (rc) {
582 printk(KERN_ERR "%s: Error encrypting extent; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700583 "rc = [%d]\n", __func__, rc);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700584 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700585 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700586 }
587out:
Michael Halcrow237fead2006-10-04 02:16:22 -0700588 return rc;
589}
590
591/**
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700592 * crypt_page_offset
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700593 * @crypt_stat: The cryptographic context
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700594 * @dst_page: The page to write the result into
595 * @src_page: The page to read from
Tyler Hicks28916d12013-04-15 16:37:27 -0700596 * @offset: The byte offset into the dst_page and src_page
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700597 * @size: The number of bytes of data
598 * @iv: The initialization vector to use for the crypto operation
599 * @op: ENCRYPT or DECRYPT to indicate the desired operation
Michael Halcrow237fead2006-10-04 02:16:22 -0700600 *
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700601 * Returns the number of bytes encrypted or decrypted
Michael Halcrow237fead2006-10-04 02:16:22 -0700602 */
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700603static int crypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
Tyler Hicks28916d12013-04-15 16:37:27 -0700604 struct page *dst_page, struct page *src_page,
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700605 int offset, int size, unsigned char *iv, int op)
Michael Halcrow237fead2006-10-04 02:16:22 -0700606{
607 struct scatterlist src_sg, dst_sg;
608
Jens Axboe60c74f82007-10-22 19:43:30 +0200609 sg_init_table(&src_sg, 1);
610 sg_init_table(&dst_sg, 1);
611
Tyler Hicks28916d12013-04-15 16:37:27 -0700612 sg_set_page(&src_sg, src_page, size, offset);
613 sg_set_page(&dst_sg, dst_page, size, offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700614
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700615 return crypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv, op);
Michael Halcrow237fead2006-10-04 02:16:22 -0700616}
617
618#define ECRYPTFS_MAX_SCATTERLIST_LEN 4
619
620/**
621 * ecryptfs_init_crypt_ctx
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200622 * @crypt_stat: Uninitialized crypt stats structure
Michael Halcrow237fead2006-10-04 02:16:22 -0700623 *
624 * Initialize the crypto context.
625 *
626 * TODO: Performance: Keep a cache of initialized cipher contexts;
627 * only init if needed
628 */
629int ecryptfs_init_crypt_ctx(struct ecryptfs_crypt_stat *crypt_stat)
630{
Michael Halcrow8bba0662006-10-30 22:07:18 -0800631 char *full_alg_name;
Michael Halcrow237fead2006-10-04 02:16:22 -0700632 int rc = -EINVAL;
633
634 if (!crypt_stat->cipher) {
635 ecryptfs_printk(KERN_ERR, "No cipher specified\n");
636 goto out;
637 }
638 ecryptfs_printk(KERN_DEBUG,
639 "Initializing cipher [%s]; strlen = [%d]; "
Tyler Hicksf24b3882010-11-15 17:36:38 -0600640 "key_size_bits = [%zd]\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700641 crypt_stat->cipher, (int)strlen(crypt_stat->cipher),
642 crypt_stat->key_size << 3);
643 if (crypt_stat->tfm) {
644 rc = 0;
645 goto out;
646 }
647 mutex_lock(&crypt_stat->cs_tfm_mutex);
Michael Halcrow8bba0662006-10-30 22:07:18 -0800648 rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name,
649 crypt_stat->cipher, "cbc");
650 if (rc)
Eric Sandeenc8161f62007-12-22 14:03:26 -0800651 goto out_unlock;
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700652 crypt_stat->tfm = crypto_alloc_ablkcipher(full_alg_name, 0, 0);
Michael Halcrow8bba0662006-10-30 22:07:18 -0800653 kfree(full_alg_name);
Akinobu Mitade887772006-11-28 12:29:49 -0800654 if (IS_ERR(crypt_stat->tfm)) {
655 rc = PTR_ERR(crypt_stat->tfm);
Tyler Hicksb0105ea2009-08-11 00:36:32 -0500656 crypt_stat->tfm = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700657 ecryptfs_printk(KERN_ERR, "cryptfs: init_crypt_ctx(): "
658 "Error initializing cipher [%s]\n",
659 crypt_stat->cipher);
Eric Sandeenc8161f62007-12-22 14:03:26 -0800660 goto out_unlock;
Michael Halcrow237fead2006-10-04 02:16:22 -0700661 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700662 crypto_ablkcipher_set_flags(crypt_stat->tfm, CRYPTO_TFM_REQ_WEAK_KEY);
Michael Halcrow237fead2006-10-04 02:16:22 -0700663 rc = 0;
Eric Sandeenc8161f62007-12-22 14:03:26 -0800664out_unlock:
665 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700666out:
667 return rc;
668}
669
670static void set_extent_mask_and_shift(struct ecryptfs_crypt_stat *crypt_stat)
671{
672 int extent_size_tmp;
673
674 crypt_stat->extent_mask = 0xFFFFFFFF;
675 crypt_stat->extent_shift = 0;
676 if (crypt_stat->extent_size == 0)
677 return;
678 extent_size_tmp = crypt_stat->extent_size;
679 while ((extent_size_tmp & 0x01) == 0) {
680 extent_size_tmp >>= 1;
681 crypt_stat->extent_mask <<= 1;
682 crypt_stat->extent_shift++;
683 }
684}
685
686void ecryptfs_set_default_sizes(struct ecryptfs_crypt_stat *crypt_stat)
687{
688 /* Default values; may be overwritten as we are parsing the
689 * packets. */
690 crypt_stat->extent_size = ECRYPTFS_DEFAULT_EXTENT_SIZE;
691 set_extent_mask_and_shift(crypt_stat);
692 crypt_stat->iv_bytes = ECRYPTFS_DEFAULT_IV_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800693 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600694 crypt_stat->metadata_size = ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700695 else {
696 if (PAGE_CACHE_SIZE <= ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600697 crypt_stat->metadata_size =
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800698 ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700699 else
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600700 crypt_stat->metadata_size = PAGE_CACHE_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700701 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700702}
703
704/**
705 * ecryptfs_compute_root_iv
706 * @crypt_stats
707 *
708 * On error, sets the root IV to all 0's.
709 */
710int ecryptfs_compute_root_iv(struct ecryptfs_crypt_stat *crypt_stat)
711{
712 int rc = 0;
713 char dst[MD5_DIGEST_SIZE];
714
715 BUG_ON(crypt_stat->iv_bytes > MD5_DIGEST_SIZE);
716 BUG_ON(crypt_stat->iv_bytes <= 0);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800717 if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700718 rc = -EINVAL;
719 ecryptfs_printk(KERN_WARNING, "Session key not valid; "
720 "cannot generate root IV\n");
721 goto out;
722 }
723 rc = ecryptfs_calculate_md5(dst, crypt_stat, crypt_stat->key,
724 crypt_stat->key_size);
725 if (rc) {
726 ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
727 "MD5 while generating root IV\n");
728 goto out;
729 }
730 memcpy(crypt_stat->root_iv, dst, crypt_stat->iv_bytes);
731out:
732 if (rc) {
733 memset(crypt_stat->root_iv, 0, crypt_stat->iv_bytes);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800734 crypt_stat->flags |= ECRYPTFS_SECURITY_WARNING;
Michael Halcrow237fead2006-10-04 02:16:22 -0700735 }
736 return rc;
737}
738
739static void ecryptfs_generate_new_key(struct ecryptfs_crypt_stat *crypt_stat)
740{
741 get_random_bytes(crypt_stat->key, crypt_stat->key_size);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800742 crypt_stat->flags |= ECRYPTFS_KEY_VALID;
Michael Halcrow237fead2006-10-04 02:16:22 -0700743 ecryptfs_compute_root_iv(crypt_stat);
744 if (unlikely(ecryptfs_verbosity > 0)) {
745 ecryptfs_printk(KERN_DEBUG, "Generated new session key:\n");
746 ecryptfs_dump_hex(crypt_stat->key,
747 crypt_stat->key_size);
748 }
749}
750
751/**
Michael Halcrow17398952007-02-12 00:53:45 -0800752 * ecryptfs_copy_mount_wide_flags_to_inode_flags
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700753 * @crypt_stat: The inode's cryptographic context
754 * @mount_crypt_stat: The mount point's cryptographic context
Michael Halcrow17398952007-02-12 00:53:45 -0800755 *
756 * This function propagates the mount-wide flags to individual inode
757 * flags.
758 */
759static void ecryptfs_copy_mount_wide_flags_to_inode_flags(
760 struct ecryptfs_crypt_stat *crypt_stat,
761 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
762{
763 if (mount_crypt_stat->flags & ECRYPTFS_XATTR_METADATA_ENABLED)
764 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
765 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
766 crypt_stat->flags |= ECRYPTFS_VIEW_AS_ENCRYPTED;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800767 if (mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) {
768 crypt_stat->flags |= ECRYPTFS_ENCRYPT_FILENAMES;
769 if (mount_crypt_stat->flags
770 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)
771 crypt_stat->flags |= ECRYPTFS_ENCFN_USE_MOUNT_FNEK;
772 else if (mount_crypt_stat->flags
773 & ECRYPTFS_GLOBAL_ENCFN_USE_FEK)
774 crypt_stat->flags |= ECRYPTFS_ENCFN_USE_FEK;
775 }
Michael Halcrow17398952007-02-12 00:53:45 -0800776}
777
Michael Halcrowf4aad162007-10-16 01:27:53 -0700778static int ecryptfs_copy_mount_wide_sigs_to_inode_sigs(
779 struct ecryptfs_crypt_stat *crypt_stat,
780 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
781{
782 struct ecryptfs_global_auth_tok *global_auth_tok;
783 int rc = 0;
784
Roland Dreieraa061172009-07-01 15:48:18 -0700785 mutex_lock(&crypt_stat->keysig_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700786 mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
Roland Dreieraa061172009-07-01 15:48:18 -0700787
Michael Halcrowf4aad162007-10-16 01:27:53 -0700788 list_for_each_entry(global_auth_tok,
789 &mount_crypt_stat->global_auth_tok_list,
790 mount_crypt_stat_list) {
Tyler Hicks84814d62009-03-13 13:51:59 -0700791 if (global_auth_tok->flags & ECRYPTFS_AUTH_TOK_FNEK)
792 continue;
Michael Halcrowf4aad162007-10-16 01:27:53 -0700793 rc = ecryptfs_add_keysig(crypt_stat, global_auth_tok->sig);
794 if (rc) {
795 printk(KERN_ERR "Error adding keysig; rc = [%d]\n", rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700796 goto out;
797 }
798 }
Roland Dreieraa061172009-07-01 15:48:18 -0700799
Michael Halcrowf4aad162007-10-16 01:27:53 -0700800out:
Roland Dreieraa061172009-07-01 15:48:18 -0700801 mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
802 mutex_unlock(&crypt_stat->keysig_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700803 return rc;
804}
805
Michael Halcrow17398952007-02-12 00:53:45 -0800806/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700807 * ecryptfs_set_default_crypt_stat_vals
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700808 * @crypt_stat: The inode's cryptographic context
809 * @mount_crypt_stat: The mount point's cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -0700810 *
811 * Default values in the event that policy does not override them.
812 */
813static void ecryptfs_set_default_crypt_stat_vals(
814 struct ecryptfs_crypt_stat *crypt_stat,
815 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
816{
Michael Halcrow17398952007-02-12 00:53:45 -0800817 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
818 mount_crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700819 ecryptfs_set_default_sizes(crypt_stat);
820 strcpy(crypt_stat->cipher, ECRYPTFS_DEFAULT_CIPHER);
821 crypt_stat->key_size = ECRYPTFS_DEFAULT_KEY_BYTES;
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800822 crypt_stat->flags &= ~(ECRYPTFS_KEY_VALID);
Michael Halcrow237fead2006-10-04 02:16:22 -0700823 crypt_stat->file_version = ECRYPTFS_FILE_VERSION;
824 crypt_stat->mount_crypt_stat = mount_crypt_stat;
825}
826
827/**
828 * ecryptfs_new_file_context
Tyler Hicksb59db432011-11-21 17:31:02 -0600829 * @ecryptfs_inode: The eCryptfs inode
Michael Halcrow237fead2006-10-04 02:16:22 -0700830 *
831 * If the crypto context for the file has not yet been established,
832 * this is where we do that. Establishing a new crypto context
833 * involves the following decisions:
834 * - What cipher to use?
835 * - What set of authentication tokens to use?
836 * Here we just worry about getting enough information into the
837 * authentication tokens so that we know that they are available.
838 * We associate the available authentication tokens with the new file
839 * via the set of signatures in the crypt_stat struct. Later, when
840 * the headers are actually written out, we may again defer to
841 * userspace to perform the encryption of the session key; for the
842 * foreseeable future, this will be the case with public key packets.
843 *
844 * Returns zero on success; non-zero otherwise
845 */
Tyler Hicksb59db432011-11-21 17:31:02 -0600846int ecryptfs_new_file_context(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -0700847{
Michael Halcrow237fead2006-10-04 02:16:22 -0700848 struct ecryptfs_crypt_stat *crypt_stat =
Tyler Hicksb59db432011-11-21 17:31:02 -0600849 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700850 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
851 &ecryptfs_superblock_to_private(
Tyler Hicksb59db432011-11-21 17:31:02 -0600852 ecryptfs_inode->i_sb)->mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700853 int cipher_name_len;
Michael Halcrowf4aad162007-10-16 01:27:53 -0700854 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700855
856 ecryptfs_set_default_crypt_stat_vals(crypt_stat, mount_crypt_stat);
Michael Halcrowaf655dc2007-10-16 01:28:00 -0700857 crypt_stat->flags |= (ECRYPTFS_ENCRYPTED | ECRYPTFS_KEY_VALID);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700858 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
859 mount_crypt_stat);
860 rc = ecryptfs_copy_mount_wide_sigs_to_inode_sigs(crypt_stat,
861 mount_crypt_stat);
862 if (rc) {
863 printk(KERN_ERR "Error attempting to copy mount-wide key sigs "
864 "to the inode key sigs; rc = [%d]\n", rc);
865 goto out;
866 }
867 cipher_name_len =
868 strlen(mount_crypt_stat->global_default_cipher_name);
869 memcpy(crypt_stat->cipher,
870 mount_crypt_stat->global_default_cipher_name,
871 cipher_name_len);
872 crypt_stat->cipher[cipher_name_len] = '\0';
873 crypt_stat->key_size =
874 mount_crypt_stat->global_default_cipher_key_size;
875 ecryptfs_generate_new_key(crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700876 rc = ecryptfs_init_crypt_ctx(crypt_stat);
877 if (rc)
878 ecryptfs_printk(KERN_ERR, "Error initializing cryptographic "
879 "context for cipher [%s]: rc = [%d]\n",
880 crypt_stat->cipher, rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700881out:
Michael Halcrow237fead2006-10-04 02:16:22 -0700882 return rc;
883}
884
885/**
Tyler Hicks7a866172011-05-02 00:39:54 -0500886 * ecryptfs_validate_marker - check for the ecryptfs marker
Michael Halcrow237fead2006-10-04 02:16:22 -0700887 * @data: The data block in which to check
888 *
Tyler Hicks7a866172011-05-02 00:39:54 -0500889 * Returns zero if marker found; -EINVAL if not found
Michael Halcrow237fead2006-10-04 02:16:22 -0700890 */
Tyler Hicks7a866172011-05-02 00:39:54 -0500891static int ecryptfs_validate_marker(char *data)
Michael Halcrow237fead2006-10-04 02:16:22 -0700892{
893 u32 m_1, m_2;
894
Harvey Harrison29335c62008-07-23 21:30:06 -0700895 m_1 = get_unaligned_be32(data);
896 m_2 = get_unaligned_be32(data + 4);
Michael Halcrow237fead2006-10-04 02:16:22 -0700897 if ((m_1 ^ MAGIC_ECRYPTFS_MARKER) == m_2)
Tyler Hicks7a866172011-05-02 00:39:54 -0500898 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700899 ecryptfs_printk(KERN_DEBUG, "m_1 = [0x%.8x]; m_2 = [0x%.8x]; "
900 "MAGIC_ECRYPTFS_MARKER = [0x%.8x]\n", m_1, m_2,
901 MAGIC_ECRYPTFS_MARKER);
902 ecryptfs_printk(KERN_DEBUG, "(m_1 ^ MAGIC_ECRYPTFS_MARKER) = "
903 "[0x%.8x]\n", (m_1 ^ MAGIC_ECRYPTFS_MARKER));
Tyler Hicks7a866172011-05-02 00:39:54 -0500904 return -EINVAL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700905}
906
907struct ecryptfs_flag_map_elem {
908 u32 file_flag;
909 u32 local_flag;
910};
911
912/* Add support for additional flags by adding elements here. */
913static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = {
914 {0x00000001, ECRYPTFS_ENABLE_HMAC},
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800915 {0x00000002, ECRYPTFS_ENCRYPTED},
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800916 {0x00000004, ECRYPTFS_METADATA_IN_XATTR},
917 {0x00000008, ECRYPTFS_ENCRYPT_FILENAMES}
Michael Halcrow237fead2006-10-04 02:16:22 -0700918};
919
920/**
921 * ecryptfs_process_flags
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700922 * @crypt_stat: The cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -0700923 * @page_virt: Source data to be parsed
924 * @bytes_read: Updated with the number of bytes read
925 *
926 * Returns zero on success; non-zero if the flag set is invalid
927 */
928static int ecryptfs_process_flags(struct ecryptfs_crypt_stat *crypt_stat,
929 char *page_virt, int *bytes_read)
930{
931 int rc = 0;
932 int i;
933 u32 flags;
934
Harvey Harrison29335c62008-07-23 21:30:06 -0700935 flags = get_unaligned_be32(page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700936 for (i = 0; i < ((sizeof(ecryptfs_flag_map)
937 / sizeof(struct ecryptfs_flag_map_elem))); i++)
938 if (flags & ecryptfs_flag_map[i].file_flag) {
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800939 crypt_stat->flags |= ecryptfs_flag_map[i].local_flag;
Michael Halcrow237fead2006-10-04 02:16:22 -0700940 } else
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800941 crypt_stat->flags &= ~(ecryptfs_flag_map[i].local_flag);
Michael Halcrow237fead2006-10-04 02:16:22 -0700942 /* Version is in top 8 bits of the 32-bit flag vector */
943 crypt_stat->file_version = ((flags >> 24) & 0xFF);
944 (*bytes_read) = 4;
945 return rc;
946}
947
948/**
949 * write_ecryptfs_marker
950 * @page_virt: The pointer to in a page to begin writing the marker
951 * @written: Number of bytes written
952 *
953 * Marker = 0x3c81b7f5
954 */
955static void write_ecryptfs_marker(char *page_virt, size_t *written)
956{
957 u32 m_1, m_2;
958
959 get_random_bytes(&m_1, (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2));
960 m_2 = (m_1 ^ MAGIC_ECRYPTFS_MARKER);
Harvey Harrison29335c62008-07-23 21:30:06 -0700961 put_unaligned_be32(m_1, page_virt);
962 page_virt += (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2);
963 put_unaligned_be32(m_2, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700964 (*written) = MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
965}
966
Tyler Hicksf4e60e62010-02-11 00:02:32 -0600967void ecryptfs_write_crypt_stat_flags(char *page_virt,
968 struct ecryptfs_crypt_stat *crypt_stat,
969 size_t *written)
Michael Halcrow237fead2006-10-04 02:16:22 -0700970{
971 u32 flags = 0;
972 int i;
973
974 for (i = 0; i < ((sizeof(ecryptfs_flag_map)
975 / sizeof(struct ecryptfs_flag_map_elem))); i++)
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800976 if (crypt_stat->flags & ecryptfs_flag_map[i].local_flag)
Michael Halcrow237fead2006-10-04 02:16:22 -0700977 flags |= ecryptfs_flag_map[i].file_flag;
978 /* Version is in top 8 bits of the 32-bit flag vector */
979 flags |= ((((u8)crypt_stat->file_version) << 24) & 0xFF000000);
Harvey Harrison29335c62008-07-23 21:30:06 -0700980 put_unaligned_be32(flags, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700981 (*written) = 4;
982}
983
984struct ecryptfs_cipher_code_str_map_elem {
985 char cipher_str[16];
Trevor Highland19e66a62008-02-06 01:38:36 -0800986 u8 cipher_code;
Michael Halcrow237fead2006-10-04 02:16:22 -0700987};
988
989/* Add support for additional ciphers by adding elements here. The
990 * cipher_code is whatever OpenPGP applicatoins use to identify the
991 * ciphers. List in order of probability. */
992static struct ecryptfs_cipher_code_str_map_elem
993ecryptfs_cipher_code_str_map[] = {
994 {"aes",RFC2440_CIPHER_AES_128 },
995 {"blowfish", RFC2440_CIPHER_BLOWFISH},
996 {"des3_ede", RFC2440_CIPHER_DES3_EDE},
997 {"cast5", RFC2440_CIPHER_CAST_5},
998 {"twofish", RFC2440_CIPHER_TWOFISH},
999 {"cast6", RFC2440_CIPHER_CAST_6},
1000 {"aes", RFC2440_CIPHER_AES_192},
1001 {"aes", RFC2440_CIPHER_AES_256}
1002};
1003
1004/**
1005 * ecryptfs_code_for_cipher_string
Michael Halcrow9c79f342009-01-06 14:41:57 -08001006 * @cipher_name: The string alias for the cipher
1007 * @key_bytes: Length of key in bytes; used for AES code selection
Michael Halcrow237fead2006-10-04 02:16:22 -07001008 *
1009 * Returns zero on no match, or the cipher code on match
1010 */
Michael Halcrow9c79f342009-01-06 14:41:57 -08001011u8 ecryptfs_code_for_cipher_string(char *cipher_name, size_t key_bytes)
Michael Halcrow237fead2006-10-04 02:16:22 -07001012{
1013 int i;
Trevor Highland19e66a62008-02-06 01:38:36 -08001014 u8 code = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001015 struct ecryptfs_cipher_code_str_map_elem *map =
1016 ecryptfs_cipher_code_str_map;
1017
Michael Halcrow9c79f342009-01-06 14:41:57 -08001018 if (strcmp(cipher_name, "aes") == 0) {
1019 switch (key_bytes) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001020 case 16:
1021 code = RFC2440_CIPHER_AES_128;
1022 break;
1023 case 24:
1024 code = RFC2440_CIPHER_AES_192;
1025 break;
1026 case 32:
1027 code = RFC2440_CIPHER_AES_256;
1028 }
1029 } else {
1030 for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
Michael Halcrow9c79f342009-01-06 14:41:57 -08001031 if (strcmp(cipher_name, map[i].cipher_str) == 0) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001032 code = map[i].cipher_code;
1033 break;
1034 }
1035 }
1036 return code;
1037}
1038
1039/**
1040 * ecryptfs_cipher_code_to_string
1041 * @str: Destination to write out the cipher name
1042 * @cipher_code: The code to convert to cipher name string
1043 *
1044 * Returns zero on success
1045 */
Trevor Highland19e66a62008-02-06 01:38:36 -08001046int ecryptfs_cipher_code_to_string(char *str, u8 cipher_code)
Michael Halcrow237fead2006-10-04 02:16:22 -07001047{
1048 int rc = 0;
1049 int i;
1050
1051 str[0] = '\0';
1052 for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
1053 if (cipher_code == ecryptfs_cipher_code_str_map[i].cipher_code)
1054 strcpy(str, ecryptfs_cipher_code_str_map[i].cipher_str);
1055 if (str[0] == '\0') {
1056 ecryptfs_printk(KERN_WARNING, "Cipher code not recognized: "
1057 "[%d]\n", cipher_code);
1058 rc = -EINVAL;
1059 }
1060 return rc;
1061}
1062
Tyler Hicks778aeb42011-05-24 04:56:23 -05001063int ecryptfs_read_and_validate_header_region(struct inode *inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001064{
Tyler Hicks778aeb42011-05-24 04:56:23 -05001065 u8 file_size[ECRYPTFS_SIZE_AND_MARKER_BYTES];
1066 u8 *marker = file_size + ECRYPTFS_FILE_SIZE_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001067 int rc;
1068
Tyler Hicks778aeb42011-05-24 04:56:23 -05001069 rc = ecryptfs_read_lower(file_size, 0, ECRYPTFS_SIZE_AND_MARKER_BYTES,
1070 inode);
1071 if (rc < ECRYPTFS_SIZE_AND_MARKER_BYTES)
1072 return rc >= 0 ? -EINVAL : rc;
1073 rc = ecryptfs_validate_marker(marker);
1074 if (!rc)
1075 ecryptfs_i_size_init(file_size, inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001076 return rc;
1077}
1078
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001079void
1080ecryptfs_write_header_metadata(char *virt,
1081 struct ecryptfs_crypt_stat *crypt_stat,
1082 size_t *written)
Michael Halcrow237fead2006-10-04 02:16:22 -07001083{
1084 u32 header_extent_size;
1085 u16 num_header_extents_at_front;
1086
Michael Halcrow45eaab72007-10-16 01:28:05 -07001087 header_extent_size = (u32)crypt_stat->extent_size;
Michael Halcrow237fead2006-10-04 02:16:22 -07001088 num_header_extents_at_front =
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001089 (u16)(crypt_stat->metadata_size / crypt_stat->extent_size);
Harvey Harrison29335c62008-07-23 21:30:06 -07001090 put_unaligned_be32(header_extent_size, virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001091 virt += 4;
Harvey Harrison29335c62008-07-23 21:30:06 -07001092 put_unaligned_be16(num_header_extents_at_front, virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001093 (*written) = 6;
1094}
1095
Tyler Hicks30632872011-05-24 05:11:12 -05001096struct kmem_cache *ecryptfs_header_cache;
Michael Halcrow237fead2006-10-04 02:16:22 -07001097
1098/**
1099 * ecryptfs_write_headers_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001100 * @page_virt: The virtual address to write the headers to
Eric Sandeen87b811c2008-10-29 14:01:08 -07001101 * @max: The size of memory allocated at page_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001102 * @size: Set to the number of bytes written by this function
1103 * @crypt_stat: The cryptographic context
1104 * @ecryptfs_dentry: The eCryptfs dentry
Michael Halcrow237fead2006-10-04 02:16:22 -07001105 *
1106 * Format version: 1
1107 *
1108 * Header Extent:
1109 * Octets 0-7: Unencrypted file size (big-endian)
1110 * Octets 8-15: eCryptfs special marker
1111 * Octets 16-19: Flags
1112 * Octet 16: File format version number (between 0 and 255)
1113 * Octets 17-18: Reserved
1114 * Octet 19: Bit 1 (lsb): Reserved
1115 * Bit 2: Encrypted?
1116 * Bits 3-8: Reserved
1117 * Octets 20-23: Header extent size (big-endian)
1118 * Octets 24-25: Number of header extents at front of file
1119 * (big-endian)
1120 * Octet 26: Begin RFC 2440 authentication token packet set
1121 * Data Extent 0:
1122 * Lower data (CBC encrypted)
1123 * Data Extent 1:
1124 * Lower data (CBC encrypted)
1125 * ...
1126 *
1127 * Returns zero on success
1128 */
Eric Sandeen87b811c2008-10-29 14:01:08 -07001129static int ecryptfs_write_headers_virt(char *page_virt, size_t max,
1130 size_t *size,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001131 struct ecryptfs_crypt_stat *crypt_stat,
1132 struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -07001133{
1134 int rc;
1135 size_t written;
1136 size_t offset;
1137
1138 offset = ECRYPTFS_FILE_SIZE_BYTES;
1139 write_ecryptfs_marker((page_virt + offset), &written);
1140 offset += written;
Tyler Hicksf4e60e62010-02-11 00:02:32 -06001141 ecryptfs_write_crypt_stat_flags((page_virt + offset), crypt_stat,
1142 &written);
Michael Halcrow237fead2006-10-04 02:16:22 -07001143 offset += written;
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001144 ecryptfs_write_header_metadata((page_virt + offset), crypt_stat,
1145 &written);
Michael Halcrow237fead2006-10-04 02:16:22 -07001146 offset += written;
1147 rc = ecryptfs_generate_key_packet_set((page_virt + offset), crypt_stat,
1148 ecryptfs_dentry, &written,
Eric Sandeen87b811c2008-10-29 14:01:08 -07001149 max - offset);
Michael Halcrow237fead2006-10-04 02:16:22 -07001150 if (rc)
1151 ecryptfs_printk(KERN_WARNING, "Error generating key packet "
1152 "set; rc = [%d]\n", rc);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001153 if (size) {
1154 offset += written;
1155 *size = offset;
1156 }
1157 return rc;
1158}
1159
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001160static int
Tyler Hicksb59db432011-11-21 17:31:02 -06001161ecryptfs_write_metadata_to_contents(struct inode *ecryptfs_inode,
Tyler Hicks8faece52009-03-20 01:25:09 -05001162 char *virt, size_t virt_len)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001163{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001164 int rc;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001165
Tyler Hicksb59db432011-11-21 17:31:02 -06001166 rc = ecryptfs_write_lower(ecryptfs_inode, virt,
Tyler Hicks8faece52009-03-20 01:25:09 -05001167 0, virt_len);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001168 if (rc < 0)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001169 printk(KERN_ERR "%s: Error attempting to write header "
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001170 "information to lower file; rc = [%d]\n", __func__, rc);
1171 else
1172 rc = 0;
Michael Halcrow70456602007-02-12 00:53:48 -08001173 return rc;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001174}
1175
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001176static int
1177ecryptfs_write_metadata_to_xattr(struct dentry *ecryptfs_dentry,
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001178 char *page_virt, size_t size)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001179{
1180 int rc;
1181
1182 rc = ecryptfs_setxattr(ecryptfs_dentry, ECRYPTFS_XATTR_NAME, page_virt,
1183 size, 0);
Michael Halcrow237fead2006-10-04 02:16:22 -07001184 return rc;
1185}
1186
Tyler Hicks8faece52009-03-20 01:25:09 -05001187static unsigned long ecryptfs_get_zeroed_pages(gfp_t gfp_mask,
1188 unsigned int order)
1189{
1190 struct page *page;
1191
1192 page = alloc_pages(gfp_mask | __GFP_ZERO, order);
1193 if (page)
1194 return (unsigned long) page_address(page);
1195 return 0;
1196}
1197
Michael Halcrow237fead2006-10-04 02:16:22 -07001198/**
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001199 * ecryptfs_write_metadata
Tyler Hicksb59db432011-11-21 17:31:02 -06001200 * @ecryptfs_dentry: The eCryptfs dentry, which should be negative
1201 * @ecryptfs_inode: The newly created eCryptfs inode
Michael Halcrow237fead2006-10-04 02:16:22 -07001202 *
1203 * Write the file headers out. This will likely involve a userspace
1204 * callout, in which the session key is encrypted with one or more
1205 * public keys and/or the passphrase necessary to do the encryption is
1206 * retrieved via a prompt. Exactly what happens at this point should
1207 * be policy-dependent.
1208 *
1209 * Returns zero on success; non-zero on error
1210 */
Tyler Hicksb59db432011-11-21 17:31:02 -06001211int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry,
1212 struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -07001213{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001214 struct ecryptfs_crypt_stat *crypt_stat =
Tyler Hicksb59db432011-11-21 17:31:02 -06001215 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Tyler Hicks8faece52009-03-20 01:25:09 -05001216 unsigned int order;
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001217 char *virt;
Tyler Hicks8faece52009-03-20 01:25:09 -05001218 size_t virt_len;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001219 size_t size = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001220 int rc = 0;
1221
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001222 if (likely(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
1223 if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001224 printk(KERN_ERR "Key is invalid; bailing out\n");
Michael Halcrow237fead2006-10-04 02:16:22 -07001225 rc = -EINVAL;
1226 goto out;
1227 }
1228 } else {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001229 printk(KERN_WARNING "%s: Encrypted flag not set\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001230 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001231 rc = -EINVAL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001232 goto out;
1233 }
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001234 virt_len = crypt_stat->metadata_size;
Tyler Hicks8faece52009-03-20 01:25:09 -05001235 order = get_order(virt_len);
Michael Halcrow237fead2006-10-04 02:16:22 -07001236 /* Released in this function */
Tyler Hicks8faece52009-03-20 01:25:09 -05001237 virt = (char *)ecryptfs_get_zeroed_pages(GFP_KERNEL, order);
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001238 if (!virt) {
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001239 printk(KERN_ERR "%s: Out of memory\n", __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001240 rc = -ENOMEM;
1241 goto out;
1242 }
Tyler Hicksbd4f0fe2011-02-23 00:14:19 -06001243 /* Zeroed page ensures the in-header unencrypted i_size is set to 0 */
Tyler Hicks8faece52009-03-20 01:25:09 -05001244 rc = ecryptfs_write_headers_virt(virt, virt_len, &size, crypt_stat,
1245 ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -07001246 if (unlikely(rc)) {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001247 printk(KERN_ERR "%s: Error whilst writing headers; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001248 __func__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001249 goto out_free;
1250 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001251 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Tyler Hicks8faece52009-03-20 01:25:09 -05001252 rc = ecryptfs_write_metadata_to_xattr(ecryptfs_dentry, virt,
1253 size);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001254 else
Tyler Hicksb59db432011-11-21 17:31:02 -06001255 rc = ecryptfs_write_metadata_to_contents(ecryptfs_inode, virt,
Tyler Hicks8faece52009-03-20 01:25:09 -05001256 virt_len);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001257 if (rc) {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001258 printk(KERN_ERR "%s: Error writing metadata out to lower file; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001259 "rc = [%d]\n", __func__, rc);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001260 goto out_free;
Michael Halcrow237fead2006-10-04 02:16:22 -07001261 }
Michael Halcrow237fead2006-10-04 02:16:22 -07001262out_free:
Tyler Hicks8faece52009-03-20 01:25:09 -05001263 free_pages((unsigned long)virt, order);
Michael Halcrow237fead2006-10-04 02:16:22 -07001264out:
1265 return rc;
1266}
1267
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001268#define ECRYPTFS_DONT_VALIDATE_HEADER_SIZE 0
1269#define ECRYPTFS_VALIDATE_HEADER_SIZE 1
Michael Halcrow237fead2006-10-04 02:16:22 -07001270static int parse_header_metadata(struct ecryptfs_crypt_stat *crypt_stat,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001271 char *virt, int *bytes_read,
1272 int validate_header_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001273{
1274 int rc = 0;
1275 u32 header_extent_size;
1276 u16 num_header_extents_at_front;
1277
Harvey Harrison29335c62008-07-23 21:30:06 -07001278 header_extent_size = get_unaligned_be32(virt);
1279 virt += sizeof(__be32);
1280 num_header_extents_at_front = get_unaligned_be16(virt);
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001281 crypt_stat->metadata_size = (((size_t)num_header_extents_at_front
1282 * (size_t)header_extent_size));
Harvey Harrison29335c62008-07-23 21:30:06 -07001283 (*bytes_read) = (sizeof(__be32) + sizeof(__be16));
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001284 if ((validate_header_size == ECRYPTFS_VALIDATE_HEADER_SIZE)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001285 && (crypt_stat->metadata_size
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001286 < ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001287 rc = -EINVAL;
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001288 printk(KERN_WARNING "Invalid header size: [%zd]\n",
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001289 crypt_stat->metadata_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001290 }
1291 return rc;
1292}
1293
1294/**
1295 * set_default_header_data
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001296 * @crypt_stat: The cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -07001297 *
1298 * For version 0 file format; this function is only for backwards
1299 * compatibility for files created with the prior versions of
1300 * eCryptfs.
1301 */
1302static void set_default_header_data(struct ecryptfs_crypt_stat *crypt_stat)
1303{
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001304 crypt_stat->metadata_size = ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow237fead2006-10-04 02:16:22 -07001305}
1306
Tyler Hicks3aeb86e2011-03-15 14:54:00 -05001307void ecryptfs_i_size_init(const char *page_virt, struct inode *inode)
1308{
1309 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
1310 struct ecryptfs_crypt_stat *crypt_stat;
1311 u64 file_size;
1312
1313 crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
1314 mount_crypt_stat =
1315 &ecryptfs_superblock_to_private(inode->i_sb)->mount_crypt_stat;
1316 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) {
1317 file_size = i_size_read(ecryptfs_inode_to_lower(inode));
1318 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
1319 file_size += crypt_stat->metadata_size;
1320 } else
1321 file_size = get_unaligned_be64(page_virt);
1322 i_size_write(inode, (loff_t)file_size);
1323 crypt_stat->flags |= ECRYPTFS_I_SIZE_INITIALIZED;
1324}
1325
Michael Halcrow237fead2006-10-04 02:16:22 -07001326/**
1327 * ecryptfs_read_headers_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001328 * @page_virt: The virtual address into which to read the headers
1329 * @crypt_stat: The cryptographic context
1330 * @ecryptfs_dentry: The eCryptfs dentry
1331 * @validate_header_size: Whether to validate the header size while reading
Michael Halcrow237fead2006-10-04 02:16:22 -07001332 *
1333 * Read/parse the header data. The header format is detailed in the
1334 * comment block for the ecryptfs_write_headers_virt() function.
1335 *
1336 * Returns zero on success
1337 */
1338static int ecryptfs_read_headers_virt(char *page_virt,
1339 struct ecryptfs_crypt_stat *crypt_stat,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001340 struct dentry *ecryptfs_dentry,
1341 int validate_header_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001342{
1343 int rc = 0;
1344 int offset;
1345 int bytes_read;
1346
1347 ecryptfs_set_default_sizes(crypt_stat);
1348 crypt_stat->mount_crypt_stat = &ecryptfs_superblock_to_private(
1349 ecryptfs_dentry->d_sb)->mount_crypt_stat;
1350 offset = ECRYPTFS_FILE_SIZE_BYTES;
Tyler Hicks7a866172011-05-02 00:39:54 -05001351 rc = ecryptfs_validate_marker(page_virt + offset);
1352 if (rc)
Michael Halcrow237fead2006-10-04 02:16:22 -07001353 goto out;
Tyler Hicks3aeb86e2011-03-15 14:54:00 -05001354 if (!(crypt_stat->flags & ECRYPTFS_I_SIZE_INITIALIZED))
1355 ecryptfs_i_size_init(page_virt, ecryptfs_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -07001356 offset += MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
1357 rc = ecryptfs_process_flags(crypt_stat, (page_virt + offset),
1358 &bytes_read);
1359 if (rc) {
1360 ecryptfs_printk(KERN_WARNING, "Error processing flags\n");
1361 goto out;
1362 }
1363 if (crypt_stat->file_version > ECRYPTFS_SUPPORTED_FILE_VERSION) {
1364 ecryptfs_printk(KERN_WARNING, "File version is [%d]; only "
1365 "file version [%d] is supported by this "
1366 "version of eCryptfs\n",
1367 crypt_stat->file_version,
1368 ECRYPTFS_SUPPORTED_FILE_VERSION);
1369 rc = -EINVAL;
1370 goto out;
1371 }
1372 offset += bytes_read;
1373 if (crypt_stat->file_version >= 1) {
1374 rc = parse_header_metadata(crypt_stat, (page_virt + offset),
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001375 &bytes_read, validate_header_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001376 if (rc) {
1377 ecryptfs_printk(KERN_WARNING, "Error reading header "
1378 "metadata; rc = [%d]\n", rc);
1379 }
1380 offset += bytes_read;
1381 } else
1382 set_default_header_data(crypt_stat);
1383 rc = ecryptfs_parse_packet_set(crypt_stat, (page_virt + offset),
1384 ecryptfs_dentry);
1385out:
1386 return rc;
1387}
1388
1389/**
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001390 * ecryptfs_read_xattr_region
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001391 * @page_virt: The vitual address into which to read the xattr data
Michael Halcrow2ed92552007-10-16 01:28:10 -07001392 * @ecryptfs_inode: The eCryptfs inode
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001393 *
1394 * Attempts to read the crypto metadata from the extended attribute
1395 * region of the lower file.
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001396 *
1397 * Returns zero on success; non-zero on error
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001398 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001399int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001400{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001401 struct dentry *lower_dentry =
1402 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001403 ssize_t size;
1404 int rc = 0;
1405
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001406 size = ecryptfs_getxattr_lower(lower_dentry, ECRYPTFS_XATTR_NAME,
1407 page_virt, ECRYPTFS_DEFAULT_EXTENT_SIZE);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001408 if (size < 0) {
Michael Halcrow25bd8172008-02-06 01:38:35 -08001409 if (unlikely(ecryptfs_verbosity > 0))
1410 printk(KERN_INFO "Error attempting to read the [%s] "
1411 "xattr from the lower file; return value = "
1412 "[%zd]\n", ECRYPTFS_XATTR_NAME, size);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001413 rc = -EINVAL;
1414 goto out;
1415 }
1416out:
1417 return rc;
1418}
1419
Tyler Hicks778aeb42011-05-24 04:56:23 -05001420int ecryptfs_read_and_validate_xattr_region(struct dentry *dentry,
Tyler Hicks3b06b3e2011-05-24 03:49:02 -05001421 struct inode *inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001422{
Tyler Hicks778aeb42011-05-24 04:56:23 -05001423 u8 file_size[ECRYPTFS_SIZE_AND_MARKER_BYTES];
1424 u8 *marker = file_size + ECRYPTFS_FILE_SIZE_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001425 int rc;
1426
Tyler Hicks778aeb42011-05-24 04:56:23 -05001427 rc = ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry),
1428 ECRYPTFS_XATTR_NAME, file_size,
1429 ECRYPTFS_SIZE_AND_MARKER_BYTES);
1430 if (rc < ECRYPTFS_SIZE_AND_MARKER_BYTES)
1431 return rc >= 0 ? -EINVAL : rc;
1432 rc = ecryptfs_validate_marker(marker);
1433 if (!rc)
1434 ecryptfs_i_size_init(file_size, inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001435 return rc;
1436}
1437
1438/**
1439 * ecryptfs_read_metadata
1440 *
1441 * Common entry point for reading file metadata. From here, we could
1442 * retrieve the header information from the header region of the file,
1443 * the xattr region of the file, or some other repostory that is
1444 * stored separately from the file itself. The current implementation
1445 * supports retrieving the metadata information from the file contents
1446 * and from the xattr region.
Michael Halcrow237fead2006-10-04 02:16:22 -07001447 *
1448 * Returns zero if valid headers found and parsed; non-zero otherwise
1449 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001450int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -07001451{
Tim Gardnerbb450362012-01-12 16:31:55 +01001452 int rc;
1453 char *page_virt;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001454 struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -07001455 struct ecryptfs_crypt_stat *crypt_stat =
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001456 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001457 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
1458 &ecryptfs_superblock_to_private(
1459 ecryptfs_dentry->d_sb)->mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -07001460
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001461 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
1462 mount_crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -07001463 /* Read the first page from the underlying file */
Tyler Hicks30632872011-05-24 05:11:12 -05001464 page_virt = kmem_cache_alloc(ecryptfs_header_cache, GFP_USER);
Michael Halcrow237fead2006-10-04 02:16:22 -07001465 if (!page_virt) {
1466 rc = -ENOMEM;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001467 printk(KERN_ERR "%s: Unable to allocate page_virt\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001468 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001469 goto out;
1470 }
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001471 rc = ecryptfs_read_lower(page_virt, 0, crypt_stat->extent_size,
1472 ecryptfs_inode);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001473 if (rc >= 0)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001474 rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1475 ecryptfs_dentry,
1476 ECRYPTFS_VALIDATE_HEADER_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -07001477 if (rc) {
Tim Gardnerbb450362012-01-12 16:31:55 +01001478 /* metadata is not in the file header, so try xattrs */
Tyler Hicks1984c232010-02-10 23:17:44 -06001479 memset(page_virt, 0, PAGE_CACHE_SIZE);
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001480 rc = ecryptfs_read_xattr_region(page_virt, ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001481 if (rc) {
1482 printk(KERN_DEBUG "Valid eCryptfs headers not found in "
Tim Gardner30373dc2012-01-12 16:31:55 +01001483 "file header region or xattr region, inode %lu\n",
1484 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001485 rc = -EINVAL;
1486 goto out;
1487 }
1488 rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1489 ecryptfs_dentry,
1490 ECRYPTFS_DONT_VALIDATE_HEADER_SIZE);
1491 if (rc) {
1492 printk(KERN_DEBUG "Valid eCryptfs headers not found in "
Tim Gardner30373dc2012-01-12 16:31:55 +01001493 "file xattr region either, inode %lu\n",
1494 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001495 rc = -EINVAL;
1496 }
1497 if (crypt_stat->mount_crypt_stat->flags
1498 & ECRYPTFS_XATTR_METADATA_ENABLED) {
1499 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
1500 } else {
1501 printk(KERN_WARNING "Attempt to access file with "
1502 "crypto metadata only in the extended attribute "
1503 "region, but eCryptfs was mounted without "
1504 "xattr support enabled. eCryptfs will not treat "
Tim Gardner30373dc2012-01-12 16:31:55 +01001505 "this like an encrypted file, inode %lu\n",
1506 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001507 rc = -EINVAL;
1508 }
Michael Halcrow237fead2006-10-04 02:16:22 -07001509 }
1510out:
1511 if (page_virt) {
1512 memset(page_virt, 0, PAGE_CACHE_SIZE);
Tyler Hicks30632872011-05-24 05:11:12 -05001513 kmem_cache_free(ecryptfs_header_cache, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001514 }
1515 return rc;
1516}
1517
1518/**
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001519 * ecryptfs_encrypt_filename - encrypt filename
1520 *
1521 * CBC-encrypts the filename. We do not want to encrypt the same
1522 * filename with the same key and IV, which may happen with hard
1523 * links, so we prepend random bits to each filename.
1524 *
1525 * Returns zero on success; non-zero otherwise
1526 */
1527static int
1528ecryptfs_encrypt_filename(struct ecryptfs_filename *filename,
1529 struct ecryptfs_crypt_stat *crypt_stat,
1530 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
1531{
1532 int rc = 0;
1533
1534 filename->encrypted_filename = NULL;
1535 filename->encrypted_filename_size = 0;
1536 if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
1537 || (mount_crypt_stat && (mount_crypt_stat->flags
1538 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
1539 size_t packet_size;
1540 size_t remaining_bytes;
1541
1542 rc = ecryptfs_write_tag_70_packet(
1543 NULL, NULL,
1544 &filename->encrypted_filename_size,
1545 mount_crypt_stat, NULL,
1546 filename->filename_size);
1547 if (rc) {
1548 printk(KERN_ERR "%s: Error attempting to get packet "
1549 "size for tag 72; rc = [%d]\n", __func__,
1550 rc);
1551 filename->encrypted_filename_size = 0;
1552 goto out;
1553 }
1554 filename->encrypted_filename =
1555 kmalloc(filename->encrypted_filename_size, GFP_KERNEL);
1556 if (!filename->encrypted_filename) {
1557 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowdf261c52009-01-06 14:42:02 -08001558 "to kmalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001559 filename->encrypted_filename_size);
1560 rc = -ENOMEM;
1561 goto out;
1562 }
1563 remaining_bytes = filename->encrypted_filename_size;
1564 rc = ecryptfs_write_tag_70_packet(filename->encrypted_filename,
1565 &remaining_bytes,
1566 &packet_size,
1567 mount_crypt_stat,
1568 filename->filename,
1569 filename->filename_size);
1570 if (rc) {
1571 printk(KERN_ERR "%s: Error attempting to generate "
1572 "tag 70 packet; rc = [%d]\n", __func__,
1573 rc);
1574 kfree(filename->encrypted_filename);
1575 filename->encrypted_filename = NULL;
1576 filename->encrypted_filename_size = 0;
1577 goto out;
1578 }
1579 filename->encrypted_filename_size = packet_size;
1580 } else {
1581 printk(KERN_ERR "%s: No support for requested filename "
1582 "encryption method in this release\n", __func__);
Tyler Hicksdf6ad332009-08-21 04:27:46 -05001583 rc = -EOPNOTSUPP;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001584 goto out;
1585 }
1586out:
1587 return rc;
1588}
1589
1590static int ecryptfs_copy_filename(char **copied_name, size_t *copied_name_size,
1591 const char *name, size_t name_size)
1592{
1593 int rc = 0;
1594
Tyler Hicksfd9fc842009-02-06 18:06:51 -06001595 (*copied_name) = kmalloc((name_size + 1), GFP_KERNEL);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001596 if (!(*copied_name)) {
1597 rc = -ENOMEM;
1598 goto out;
1599 }
1600 memcpy((void *)(*copied_name), (void *)name, name_size);
1601 (*copied_name)[(name_size)] = '\0'; /* Only for convenience
1602 * in printing out the
1603 * string in debug
1604 * messages */
Tyler Hicksfd9fc842009-02-06 18:06:51 -06001605 (*copied_name_size) = name_size;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001606out:
1607 return rc;
1608}
1609
1610/**
Michael Halcrowf4aad162007-10-16 01:27:53 -07001611 * ecryptfs_process_key_cipher - Perform key cipher initialization.
Michael Halcrow237fead2006-10-04 02:16:22 -07001612 * @key_tfm: Crypto context for key material, set by this function
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001613 * @cipher_name: Name of the cipher
1614 * @key_size: Size of the key in bytes
Michael Halcrow237fead2006-10-04 02:16:22 -07001615 *
1616 * Returns zero on success. Any crypto_tfm structs allocated here
1617 * should be released by other functions, such as on a superblock put
1618 * event, regardless of whether this function succeeds for fails.
1619 */
Michael Halcrowcd9d67d2007-10-16 01:28:04 -07001620static int
Michael Halcrowf4aad162007-10-16 01:27:53 -07001621ecryptfs_process_key_cipher(struct crypto_blkcipher **key_tfm,
1622 char *cipher_name, size_t *key_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001623{
1624 char dummy_key[ECRYPTFS_MAX_KEY_BYTES];
Dan Carpenterece550f2010-01-19 12:34:32 +03001625 char *full_alg_name = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001626 int rc;
1627
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001628 *key_tfm = NULL;
1629 if (*key_size > ECRYPTFS_MAX_KEY_BYTES) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001630 rc = -EINVAL;
Michael Halcrowdf261c52009-01-06 14:42:02 -08001631 printk(KERN_ERR "Requested key size is [%zd] bytes; maximum "
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001632 "allowable is [%d]\n", *key_size, ECRYPTFS_MAX_KEY_BYTES);
Michael Halcrow237fead2006-10-04 02:16:22 -07001633 goto out;
1634 }
Michael Halcrow8bba0662006-10-30 22:07:18 -08001635 rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name, cipher_name,
1636 "ecb");
1637 if (rc)
1638 goto out;
1639 *key_tfm = crypto_alloc_blkcipher(full_alg_name, 0, CRYPTO_ALG_ASYNC);
Michael Halcrow8bba0662006-10-30 22:07:18 -08001640 if (IS_ERR(*key_tfm)) {
1641 rc = PTR_ERR(*key_tfm);
Michael Halcrow237fead2006-10-04 02:16:22 -07001642 printk(KERN_ERR "Unable to allocate crypto cipher with name "
Dave Hansen38268492009-08-27 09:47:07 -07001643 "[%s]; rc = [%d]\n", full_alg_name, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001644 goto out;
1645 }
Michael Halcrow8bba0662006-10-30 22:07:18 -08001646 crypto_blkcipher_set_flags(*key_tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1647 if (*key_size == 0) {
1648 struct blkcipher_alg *alg = crypto_blkcipher_alg(*key_tfm);
1649
1650 *key_size = alg->max_keysize;
1651 }
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001652 get_random_bytes(dummy_key, *key_size);
Michael Halcrow8bba0662006-10-30 22:07:18 -08001653 rc = crypto_blkcipher_setkey(*key_tfm, dummy_key, *key_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001654 if (rc) {
Michael Halcrowdf261c52009-01-06 14:42:02 -08001655 printk(KERN_ERR "Error attempting to set key of size [%zd] for "
Dave Hansen38268492009-08-27 09:47:07 -07001656 "cipher [%s]; rc = [%d]\n", *key_size, full_alg_name,
1657 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001658 rc = -EINVAL;
1659 goto out;
1660 }
1661out:
Dan Carpenterece550f2010-01-19 12:34:32 +03001662 kfree(full_alg_name);
Michael Halcrow237fead2006-10-04 02:16:22 -07001663 return rc;
1664}
Michael Halcrowf4aad162007-10-16 01:27:53 -07001665
1666struct kmem_cache *ecryptfs_key_tfm_cache;
Adrian Bunk7896b632008-02-06 01:38:32 -08001667static struct list_head key_tfm_list;
Eric Sandeenaf440f52008-02-06 01:38:37 -08001668struct mutex key_tfm_list_mutex;
Michael Halcrowf4aad162007-10-16 01:27:53 -07001669
Jerome Marchand7371a382010-08-17 17:24:05 +02001670int __init ecryptfs_init_crypto(void)
Michael Halcrowf4aad162007-10-16 01:27:53 -07001671{
1672 mutex_init(&key_tfm_list_mutex);
1673 INIT_LIST_HEAD(&key_tfm_list);
1674 return 0;
1675}
1676
Eric Sandeenaf440f52008-02-06 01:38:37 -08001677/**
1678 * ecryptfs_destroy_crypto - free all cached key_tfms on key_tfm_list
1679 *
1680 * Called only at module unload time
1681 */
Michael Halcrowfcd12832007-10-16 01:28:01 -07001682int ecryptfs_destroy_crypto(void)
Michael Halcrowf4aad162007-10-16 01:27:53 -07001683{
1684 struct ecryptfs_key_tfm *key_tfm, *key_tfm_tmp;
1685
1686 mutex_lock(&key_tfm_list_mutex);
1687 list_for_each_entry_safe(key_tfm, key_tfm_tmp, &key_tfm_list,
1688 key_tfm_list) {
1689 list_del(&key_tfm->key_tfm_list);
1690 if (key_tfm->key_tfm)
1691 crypto_free_blkcipher(key_tfm->key_tfm);
1692 kmem_cache_free(ecryptfs_key_tfm_cache, key_tfm);
1693 }
1694 mutex_unlock(&key_tfm_list_mutex);
1695 return 0;
1696}
1697
1698int
1699ecryptfs_add_new_key_tfm(struct ecryptfs_key_tfm **key_tfm, char *cipher_name,
1700 size_t key_size)
1701{
1702 struct ecryptfs_key_tfm *tmp_tfm;
1703 int rc = 0;
1704
Eric Sandeenaf440f52008-02-06 01:38:37 -08001705 BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1706
Michael Halcrowf4aad162007-10-16 01:27:53 -07001707 tmp_tfm = kmem_cache_alloc(ecryptfs_key_tfm_cache, GFP_KERNEL);
1708 if (key_tfm != NULL)
1709 (*key_tfm) = tmp_tfm;
1710 if (!tmp_tfm) {
1711 rc = -ENOMEM;
1712 printk(KERN_ERR "Error attempting to allocate from "
1713 "ecryptfs_key_tfm_cache\n");
1714 goto out;
1715 }
1716 mutex_init(&tmp_tfm->key_tfm_mutex);
1717 strncpy(tmp_tfm->cipher_name, cipher_name,
1718 ECRYPTFS_MAX_CIPHER_NAME_SIZE);
Eric Sandeenb8862902007-12-22 14:03:24 -08001719 tmp_tfm->cipher_name[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
Michael Halcrowf4aad162007-10-16 01:27:53 -07001720 tmp_tfm->key_size = key_size;
Michael Halcrow5dda6992007-10-16 01:28:06 -07001721 rc = ecryptfs_process_key_cipher(&tmp_tfm->key_tfm,
1722 tmp_tfm->cipher_name,
1723 &tmp_tfm->key_size);
1724 if (rc) {
Michael Halcrowf4aad162007-10-16 01:27:53 -07001725 printk(KERN_ERR "Error attempting to initialize key TFM "
1726 "cipher with name = [%s]; rc = [%d]\n",
1727 tmp_tfm->cipher_name, rc);
1728 kmem_cache_free(ecryptfs_key_tfm_cache, tmp_tfm);
1729 if (key_tfm != NULL)
1730 (*key_tfm) = NULL;
1731 goto out;
1732 }
Michael Halcrowf4aad162007-10-16 01:27:53 -07001733 list_add(&tmp_tfm->key_tfm_list, &key_tfm_list);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001734out:
1735 return rc;
1736}
1737
Eric Sandeenaf440f52008-02-06 01:38:37 -08001738/**
1739 * ecryptfs_tfm_exists - Search for existing tfm for cipher_name.
1740 * @cipher_name: the name of the cipher to search for
1741 * @key_tfm: set to corresponding tfm if found
1742 *
1743 * Searches for cached key_tfm matching @cipher_name
1744 * Must be called with &key_tfm_list_mutex held
1745 * Returns 1 if found, with @key_tfm set
1746 * Returns 0 if not found, with @key_tfm set to NULL
1747 */
1748int ecryptfs_tfm_exists(char *cipher_name, struct ecryptfs_key_tfm **key_tfm)
1749{
1750 struct ecryptfs_key_tfm *tmp_key_tfm;
1751
1752 BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1753
1754 list_for_each_entry(tmp_key_tfm, &key_tfm_list, key_tfm_list) {
1755 if (strcmp(tmp_key_tfm->cipher_name, cipher_name) == 0) {
1756 if (key_tfm)
1757 (*key_tfm) = tmp_key_tfm;
1758 return 1;
1759 }
1760 }
1761 if (key_tfm)
1762 (*key_tfm) = NULL;
1763 return 0;
1764}
1765
1766/**
1767 * ecryptfs_get_tfm_and_mutex_for_cipher_name
1768 *
1769 * @tfm: set to cached tfm found, or new tfm created
1770 * @tfm_mutex: set to mutex for cached tfm found, or new tfm created
1771 * @cipher_name: the name of the cipher to search for and/or add
1772 *
1773 * Sets pointers to @tfm & @tfm_mutex matching @cipher_name.
1774 * Searches for cached item first, and creates new if not found.
1775 * Returns 0 on success, non-zero if adding new cipher failed
1776 */
Michael Halcrowf4aad162007-10-16 01:27:53 -07001777int ecryptfs_get_tfm_and_mutex_for_cipher_name(struct crypto_blkcipher **tfm,
1778 struct mutex **tfm_mutex,
1779 char *cipher_name)
1780{
1781 struct ecryptfs_key_tfm *key_tfm;
1782 int rc = 0;
1783
1784 (*tfm) = NULL;
1785 (*tfm_mutex) = NULL;
Eric Sandeenaf440f52008-02-06 01:38:37 -08001786
Michael Halcrowf4aad162007-10-16 01:27:53 -07001787 mutex_lock(&key_tfm_list_mutex);
Eric Sandeenaf440f52008-02-06 01:38:37 -08001788 if (!ecryptfs_tfm_exists(cipher_name, &key_tfm)) {
1789 rc = ecryptfs_add_new_key_tfm(&key_tfm, cipher_name, 0);
1790 if (rc) {
1791 printk(KERN_ERR "Error adding new key_tfm to list; "
1792 "rc = [%d]\n", rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001793 goto out;
1794 }
1795 }
Michael Halcrowf4aad162007-10-16 01:27:53 -07001796 (*tfm) = key_tfm->key_tfm;
1797 (*tfm_mutex) = &key_tfm->key_tfm_mutex;
1798out:
Cyrill Gorcunov71fd5172008-05-23 13:04:20 -07001799 mutex_unlock(&key_tfm_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001800 return rc;
1801}
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001802
1803/* 64 characters forming a 6-bit target field */
1804static unsigned char *portable_filename_chars = ("-.0123456789ABCD"
1805 "EFGHIJKLMNOPQRST"
1806 "UVWXYZabcdefghij"
1807 "klmnopqrstuvwxyz");
1808
1809/* We could either offset on every reverse map or just pad some 0x00's
1810 * at the front here */
Tyler Hicks0f751e62011-11-23 11:31:24 -06001811static const unsigned char filename_rev_map[256] = {
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001812 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 7 */
1813 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 15 */
1814 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 23 */
1815 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 31 */
1816 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 39 */
1817 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, /* 47 */
1818 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, /* 55 */
1819 0x0A, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 63 */
1820 0x00, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, /* 71 */
1821 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, /* 79 */
1822 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, /* 87 */
1823 0x23, 0x24, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, /* 95 */
1824 0x00, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, /* 103 */
1825 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, /* 111 */
1826 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, /* 119 */
Tyler Hicks0f751e62011-11-23 11:31:24 -06001827 0x3D, 0x3E, 0x3F /* 123 - 255 initialized to 0x00 */
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001828};
1829
1830/**
1831 * ecryptfs_encode_for_filename
1832 * @dst: Destination location for encoded filename
1833 * @dst_size: Size of the encoded filename in bytes
1834 * @src: Source location for the filename to encode
1835 * @src_size: Size of the source in bytes
1836 */
Cong Ding37028752012-12-07 22:21:56 +00001837static void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001838 unsigned char *src, size_t src_size)
1839{
1840 size_t num_blocks;
1841 size_t block_num = 0;
1842 size_t dst_offset = 0;
1843 unsigned char last_block[3];
1844
1845 if (src_size == 0) {
1846 (*dst_size) = 0;
1847 goto out;
1848 }
1849 num_blocks = (src_size / 3);
1850 if ((src_size % 3) == 0) {
1851 memcpy(last_block, (&src[src_size - 3]), 3);
1852 } else {
1853 num_blocks++;
1854 last_block[2] = 0x00;
1855 switch (src_size % 3) {
1856 case 1:
1857 last_block[0] = src[src_size - 1];
1858 last_block[1] = 0x00;
1859 break;
1860 case 2:
1861 last_block[0] = src[src_size - 2];
1862 last_block[1] = src[src_size - 1];
1863 }
1864 }
1865 (*dst_size) = (num_blocks * 4);
1866 if (!dst)
1867 goto out;
1868 while (block_num < num_blocks) {
1869 unsigned char *src_block;
1870 unsigned char dst_block[4];
1871
1872 if (block_num == (num_blocks - 1))
1873 src_block = last_block;
1874 else
1875 src_block = &src[block_num * 3];
1876 dst_block[0] = ((src_block[0] >> 2) & 0x3F);
1877 dst_block[1] = (((src_block[0] << 4) & 0x30)
1878 | ((src_block[1] >> 4) & 0x0F));
1879 dst_block[2] = (((src_block[1] << 2) & 0x3C)
1880 | ((src_block[2] >> 6) & 0x03));
1881 dst_block[3] = (src_block[2] & 0x3F);
1882 dst[dst_offset++] = portable_filename_chars[dst_block[0]];
1883 dst[dst_offset++] = portable_filename_chars[dst_block[1]];
1884 dst[dst_offset++] = portable_filename_chars[dst_block[2]];
1885 dst[dst_offset++] = portable_filename_chars[dst_block[3]];
1886 block_num++;
1887 }
1888out:
1889 return;
1890}
1891
Tyler Hicks4a266202011-11-05 13:45:08 -04001892static size_t ecryptfs_max_decoded_size(size_t encoded_size)
1893{
1894 /* Not exact; conservatively long. Every block of 4
1895 * encoded characters decodes into a block of 3
1896 * decoded characters. This segment of code provides
1897 * the caller with the maximum amount of allocated
1898 * space that @dst will need to point to in a
1899 * subsequent call. */
1900 return ((encoded_size + 1) * 3) / 4;
1901}
1902
Michael Halcrow71c11c32009-01-06 14:42:05 -08001903/**
1904 * ecryptfs_decode_from_filename
1905 * @dst: If NULL, this function only sets @dst_size and returns. If
1906 * non-NULL, this function decodes the encoded octets in @src
1907 * into the memory that @dst points to.
1908 * @dst_size: Set to the size of the decoded string.
1909 * @src: The encoded set of octets to decode.
1910 * @src_size: The size of the encoded set of octets to decode.
1911 */
1912static void
1913ecryptfs_decode_from_filename(unsigned char *dst, size_t *dst_size,
1914 const unsigned char *src, size_t src_size)
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001915{
1916 u8 current_bit_offset = 0;
1917 size_t src_byte_offset = 0;
1918 size_t dst_byte_offset = 0;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001919
1920 if (dst == NULL) {
Tyler Hicks4a266202011-11-05 13:45:08 -04001921 (*dst_size) = ecryptfs_max_decoded_size(src_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001922 goto out;
1923 }
1924 while (src_byte_offset < src_size) {
1925 unsigned char src_byte =
1926 filename_rev_map[(int)src[src_byte_offset]];
1927
1928 switch (current_bit_offset) {
1929 case 0:
1930 dst[dst_byte_offset] = (src_byte << 2);
1931 current_bit_offset = 6;
1932 break;
1933 case 6:
1934 dst[dst_byte_offset++] |= (src_byte >> 4);
1935 dst[dst_byte_offset] = ((src_byte & 0xF)
1936 << 4);
1937 current_bit_offset = 4;
1938 break;
1939 case 4:
1940 dst[dst_byte_offset++] |= (src_byte >> 2);
1941 dst[dst_byte_offset] = (src_byte << 6);
1942 current_bit_offset = 2;
1943 break;
1944 case 2:
1945 dst[dst_byte_offset++] |= (src_byte);
1946 dst[dst_byte_offset] = 0;
1947 current_bit_offset = 0;
1948 break;
1949 }
1950 src_byte_offset++;
1951 }
1952 (*dst_size) = dst_byte_offset;
1953out:
Michael Halcrow71c11c32009-01-06 14:42:05 -08001954 return;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001955}
1956
1957/**
1958 * ecryptfs_encrypt_and_encode_filename - converts a plaintext file name to cipher text
1959 * @crypt_stat: The crypt_stat struct associated with the file anem to encode
1960 * @name: The plaintext name
1961 * @length: The length of the plaintext
1962 * @encoded_name: The encypted name
1963 *
1964 * Encrypts and encodes a filename into something that constitutes a
1965 * valid filename for a filesystem, with printable characters.
1966 *
1967 * We assume that we have a properly initialized crypto context,
1968 * pointed to by crypt_stat->tfm.
1969 *
1970 * Returns zero on success; non-zero on otherwise
1971 */
1972int ecryptfs_encrypt_and_encode_filename(
1973 char **encoded_name,
1974 size_t *encoded_name_size,
1975 struct ecryptfs_crypt_stat *crypt_stat,
1976 struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
1977 const char *name, size_t name_size)
1978{
1979 size_t encoded_name_no_prefix_size;
1980 int rc = 0;
1981
1982 (*encoded_name) = NULL;
1983 (*encoded_name_size) = 0;
1984 if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCRYPT_FILENAMES))
1985 || (mount_crypt_stat && (mount_crypt_stat->flags
1986 & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES))) {
1987 struct ecryptfs_filename *filename;
1988
1989 filename = kzalloc(sizeof(*filename), GFP_KERNEL);
1990 if (!filename) {
1991 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowa8f12862009-01-06 14:42:03 -08001992 "to kzalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001993 sizeof(*filename));
1994 rc = -ENOMEM;
1995 goto out;
1996 }
1997 filename->filename = (char *)name;
1998 filename->filename_size = name_size;
1999 rc = ecryptfs_encrypt_filename(filename, crypt_stat,
2000 mount_crypt_stat);
2001 if (rc) {
2002 printk(KERN_ERR "%s: Error attempting to encrypt "
2003 "filename; rc = [%d]\n", __func__, rc);
2004 kfree(filename);
2005 goto out;
2006 }
2007 ecryptfs_encode_for_filename(
2008 NULL, &encoded_name_no_prefix_size,
2009 filename->encrypted_filename,
2010 filename->encrypted_filename_size);
2011 if ((crypt_stat && (crypt_stat->flags
2012 & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2013 || (mount_crypt_stat
2014 && (mount_crypt_stat->flags
2015 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)))
2016 (*encoded_name_size) =
2017 (ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2018 + encoded_name_no_prefix_size);
2019 else
2020 (*encoded_name_size) =
2021 (ECRYPTFS_FEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2022 + encoded_name_no_prefix_size);
2023 (*encoded_name) = kmalloc((*encoded_name_size) + 1, GFP_KERNEL);
2024 if (!(*encoded_name)) {
2025 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowa8f12862009-01-06 14:42:03 -08002026 "to kzalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002027 (*encoded_name_size));
2028 rc = -ENOMEM;
2029 kfree(filename->encrypted_filename);
2030 kfree(filename);
2031 goto out;
2032 }
2033 if ((crypt_stat && (crypt_stat->flags
2034 & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2035 || (mount_crypt_stat
2036 && (mount_crypt_stat->flags
2037 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
2038 memcpy((*encoded_name),
2039 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2040 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE);
2041 ecryptfs_encode_for_filename(
2042 ((*encoded_name)
2043 + ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE),
2044 &encoded_name_no_prefix_size,
2045 filename->encrypted_filename,
2046 filename->encrypted_filename_size);
2047 (*encoded_name_size) =
2048 (ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2049 + encoded_name_no_prefix_size);
2050 (*encoded_name)[(*encoded_name_size)] = '\0';
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002051 } else {
Tyler Hicksdf6ad332009-08-21 04:27:46 -05002052 rc = -EOPNOTSUPP;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002053 }
2054 if (rc) {
2055 printk(KERN_ERR "%s: Error attempting to encode "
2056 "encrypted filename; rc = [%d]\n", __func__,
2057 rc);
2058 kfree((*encoded_name));
2059 (*encoded_name) = NULL;
2060 (*encoded_name_size) = 0;
2061 }
2062 kfree(filename->encrypted_filename);
2063 kfree(filename);
2064 } else {
2065 rc = ecryptfs_copy_filename(encoded_name,
2066 encoded_name_size,
2067 name, name_size);
2068 }
2069out:
2070 return rc;
2071}
2072
2073/**
2074 * ecryptfs_decode_and_decrypt_filename - converts the encoded cipher text name to decoded plaintext
2075 * @plaintext_name: The plaintext name
2076 * @plaintext_name_size: The plaintext name size
2077 * @ecryptfs_dir_dentry: eCryptfs directory dentry
2078 * @name: The filename in cipher text
2079 * @name_size: The cipher text name size
2080 *
2081 * Decrypts and decodes the filename.
2082 *
2083 * Returns zero on error; non-zero otherwise
2084 */
2085int ecryptfs_decode_and_decrypt_filename(char **plaintext_name,
2086 size_t *plaintext_name_size,
2087 struct dentry *ecryptfs_dir_dentry,
2088 const char *name, size_t name_size)
2089{
Tyler Hicks2aac0cf2009-03-20 02:23:57 -05002090 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
2091 &ecryptfs_superblock_to_private(
2092 ecryptfs_dir_dentry->d_sb)->mount_crypt_stat;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002093 char *decoded_name;
2094 size_t decoded_name_size;
2095 size_t packet_size;
2096 int rc = 0;
2097
Tyler Hicks2aac0cf2009-03-20 02:23:57 -05002098 if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
2099 && !(mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
2100 && (name_size > ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE)
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002101 && (strncmp(name, ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2102 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE) == 0)) {
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002103 const char *orig_name = name;
2104 size_t orig_name_size = name_size;
2105
2106 name += ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2107 name_size -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
Michael Halcrow71c11c32009-01-06 14:42:05 -08002108 ecryptfs_decode_from_filename(NULL, &decoded_name_size,
2109 name, name_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002110 decoded_name = kmalloc(decoded_name_size, GFP_KERNEL);
2111 if (!decoded_name) {
2112 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowdf261c52009-01-06 14:42:02 -08002113 "to kmalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002114 decoded_name_size);
2115 rc = -ENOMEM;
2116 goto out;
2117 }
Michael Halcrow71c11c32009-01-06 14:42:05 -08002118 ecryptfs_decode_from_filename(decoded_name, &decoded_name_size,
2119 name, name_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002120 rc = ecryptfs_parse_tag_70_packet(plaintext_name,
2121 plaintext_name_size,
2122 &packet_size,
2123 mount_crypt_stat,
2124 decoded_name,
2125 decoded_name_size);
2126 if (rc) {
2127 printk(KERN_INFO "%s: Could not parse tag 70 packet "
2128 "from filename; copying through filename "
2129 "as-is\n", __func__);
2130 rc = ecryptfs_copy_filename(plaintext_name,
2131 plaintext_name_size,
2132 orig_name, orig_name_size);
2133 goto out_free;
2134 }
2135 } else {
2136 rc = ecryptfs_copy_filename(plaintext_name,
2137 plaintext_name_size,
2138 name, name_size);
2139 goto out;
2140 }
2141out_free:
2142 kfree(decoded_name);
2143out:
2144 return rc;
2145}
Tyler Hicks4a266202011-11-05 13:45:08 -04002146
2147#define ENC_NAME_MAX_BLOCKLEN_8_OR_16 143
2148
2149int ecryptfs_set_f_namelen(long *namelen, long lower_namelen,
2150 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
2151{
2152 struct blkcipher_desc desc;
2153 struct mutex *tfm_mutex;
2154 size_t cipher_blocksize;
2155 int rc;
2156
2157 if (!(mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)) {
2158 (*namelen) = lower_namelen;
2159 return 0;
2160 }
2161
2162 rc = ecryptfs_get_tfm_and_mutex_for_cipher_name(&desc.tfm, &tfm_mutex,
2163 mount_crypt_stat->global_default_fn_cipher_name);
2164 if (unlikely(rc)) {
2165 (*namelen) = 0;
2166 return rc;
2167 }
2168
2169 mutex_lock(tfm_mutex);
2170 cipher_blocksize = crypto_blkcipher_blocksize(desc.tfm);
2171 mutex_unlock(tfm_mutex);
2172
2173 /* Return an exact amount for the common cases */
2174 if (lower_namelen == NAME_MAX
2175 && (cipher_blocksize == 8 || cipher_blocksize == 16)) {
2176 (*namelen) = ENC_NAME_MAX_BLOCKLEN_8_OR_16;
2177 return 0;
2178 }
2179
2180 /* Return a safe estimate for the uncommon cases */
2181 (*namelen) = lower_namelen;
2182 (*namelen) -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2183 /* Since this is the max decoded size, subtract 1 "decoded block" len */
2184 (*namelen) = ecryptfs_max_decoded_size(*namelen) - 3;
2185 (*namelen) -= ECRYPTFS_TAG_70_MAX_METADATA_SIZE;
2186 (*namelen) -= ECRYPTFS_FILENAME_MIN_RANDOM_PREPEND_BYTES;
2187 /* Worst case is that the filename is padded nearly a full block size */
2188 (*namelen) -= cipher_blocksize - 1;
2189
2190 if ((*namelen) < 0)
2191 (*namelen) = 0;
2192
2193 return 0;
2194}