xref: /openbmc/linux/fs/ecryptfs/crypto.c (revision 51ca58dcc9f0d6b1e78954d08bd4954fb6a1421c)
1237fead6SMichael Halcrow /**
2237fead6SMichael Halcrow  * eCryptfs: Linux filesystem encryption layer
3237fead6SMichael Halcrow  *
4237fead6SMichael Halcrow  * Copyright (C) 1997-2004 Erez Zadok
5237fead6SMichael Halcrow  * Copyright (C) 2001-2004 Stony Brook University
6dd2a3b7aSMichael Halcrow  * Copyright (C) 2004-2007 International Business Machines Corp.
7237fead6SMichael Halcrow  *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8237fead6SMichael Halcrow  *   		Michael C. Thompson <mcthomps@us.ibm.com>
9237fead6SMichael Halcrow  *
10237fead6SMichael Halcrow  * This program is free software; you can redistribute it and/or
11237fead6SMichael Halcrow  * modify it under the terms of the GNU General Public License as
12237fead6SMichael Halcrow  * published by the Free Software Foundation; either version 2 of the
13237fead6SMichael Halcrow  * License, or (at your option) any later version.
14237fead6SMichael Halcrow  *
15237fead6SMichael Halcrow  * This program is distributed in the hope that it will be useful, but
16237fead6SMichael Halcrow  * WITHOUT ANY WARRANTY; without even the implied warranty of
17237fead6SMichael Halcrow  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18237fead6SMichael Halcrow  * General Public License for more details.
19237fead6SMichael Halcrow  *
20237fead6SMichael Halcrow  * You should have received a copy of the GNU General Public License
21237fead6SMichael Halcrow  * along with this program; if not, write to the Free Software
22237fead6SMichael Halcrow  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23237fead6SMichael Halcrow  * 02111-1307, USA.
24237fead6SMichael Halcrow  */
25237fead6SMichael Halcrow 
26237fead6SMichael Halcrow #include <linux/fs.h>
27237fead6SMichael Halcrow #include <linux/mount.h>
28237fead6SMichael Halcrow #include <linux/pagemap.h>
29237fead6SMichael Halcrow #include <linux/random.h>
30237fead6SMichael Halcrow #include <linux/compiler.h>
31237fead6SMichael Halcrow #include <linux/key.h>
32237fead6SMichael Halcrow #include <linux/namei.h>
33237fead6SMichael Halcrow #include <linux/crypto.h>
34237fead6SMichael Halcrow #include <linux/file.h>
35237fead6SMichael Halcrow #include <linux/scatterlist.h>
3629335c6aSHarvey Harrison #include <asm/unaligned.h>
37237fead6SMichael Halcrow #include "ecryptfs_kernel.h"
38237fead6SMichael Halcrow 
39237fead6SMichael Halcrow static int
40237fead6SMichael Halcrow ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
41237fead6SMichael Halcrow 			     struct page *dst_page, int dst_offset,
42237fead6SMichael Halcrow 			     struct page *src_page, int src_offset, int size,
43237fead6SMichael Halcrow 			     unsigned char *iv);
44237fead6SMichael Halcrow static int
45237fead6SMichael Halcrow ecryptfs_encrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
46237fead6SMichael Halcrow 			     struct page *dst_page, int dst_offset,
47237fead6SMichael Halcrow 			     struct page *src_page, int src_offset, int size,
48237fead6SMichael Halcrow 			     unsigned char *iv);
49237fead6SMichael Halcrow 
50237fead6SMichael Halcrow /**
51237fead6SMichael Halcrow  * ecryptfs_to_hex
52237fead6SMichael Halcrow  * @dst: Buffer to take hex character representation of contents of
53237fead6SMichael Halcrow  *       src; must be at least of size (src_size * 2)
54237fead6SMichael Halcrow  * @src: Buffer to be converted to a hex string respresentation
55237fead6SMichael Halcrow  * @src_size: number of bytes to convert
56237fead6SMichael Halcrow  */
57237fead6SMichael Halcrow void ecryptfs_to_hex(char *dst, char *src, size_t src_size)
58237fead6SMichael Halcrow {
59237fead6SMichael Halcrow 	int x;
60237fead6SMichael Halcrow 
61237fead6SMichael Halcrow 	for (x = 0; x < src_size; x++)
62237fead6SMichael Halcrow 		sprintf(&dst[x * 2], "%.2x", (unsigned char)src[x]);
63237fead6SMichael Halcrow }
64237fead6SMichael Halcrow 
65237fead6SMichael Halcrow /**
66237fead6SMichael Halcrow  * ecryptfs_from_hex
67237fead6SMichael Halcrow  * @dst: Buffer to take the bytes from src hex; must be at least of
68237fead6SMichael Halcrow  *       size (src_size / 2)
69237fead6SMichael Halcrow  * @src: Buffer to be converted from a hex string respresentation to raw value
70237fead6SMichael Halcrow  * @dst_size: size of dst buffer, or number of hex characters pairs to convert
71237fead6SMichael Halcrow  */
72237fead6SMichael Halcrow void ecryptfs_from_hex(char *dst, char *src, int dst_size)
73237fead6SMichael Halcrow {
74237fead6SMichael Halcrow 	int x;
75237fead6SMichael Halcrow 	char tmp[3] = { 0, };
76237fead6SMichael Halcrow 
77237fead6SMichael Halcrow 	for (x = 0; x < dst_size; x++) {
78237fead6SMichael Halcrow 		tmp[0] = src[x * 2];
79237fead6SMichael Halcrow 		tmp[1] = src[x * 2 + 1];
80237fead6SMichael Halcrow 		dst[x] = (unsigned char)simple_strtol(tmp, NULL, 16);
81237fead6SMichael Halcrow 	}
82237fead6SMichael Halcrow }
83237fead6SMichael Halcrow 
84237fead6SMichael Halcrow /**
85237fead6SMichael Halcrow  * ecryptfs_calculate_md5 - calculates the md5 of @src
86237fead6SMichael Halcrow  * @dst: Pointer to 16 bytes of allocated memory
87237fead6SMichael Halcrow  * @crypt_stat: Pointer to crypt_stat struct for the current inode
88237fead6SMichael Halcrow  * @src: Data to be md5'd
89237fead6SMichael Halcrow  * @len: Length of @src
90237fead6SMichael Halcrow  *
91237fead6SMichael Halcrow  * Uses the allocated crypto context that crypt_stat references to
92237fead6SMichael Halcrow  * generate the MD5 sum of the contents of src.
93237fead6SMichael Halcrow  */
94237fead6SMichael Halcrow static int ecryptfs_calculate_md5(char *dst,
95237fead6SMichael Halcrow 				  struct ecryptfs_crypt_stat *crypt_stat,
96237fead6SMichael Halcrow 				  char *src, int len)
97237fead6SMichael Halcrow {
98237fead6SMichael Halcrow 	struct scatterlist sg;
99565d9724SMichael Halcrow 	struct hash_desc desc = {
100565d9724SMichael Halcrow 		.tfm = crypt_stat->hash_tfm,
101565d9724SMichael Halcrow 		.flags = CRYPTO_TFM_REQ_MAY_SLEEP
102565d9724SMichael Halcrow 	};
103565d9724SMichael Halcrow 	int rc = 0;
104237fead6SMichael Halcrow 
105565d9724SMichael Halcrow 	mutex_lock(&crypt_stat->cs_hash_tfm_mutex);
106237fead6SMichael Halcrow 	sg_init_one(&sg, (u8 *)src, len);
107565d9724SMichael Halcrow 	if (!desc.tfm) {
108565d9724SMichael Halcrow 		desc.tfm = crypto_alloc_hash(ECRYPTFS_DEFAULT_HASH, 0,
109565d9724SMichael Halcrow 					     CRYPTO_ALG_ASYNC);
110565d9724SMichael Halcrow 		if (IS_ERR(desc.tfm)) {
111565d9724SMichael Halcrow 			rc = PTR_ERR(desc.tfm);
112237fead6SMichael Halcrow 			ecryptfs_printk(KERN_ERR, "Error attempting to "
113565d9724SMichael Halcrow 					"allocate crypto context; rc = [%d]\n",
114565d9724SMichael Halcrow 					rc);
115237fead6SMichael Halcrow 			goto out;
116237fead6SMichael Halcrow 		}
117565d9724SMichael Halcrow 		crypt_stat->hash_tfm = desc.tfm;
118237fead6SMichael Halcrow 	}
1198a29f2b0SMichael Halcrow 	rc = crypto_hash_init(&desc);
1208a29f2b0SMichael Halcrow 	if (rc) {
1218a29f2b0SMichael Halcrow 		printk(KERN_ERR
1228a29f2b0SMichael Halcrow 		       "%s: Error initializing crypto hash; rc = [%d]\n",
12318d1dbf1SHarvey Harrison 		       __func__, rc);
1248a29f2b0SMichael Halcrow 		goto out;
1258a29f2b0SMichael Halcrow 	}
1268a29f2b0SMichael Halcrow 	rc = crypto_hash_update(&desc, &sg, len);
1278a29f2b0SMichael Halcrow 	if (rc) {
1288a29f2b0SMichael Halcrow 		printk(KERN_ERR
1298a29f2b0SMichael Halcrow 		       "%s: Error updating crypto hash; rc = [%d]\n",
13018d1dbf1SHarvey Harrison 		       __func__, rc);
1318a29f2b0SMichael Halcrow 		goto out;
1328a29f2b0SMichael Halcrow 	}
1338a29f2b0SMichael Halcrow 	rc = crypto_hash_final(&desc, dst);
1348a29f2b0SMichael Halcrow 	if (rc) {
1358a29f2b0SMichael Halcrow 		printk(KERN_ERR
1368a29f2b0SMichael Halcrow 		       "%s: Error finalizing crypto hash; rc = [%d]\n",
13718d1dbf1SHarvey Harrison 		       __func__, rc);
1388a29f2b0SMichael Halcrow 		goto out;
1398a29f2b0SMichael Halcrow 	}
140237fead6SMichael Halcrow out:
1418a29f2b0SMichael Halcrow 	mutex_unlock(&crypt_stat->cs_hash_tfm_mutex);
142237fead6SMichael Halcrow 	return rc;
143237fead6SMichael Halcrow }
144237fead6SMichael Halcrow 
145cd9d67dfSMichael Halcrow static int ecryptfs_crypto_api_algify_cipher_name(char **algified_name,
1468bba066fSMichael Halcrow 						  char *cipher_name,
1478bba066fSMichael Halcrow 						  char *chaining_modifier)
1488bba066fSMichael Halcrow {
1498bba066fSMichael Halcrow 	int cipher_name_len = strlen(cipher_name);
1508bba066fSMichael Halcrow 	int chaining_modifier_len = strlen(chaining_modifier);
1518bba066fSMichael Halcrow 	int algified_name_len;
1528bba066fSMichael Halcrow 	int rc;
1538bba066fSMichael Halcrow 
1548bba066fSMichael Halcrow 	algified_name_len = (chaining_modifier_len + cipher_name_len + 3);
1558bba066fSMichael Halcrow 	(*algified_name) = kmalloc(algified_name_len, GFP_KERNEL);
1567bd473fcSMichael Halcrow 	if (!(*algified_name)) {
1578bba066fSMichael Halcrow 		rc = -ENOMEM;
1588bba066fSMichael Halcrow 		goto out;
1598bba066fSMichael Halcrow 	}
1608bba066fSMichael Halcrow 	snprintf((*algified_name), algified_name_len, "%s(%s)",
1618bba066fSMichael Halcrow 		 chaining_modifier, cipher_name);
1628bba066fSMichael Halcrow 	rc = 0;
1638bba066fSMichael Halcrow out:
1648bba066fSMichael Halcrow 	return rc;
1658bba066fSMichael Halcrow }
1668bba066fSMichael Halcrow 
167237fead6SMichael Halcrow /**
168237fead6SMichael Halcrow  * ecryptfs_derive_iv
169237fead6SMichael Halcrow  * @iv: destination for the derived iv vale
170237fead6SMichael Halcrow  * @crypt_stat: Pointer to crypt_stat struct for the current inode
171d6a13c17SMichael Halcrow  * @offset: Offset of the extent whose IV we are to derive
172237fead6SMichael Halcrow  *
173237fead6SMichael Halcrow  * Generate the initialization vector from the given root IV and page
174237fead6SMichael Halcrow  * offset.
175237fead6SMichael Halcrow  *
176237fead6SMichael Halcrow  * Returns zero on success; non-zero on error.
177237fead6SMichael Halcrow  */
178a34f60f7SMichael Halcrow int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat,
179d6a13c17SMichael Halcrow 		       loff_t offset)
180237fead6SMichael Halcrow {
181237fead6SMichael Halcrow 	int rc = 0;
182237fead6SMichael Halcrow 	char dst[MD5_DIGEST_SIZE];
183237fead6SMichael Halcrow 	char src[ECRYPTFS_MAX_IV_BYTES + 16];
184237fead6SMichael Halcrow 
185237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
186237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "root iv:\n");
187237fead6SMichael Halcrow 		ecryptfs_dump_hex(crypt_stat->root_iv, crypt_stat->iv_bytes);
188237fead6SMichael Halcrow 	}
189237fead6SMichael Halcrow 	/* TODO: It is probably secure to just cast the least
190237fead6SMichael Halcrow 	 * significant bits of the root IV into an unsigned long and
191237fead6SMichael Halcrow 	 * add the offset to that rather than go through all this
192237fead6SMichael Halcrow 	 * hashing business. -Halcrow */
193237fead6SMichael Halcrow 	memcpy(src, crypt_stat->root_iv, crypt_stat->iv_bytes);
194237fead6SMichael Halcrow 	memset((src + crypt_stat->iv_bytes), 0, 16);
195d6a13c17SMichael Halcrow 	snprintf((src + crypt_stat->iv_bytes), 16, "%lld", offset);
196237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
197237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "source:\n");
198237fead6SMichael Halcrow 		ecryptfs_dump_hex(src, (crypt_stat->iv_bytes + 16));
199237fead6SMichael Halcrow 	}
200237fead6SMichael Halcrow 	rc = ecryptfs_calculate_md5(dst, crypt_stat, src,
201237fead6SMichael Halcrow 				    (crypt_stat->iv_bytes + 16));
202237fead6SMichael Halcrow 	if (rc) {
203237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
204237fead6SMichael Halcrow 				"MD5 while generating IV for a page\n");
205237fead6SMichael Halcrow 		goto out;
206237fead6SMichael Halcrow 	}
207237fead6SMichael Halcrow 	memcpy(iv, dst, crypt_stat->iv_bytes);
208237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
209237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "derived iv:\n");
210237fead6SMichael Halcrow 		ecryptfs_dump_hex(iv, crypt_stat->iv_bytes);
211237fead6SMichael Halcrow 	}
212237fead6SMichael Halcrow out:
213237fead6SMichael Halcrow 	return rc;
214237fead6SMichael Halcrow }
215237fead6SMichael Halcrow 
216237fead6SMichael Halcrow /**
217237fead6SMichael Halcrow  * ecryptfs_init_crypt_stat
218237fead6SMichael Halcrow  * @crypt_stat: Pointer to the crypt_stat struct to initialize.
219237fead6SMichael Halcrow  *
220237fead6SMichael Halcrow  * Initialize the crypt_stat structure.
221237fead6SMichael Halcrow  */
222237fead6SMichael Halcrow void
223237fead6SMichael Halcrow ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
224237fead6SMichael Halcrow {
225237fead6SMichael Halcrow 	memset((void *)crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
226f4aad16aSMichael Halcrow 	INIT_LIST_HEAD(&crypt_stat->keysig_list);
227f4aad16aSMichael Halcrow 	mutex_init(&crypt_stat->keysig_list_mutex);
228237fead6SMichael Halcrow 	mutex_init(&crypt_stat->cs_mutex);
229237fead6SMichael Halcrow 	mutex_init(&crypt_stat->cs_tfm_mutex);
230565d9724SMichael Halcrow 	mutex_init(&crypt_stat->cs_hash_tfm_mutex);
231e2bd99ecSMichael Halcrow 	crypt_stat->flags |= ECRYPTFS_STRUCT_INITIALIZED;
232237fead6SMichael Halcrow }
233237fead6SMichael Halcrow 
234237fead6SMichael Halcrow /**
235fcd12835SMichael Halcrow  * ecryptfs_destroy_crypt_stat
236237fead6SMichael Halcrow  * @crypt_stat: Pointer to the crypt_stat struct to initialize.
237237fead6SMichael Halcrow  *
238237fead6SMichael Halcrow  * Releases all memory associated with a crypt_stat struct.
239237fead6SMichael Halcrow  */
240fcd12835SMichael Halcrow void ecryptfs_destroy_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
241237fead6SMichael Halcrow {
242f4aad16aSMichael Halcrow 	struct ecryptfs_key_sig *key_sig, *key_sig_tmp;
243f4aad16aSMichael Halcrow 
244237fead6SMichael Halcrow 	if (crypt_stat->tfm)
2458bba066fSMichael Halcrow 		crypto_free_blkcipher(crypt_stat->tfm);
246565d9724SMichael Halcrow 	if (crypt_stat->hash_tfm)
247565d9724SMichael Halcrow 		crypto_free_hash(crypt_stat->hash_tfm);
248f4aad16aSMichael Halcrow 	mutex_lock(&crypt_stat->keysig_list_mutex);
249f4aad16aSMichael Halcrow 	list_for_each_entry_safe(key_sig, key_sig_tmp,
250f4aad16aSMichael Halcrow 				 &crypt_stat->keysig_list, crypt_stat_list) {
251f4aad16aSMichael Halcrow 		list_del(&key_sig->crypt_stat_list);
252f4aad16aSMichael Halcrow 		kmem_cache_free(ecryptfs_key_sig_cache, key_sig);
253f4aad16aSMichael Halcrow 	}
254f4aad16aSMichael Halcrow 	mutex_unlock(&crypt_stat->keysig_list_mutex);
255237fead6SMichael Halcrow 	memset(crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
256237fead6SMichael Halcrow }
257237fead6SMichael Halcrow 
258fcd12835SMichael Halcrow void ecryptfs_destroy_mount_crypt_stat(
259237fead6SMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
260237fead6SMichael Halcrow {
261f4aad16aSMichael Halcrow 	struct ecryptfs_global_auth_tok *auth_tok, *auth_tok_tmp;
262f4aad16aSMichael Halcrow 
263f4aad16aSMichael Halcrow 	if (!(mount_crypt_stat->flags & ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED))
264f4aad16aSMichael Halcrow 		return;
265f4aad16aSMichael Halcrow 	mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
266f4aad16aSMichael Halcrow 	list_for_each_entry_safe(auth_tok, auth_tok_tmp,
267f4aad16aSMichael Halcrow 				 &mount_crypt_stat->global_auth_tok_list,
268f4aad16aSMichael Halcrow 				 mount_crypt_stat_list) {
269f4aad16aSMichael Halcrow 		list_del(&auth_tok->mount_crypt_stat_list);
270f4aad16aSMichael Halcrow 		mount_crypt_stat->num_global_auth_toks--;
271f4aad16aSMichael Halcrow 		if (auth_tok->global_auth_tok_key
272f4aad16aSMichael Halcrow 		    && !(auth_tok->flags & ECRYPTFS_AUTH_TOK_INVALID))
273f4aad16aSMichael Halcrow 			key_put(auth_tok->global_auth_tok_key);
274f4aad16aSMichael Halcrow 		kmem_cache_free(ecryptfs_global_auth_tok_cache, auth_tok);
275f4aad16aSMichael Halcrow 	}
276f4aad16aSMichael Halcrow 	mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
277237fead6SMichael Halcrow 	memset(mount_crypt_stat, 0, sizeof(struct ecryptfs_mount_crypt_stat));
278237fead6SMichael Halcrow }
279237fead6SMichael Halcrow 
280237fead6SMichael Halcrow /**
281237fead6SMichael Halcrow  * virt_to_scatterlist
282237fead6SMichael Halcrow  * @addr: Virtual address
283237fead6SMichael Halcrow  * @size: Size of data; should be an even multiple of the block size
284237fead6SMichael Halcrow  * @sg: Pointer to scatterlist array; set to NULL to obtain only
285237fead6SMichael Halcrow  *      the number of scatterlist structs required in array
286237fead6SMichael Halcrow  * @sg_size: Max array size
287237fead6SMichael Halcrow  *
288237fead6SMichael Halcrow  * Fills in a scatterlist array with page references for a passed
289237fead6SMichael Halcrow  * virtual address.
290237fead6SMichael Halcrow  *
291237fead6SMichael Halcrow  * Returns the number of scatterlist structs in array used
292237fead6SMichael Halcrow  */
293237fead6SMichael Halcrow int virt_to_scatterlist(const void *addr, int size, struct scatterlist *sg,
294237fead6SMichael Halcrow 			int sg_size)
295237fead6SMichael Halcrow {
296237fead6SMichael Halcrow 	int i = 0;
297237fead6SMichael Halcrow 	struct page *pg;
298237fead6SMichael Halcrow 	int offset;
299237fead6SMichael Halcrow 	int remainder_of_page;
300237fead6SMichael Halcrow 
30168e3f5ddSHerbert Xu 	sg_init_table(sg, sg_size);
30268e3f5ddSHerbert Xu 
303237fead6SMichael Halcrow 	while (size > 0 && i < sg_size) {
304237fead6SMichael Halcrow 		pg = virt_to_page(addr);
305237fead6SMichael Halcrow 		offset = offset_in_page(addr);
306642f1490SJens Axboe 		if (sg)
307642f1490SJens Axboe 			sg_set_page(&sg[i], pg, 0, offset);
308237fead6SMichael Halcrow 		remainder_of_page = PAGE_CACHE_SIZE - offset;
309237fead6SMichael Halcrow 		if (size >= remainder_of_page) {
310237fead6SMichael Halcrow 			if (sg)
311237fead6SMichael Halcrow 				sg[i].length = remainder_of_page;
312237fead6SMichael Halcrow 			addr += remainder_of_page;
313237fead6SMichael Halcrow 			size -= remainder_of_page;
314237fead6SMichael Halcrow 		} else {
315237fead6SMichael Halcrow 			if (sg)
316237fead6SMichael Halcrow 				sg[i].length = size;
317237fead6SMichael Halcrow 			addr += size;
318237fead6SMichael Halcrow 			size = 0;
319237fead6SMichael Halcrow 		}
320237fead6SMichael Halcrow 		i++;
321237fead6SMichael Halcrow 	}
322237fead6SMichael Halcrow 	if (size > 0)
323237fead6SMichael Halcrow 		return -ENOMEM;
324237fead6SMichael Halcrow 	return i;
325237fead6SMichael Halcrow }
326237fead6SMichael Halcrow 
327237fead6SMichael Halcrow /**
328237fead6SMichael Halcrow  * encrypt_scatterlist
329237fead6SMichael Halcrow  * @crypt_stat: Pointer to the crypt_stat struct to initialize.
330237fead6SMichael Halcrow  * @dest_sg: Destination of encrypted data
331237fead6SMichael Halcrow  * @src_sg: Data to be encrypted
332237fead6SMichael Halcrow  * @size: Length of data to be encrypted
333237fead6SMichael Halcrow  * @iv: iv to use during encryption
334237fead6SMichael Halcrow  *
335237fead6SMichael Halcrow  * Returns the number of bytes encrypted; negative value on error
336237fead6SMichael Halcrow  */
337237fead6SMichael Halcrow static int encrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
338237fead6SMichael Halcrow 			       struct scatterlist *dest_sg,
339237fead6SMichael Halcrow 			       struct scatterlist *src_sg, int size,
340237fead6SMichael Halcrow 			       unsigned char *iv)
341237fead6SMichael Halcrow {
3428bba066fSMichael Halcrow 	struct blkcipher_desc desc = {
3438bba066fSMichael Halcrow 		.tfm = crypt_stat->tfm,
3448bba066fSMichael Halcrow 		.info = iv,
3458bba066fSMichael Halcrow 		.flags = CRYPTO_TFM_REQ_MAY_SLEEP
3468bba066fSMichael Halcrow 	};
347237fead6SMichael Halcrow 	int rc = 0;
348237fead6SMichael Halcrow 
349237fead6SMichael Halcrow 	BUG_ON(!crypt_stat || !crypt_stat->tfm
350e2bd99ecSMichael Halcrow 	       || !(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED));
351237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
352237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Key size [%d]; key:\n",
353237fead6SMichael Halcrow 				crypt_stat->key_size);
354237fead6SMichael Halcrow 		ecryptfs_dump_hex(crypt_stat->key,
355237fead6SMichael Halcrow 				  crypt_stat->key_size);
356237fead6SMichael Halcrow 	}
357237fead6SMichael Halcrow 	/* Consider doing this once, when the file is opened */
358237fead6SMichael Halcrow 	mutex_lock(&crypt_stat->cs_tfm_mutex);
3598e3a6f16STrevor Highland 	if (!(crypt_stat->flags & ECRYPTFS_KEY_SET)) {
3608bba066fSMichael Halcrow 		rc = crypto_blkcipher_setkey(crypt_stat->tfm, crypt_stat->key,
361237fead6SMichael Halcrow 					     crypt_stat->key_size);
3628e3a6f16STrevor Highland 		crypt_stat->flags |= ECRYPTFS_KEY_SET;
3638e3a6f16STrevor Highland 	}
364237fead6SMichael Halcrow 	if (rc) {
365237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error setting key; rc = [%d]\n",
366237fead6SMichael Halcrow 				rc);
367237fead6SMichael Halcrow 		mutex_unlock(&crypt_stat->cs_tfm_mutex);
368237fead6SMichael Halcrow 		rc = -EINVAL;
369237fead6SMichael Halcrow 		goto out;
370237fead6SMichael Halcrow 	}
371237fead6SMichael Halcrow 	ecryptfs_printk(KERN_DEBUG, "Encrypting [%d] bytes.\n", size);
3728bba066fSMichael Halcrow 	crypto_blkcipher_encrypt_iv(&desc, dest_sg, src_sg, size);
373237fead6SMichael Halcrow 	mutex_unlock(&crypt_stat->cs_tfm_mutex);
374237fead6SMichael Halcrow out:
375237fead6SMichael Halcrow 	return rc;
376237fead6SMichael Halcrow }
377237fead6SMichael Halcrow 
378237fead6SMichael Halcrow /**
3790216f7f7SMichael Halcrow  * ecryptfs_lower_offset_for_extent
380237fead6SMichael Halcrow  *
3810216f7f7SMichael Halcrow  * Convert an eCryptfs page index into a lower byte offset
382237fead6SMichael Halcrow  */
3837896b631SAdrian Bunk static void ecryptfs_lower_offset_for_extent(loff_t *offset, loff_t extent_num,
3840216f7f7SMichael Halcrow 					     struct ecryptfs_crypt_stat *crypt_stat)
385237fead6SMichael Halcrow {
386cc11beffSMichael Halcrow 	(*offset) = (crypt_stat->num_header_bytes_at_front
3870216f7f7SMichael Halcrow 		     + (crypt_stat->extent_size * extent_num));
3880216f7f7SMichael Halcrow }
389237fead6SMichael Halcrow 
3900216f7f7SMichael Halcrow /**
3910216f7f7SMichael Halcrow  * ecryptfs_encrypt_extent
3920216f7f7SMichael Halcrow  * @enc_extent_page: Allocated page into which to encrypt the data in
3930216f7f7SMichael Halcrow  *                   @page
3940216f7f7SMichael Halcrow  * @crypt_stat: crypt_stat containing cryptographic context for the
3950216f7f7SMichael Halcrow  *              encryption operation
3960216f7f7SMichael Halcrow  * @page: Page containing plaintext data extent to encrypt
3970216f7f7SMichael Halcrow  * @extent_offset: Page extent offset for use in generating IV
3980216f7f7SMichael Halcrow  *
3990216f7f7SMichael Halcrow  * Encrypts one extent of data.
4000216f7f7SMichael Halcrow  *
4010216f7f7SMichael Halcrow  * Return zero on success; non-zero otherwise
4020216f7f7SMichael Halcrow  */
4030216f7f7SMichael Halcrow static int ecryptfs_encrypt_extent(struct page *enc_extent_page,
4040216f7f7SMichael Halcrow 				   struct ecryptfs_crypt_stat *crypt_stat,
4050216f7f7SMichael Halcrow 				   struct page *page,
4060216f7f7SMichael Halcrow 				   unsigned long extent_offset)
4070216f7f7SMichael Halcrow {
408d6a13c17SMichael Halcrow 	loff_t extent_base;
4090216f7f7SMichael Halcrow 	char extent_iv[ECRYPTFS_MAX_IV_BYTES];
4100216f7f7SMichael Halcrow 	int rc;
4110216f7f7SMichael Halcrow 
412d6a13c17SMichael Halcrow 	extent_base = (((loff_t)page->index)
4130216f7f7SMichael Halcrow 		       * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
414237fead6SMichael Halcrow 	rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
4150216f7f7SMichael Halcrow 				(extent_base + extent_offset));
416237fead6SMichael Halcrow 	if (rc) {
417237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error attempting to "
418237fead6SMichael Halcrow 				"derive IV for extent [0x%.16x]; "
4190216f7f7SMichael Halcrow 				"rc = [%d]\n", (extent_base + extent_offset),
4200216f7f7SMichael Halcrow 				rc);
421237fead6SMichael Halcrow 		goto out;
422237fead6SMichael Halcrow 	}
423237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
424237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Encrypting extent "
425237fead6SMichael Halcrow 				"with iv:\n");
426237fead6SMichael Halcrow 		ecryptfs_dump_hex(extent_iv, crypt_stat->iv_bytes);
427237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "First 8 bytes before "
428237fead6SMichael Halcrow 				"encryption:\n");
429237fead6SMichael Halcrow 		ecryptfs_dump_hex((char *)
4300216f7f7SMichael Halcrow 				  (page_address(page)
4310216f7f7SMichael Halcrow 				   + (extent_offset * crypt_stat->extent_size)),
4320216f7f7SMichael Halcrow 				  8);
433237fead6SMichael Halcrow 	}
4340216f7f7SMichael Halcrow 	rc = ecryptfs_encrypt_page_offset(crypt_stat, enc_extent_page, 0,
4350216f7f7SMichael Halcrow 					  page, (extent_offset
4360216f7f7SMichael Halcrow 						 * crypt_stat->extent_size),
437237fead6SMichael Halcrow 					  crypt_stat->extent_size, extent_iv);
4380216f7f7SMichael Halcrow 	if (rc < 0) {
4390216f7f7SMichael Halcrow 		printk(KERN_ERR "%s: Error attempting to encrypt page with "
4400216f7f7SMichael Halcrow 		       "page->index = [%ld], extent_offset = [%ld]; "
44118d1dbf1SHarvey Harrison 		       "rc = [%d]\n", __func__, page->index, extent_offset,
4420216f7f7SMichael Halcrow 		       rc);
4430216f7f7SMichael Halcrow 		goto out;
4440216f7f7SMichael Halcrow 	}
4450216f7f7SMichael Halcrow 	rc = 0;
446237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
4470216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Encrypt extent [0x%.16x]; "
4480216f7f7SMichael Halcrow 				"rc = [%d]\n", (extent_base + extent_offset),
4490216f7f7SMichael Halcrow 				rc);
450237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "First 8 bytes after "
451237fead6SMichael Halcrow 				"encryption:\n");
4520216f7f7SMichael Halcrow 		ecryptfs_dump_hex((char *)(page_address(enc_extent_page)), 8);
453237fead6SMichael Halcrow 	}
4540216f7f7SMichael Halcrow out:
4550216f7f7SMichael Halcrow 	return rc;
4560216f7f7SMichael Halcrow }
4570216f7f7SMichael Halcrow 
4580216f7f7SMichael Halcrow /**
4590216f7f7SMichael Halcrow  * ecryptfs_encrypt_page
4600216f7f7SMichael Halcrow  * @page: Page mapped from the eCryptfs inode for the file; contains
4610216f7f7SMichael Halcrow  *        decrypted content that needs to be encrypted (to a temporary
4620216f7f7SMichael Halcrow  *        page; not in place) and written out to the lower file
4630216f7f7SMichael Halcrow  *
4640216f7f7SMichael Halcrow  * Encrypt an eCryptfs page. This is done on a per-extent basis. Note
4650216f7f7SMichael Halcrow  * that eCryptfs pages may straddle the lower pages -- for instance,
4660216f7f7SMichael Halcrow  * if the file was created on a machine with an 8K page size
4670216f7f7SMichael Halcrow  * (resulting in an 8K header), and then the file is copied onto a
4680216f7f7SMichael Halcrow  * host with a 32K page size, then when reading page 0 of the eCryptfs
4690216f7f7SMichael Halcrow  * file, 24K of page 0 of the lower file will be read and decrypted,
4700216f7f7SMichael Halcrow  * and then 8K of page 1 of the lower file will be read and decrypted.
4710216f7f7SMichael Halcrow  *
4720216f7f7SMichael Halcrow  * Returns zero on success; negative on error
4730216f7f7SMichael Halcrow  */
4740216f7f7SMichael Halcrow int ecryptfs_encrypt_page(struct page *page)
4750216f7f7SMichael Halcrow {
4760216f7f7SMichael Halcrow 	struct inode *ecryptfs_inode;
4770216f7f7SMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat;
4787fcba054SEric Sandeen 	char *enc_extent_virt;
4797fcba054SEric Sandeen 	struct page *enc_extent_page = NULL;
4800216f7f7SMichael Halcrow 	loff_t extent_offset;
4810216f7f7SMichael Halcrow 	int rc = 0;
4820216f7f7SMichael Halcrow 
4830216f7f7SMichael Halcrow 	ecryptfs_inode = page->mapping->host;
4840216f7f7SMichael Halcrow 	crypt_stat =
4850216f7f7SMichael Halcrow 		&(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
4860216f7f7SMichael Halcrow 	if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
4870216f7f7SMichael Halcrow 		rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, page,
4880216f7f7SMichael Halcrow 						       0, PAGE_CACHE_SIZE);
4890216f7f7SMichael Halcrow 		if (rc)
4900216f7f7SMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to copy "
49118d1dbf1SHarvey Harrison 			       "page at index [%ld]\n", __func__,
4920216f7f7SMichael Halcrow 			       page->index);
4930216f7f7SMichael Halcrow 		goto out;
4940216f7f7SMichael Halcrow 	}
4957fcba054SEric Sandeen 	enc_extent_page = alloc_page(GFP_USER);
4967fcba054SEric Sandeen 	if (!enc_extent_page) {
4970216f7f7SMichael Halcrow 		rc = -ENOMEM;
4980216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error allocating memory for "
4990216f7f7SMichael Halcrow 				"encrypted extent\n");
5000216f7f7SMichael Halcrow 		goto out;
5010216f7f7SMichael Halcrow 	}
5027fcba054SEric Sandeen 	enc_extent_virt = kmap(enc_extent_page);
5030216f7f7SMichael Halcrow 	for (extent_offset = 0;
5040216f7f7SMichael Halcrow 	     extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
5050216f7f7SMichael Halcrow 	     extent_offset++) {
5060216f7f7SMichael Halcrow 		loff_t offset;
5070216f7f7SMichael Halcrow 
5080216f7f7SMichael Halcrow 		rc = ecryptfs_encrypt_extent(enc_extent_page, crypt_stat, page,
5090216f7f7SMichael Halcrow 					     extent_offset);
5100216f7f7SMichael Halcrow 		if (rc) {
5110216f7f7SMichael Halcrow 			printk(KERN_ERR "%s: Error encrypting extent; "
51218d1dbf1SHarvey Harrison 			       "rc = [%d]\n", __func__, rc);
5130216f7f7SMichael Halcrow 			goto out;
5140216f7f7SMichael Halcrow 		}
5150216f7f7SMichael Halcrow 		ecryptfs_lower_offset_for_extent(
516d6a13c17SMichael Halcrow 			&offset, ((((loff_t)page->index)
517d6a13c17SMichael Halcrow 				   * (PAGE_CACHE_SIZE
5180216f7f7SMichael Halcrow 				      / crypt_stat->extent_size))
5190216f7f7SMichael Halcrow 				  + extent_offset), crypt_stat);
5200216f7f7SMichael Halcrow 		rc = ecryptfs_write_lower(ecryptfs_inode, enc_extent_virt,
5210216f7f7SMichael Halcrow 					  offset, crypt_stat->extent_size);
5220216f7f7SMichael Halcrow 		if (rc) {
5230216f7f7SMichael Halcrow 			ecryptfs_printk(KERN_ERR, "Error attempting "
5240216f7f7SMichael Halcrow 					"to write lower page; rc = [%d]"
5250216f7f7SMichael Halcrow 					"\n", rc);
5260216f7f7SMichael Halcrow 			goto out;
5270216f7f7SMichael Halcrow 		}
528237fead6SMichael Halcrow 	}
5290216f7f7SMichael Halcrow out:
5307fcba054SEric Sandeen 	if (enc_extent_page) {
5317fcba054SEric Sandeen 		kunmap(enc_extent_page);
5327fcba054SEric Sandeen 		__free_page(enc_extent_page);
5337fcba054SEric Sandeen 	}
5340216f7f7SMichael Halcrow 	return rc;
5350216f7f7SMichael Halcrow }
5360216f7f7SMichael Halcrow 
5370216f7f7SMichael Halcrow static int ecryptfs_decrypt_extent(struct page *page,
5380216f7f7SMichael Halcrow 				   struct ecryptfs_crypt_stat *crypt_stat,
5390216f7f7SMichael Halcrow 				   struct page *enc_extent_page,
5400216f7f7SMichael Halcrow 				   unsigned long extent_offset)
5410216f7f7SMichael Halcrow {
542d6a13c17SMichael Halcrow 	loff_t extent_base;
5430216f7f7SMichael Halcrow 	char extent_iv[ECRYPTFS_MAX_IV_BYTES];
5440216f7f7SMichael Halcrow 	int rc;
5450216f7f7SMichael Halcrow 
546d6a13c17SMichael Halcrow 	extent_base = (((loff_t)page->index)
5470216f7f7SMichael Halcrow 		       * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
5480216f7f7SMichael Halcrow 	rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
5490216f7f7SMichael Halcrow 				(extent_base + extent_offset));
550237fead6SMichael Halcrow 	if (rc) {
5510216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error attempting to "
5520216f7f7SMichael Halcrow 				"derive IV for extent [0x%.16x]; "
5530216f7f7SMichael Halcrow 				"rc = [%d]\n", (extent_base + extent_offset),
5540216f7f7SMichael Halcrow 				rc);
555237fead6SMichael Halcrow 		goto out;
556237fead6SMichael Halcrow 	}
5570216f7f7SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
5580216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Decrypting extent "
5590216f7f7SMichael Halcrow 				"with iv:\n");
5600216f7f7SMichael Halcrow 		ecryptfs_dump_hex(extent_iv, crypt_stat->iv_bytes);
5610216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "First 8 bytes before "
5620216f7f7SMichael Halcrow 				"decryption:\n");
5630216f7f7SMichael Halcrow 		ecryptfs_dump_hex((char *)
5640216f7f7SMichael Halcrow 				  (page_address(enc_extent_page)
5650216f7f7SMichael Halcrow 				   + (extent_offset * crypt_stat->extent_size)),
5660216f7f7SMichael Halcrow 				  8);
5670216f7f7SMichael Halcrow 	}
5680216f7f7SMichael Halcrow 	rc = ecryptfs_decrypt_page_offset(crypt_stat, page,
5690216f7f7SMichael Halcrow 					  (extent_offset
5700216f7f7SMichael Halcrow 					   * crypt_stat->extent_size),
5710216f7f7SMichael Halcrow 					  enc_extent_page, 0,
5720216f7f7SMichael Halcrow 					  crypt_stat->extent_size, extent_iv);
5730216f7f7SMichael Halcrow 	if (rc < 0) {
5740216f7f7SMichael Halcrow 		printk(KERN_ERR "%s: Error attempting to decrypt to page with "
5750216f7f7SMichael Halcrow 		       "page->index = [%ld], extent_offset = [%ld]; "
57618d1dbf1SHarvey Harrison 		       "rc = [%d]\n", __func__, page->index, extent_offset,
5770216f7f7SMichael Halcrow 		       rc);
5780216f7f7SMichael Halcrow 		goto out;
5790216f7f7SMichael Halcrow 	}
5800216f7f7SMichael Halcrow 	rc = 0;
5810216f7f7SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
5820216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Decrypt extent [0x%.16x]; "
5830216f7f7SMichael Halcrow 				"rc = [%d]\n", (extent_base + extent_offset),
5840216f7f7SMichael Halcrow 				rc);
5850216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "First 8 bytes after "
5860216f7f7SMichael Halcrow 				"decryption:\n");
5870216f7f7SMichael Halcrow 		ecryptfs_dump_hex((char *)(page_address(page)
5880216f7f7SMichael Halcrow 					   + (extent_offset
5890216f7f7SMichael Halcrow 					      * crypt_stat->extent_size)), 8);
5900216f7f7SMichael Halcrow 	}
591237fead6SMichael Halcrow out:
592237fead6SMichael Halcrow 	return rc;
593237fead6SMichael Halcrow }
594237fead6SMichael Halcrow 
595237fead6SMichael Halcrow /**
596237fead6SMichael Halcrow  * ecryptfs_decrypt_page
5970216f7f7SMichael Halcrow  * @page: Page mapped from the eCryptfs inode for the file; data read
5980216f7f7SMichael Halcrow  *        and decrypted from the lower file will be written into this
5990216f7f7SMichael Halcrow  *        page
600237fead6SMichael Halcrow  *
601237fead6SMichael Halcrow  * Decrypt an eCryptfs page. This is done on a per-extent basis. Note
602237fead6SMichael Halcrow  * that eCryptfs pages may straddle the lower pages -- for instance,
603237fead6SMichael Halcrow  * if the file was created on a machine with an 8K page size
604237fead6SMichael Halcrow  * (resulting in an 8K header), and then the file is copied onto a
605237fead6SMichael Halcrow  * host with a 32K page size, then when reading page 0 of the eCryptfs
606237fead6SMichael Halcrow  * file, 24K of page 0 of the lower file will be read and decrypted,
607237fead6SMichael Halcrow  * and then 8K of page 1 of the lower file will be read and decrypted.
608237fead6SMichael Halcrow  *
609237fead6SMichael Halcrow  * Returns zero on success; negative on error
610237fead6SMichael Halcrow  */
6110216f7f7SMichael Halcrow int ecryptfs_decrypt_page(struct page *page)
612237fead6SMichael Halcrow {
6130216f7f7SMichael Halcrow 	struct inode *ecryptfs_inode;
614237fead6SMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat;
6157fcba054SEric Sandeen 	char *enc_extent_virt;
6167fcba054SEric Sandeen 	struct page *enc_extent_page = NULL;
6170216f7f7SMichael Halcrow 	unsigned long extent_offset;
618237fead6SMichael Halcrow 	int rc = 0;
619237fead6SMichael Halcrow 
6200216f7f7SMichael Halcrow 	ecryptfs_inode = page->mapping->host;
6210216f7f7SMichael Halcrow 	crypt_stat =
6220216f7f7SMichael Halcrow 		&(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
623e2bd99ecSMichael Halcrow 	if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
6240216f7f7SMichael Halcrow 		rc = ecryptfs_read_lower_page_segment(page, page->index, 0,
6250216f7f7SMichael Halcrow 						      PAGE_CACHE_SIZE,
6260216f7f7SMichael Halcrow 						      ecryptfs_inode);
627237fead6SMichael Halcrow 		if (rc)
6280216f7f7SMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to copy "
62918d1dbf1SHarvey Harrison 			       "page at index [%ld]\n", __func__,
630237fead6SMichael Halcrow 			       page->index);
63116a72c45SMichael Halcrow 		goto out;
632237fead6SMichael Halcrow 	}
6337fcba054SEric Sandeen 	enc_extent_page = alloc_page(GFP_USER);
6347fcba054SEric Sandeen 	if (!enc_extent_page) {
635237fead6SMichael Halcrow 		rc = -ENOMEM;
6360216f7f7SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error allocating memory for "
6370216f7f7SMichael Halcrow 				"encrypted extent\n");
63816a72c45SMichael Halcrow 		goto out;
639237fead6SMichael Halcrow 	}
6407fcba054SEric Sandeen 	enc_extent_virt = kmap(enc_extent_page);
6410216f7f7SMichael Halcrow 	for (extent_offset = 0;
6420216f7f7SMichael Halcrow 	     extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
6430216f7f7SMichael Halcrow 	     extent_offset++) {
6440216f7f7SMichael Halcrow 		loff_t offset;
6450216f7f7SMichael Halcrow 
6460216f7f7SMichael Halcrow 		ecryptfs_lower_offset_for_extent(
6470216f7f7SMichael Halcrow 			&offset, ((page->index * (PAGE_CACHE_SIZE
6480216f7f7SMichael Halcrow 						  / crypt_stat->extent_size))
6490216f7f7SMichael Halcrow 				  + extent_offset), crypt_stat);
6500216f7f7SMichael Halcrow 		rc = ecryptfs_read_lower(enc_extent_virt, offset,
651237fead6SMichael Halcrow 					 crypt_stat->extent_size,
6520216f7f7SMichael Halcrow 					 ecryptfs_inode);
6530216f7f7SMichael Halcrow 		if (rc) {
6540216f7f7SMichael Halcrow 			ecryptfs_printk(KERN_ERR, "Error attempting "
6550216f7f7SMichael Halcrow 					"to read lower page; rc = [%d]"
6560216f7f7SMichael Halcrow 					"\n", rc);
65716a72c45SMichael Halcrow 			goto out;
658237fead6SMichael Halcrow 		}
6590216f7f7SMichael Halcrow 		rc = ecryptfs_decrypt_extent(page, crypt_stat, enc_extent_page,
6600216f7f7SMichael Halcrow 					     extent_offset);
6610216f7f7SMichael Halcrow 		if (rc) {
6620216f7f7SMichael Halcrow 			printk(KERN_ERR "%s: Error encrypting extent; "
66318d1dbf1SHarvey Harrison 			       "rc = [%d]\n", __func__, rc);
66416a72c45SMichael Halcrow 			goto out;
665237fead6SMichael Halcrow 		}
666237fead6SMichael Halcrow 	}
667237fead6SMichael Halcrow out:
6687fcba054SEric Sandeen 	if (enc_extent_page) {
6697fcba054SEric Sandeen 		kunmap(enc_extent_page);
6707fcba054SEric Sandeen 		__free_page(enc_extent_page);
6717fcba054SEric Sandeen 	}
672237fead6SMichael Halcrow 	return rc;
673237fead6SMichael Halcrow }
674237fead6SMichael Halcrow 
675237fead6SMichael Halcrow /**
676237fead6SMichael Halcrow  * decrypt_scatterlist
67722e78fafSMichael Halcrow  * @crypt_stat: Cryptographic context
67822e78fafSMichael Halcrow  * @dest_sg: The destination scatterlist to decrypt into
67922e78fafSMichael Halcrow  * @src_sg: The source scatterlist to decrypt from
68022e78fafSMichael Halcrow  * @size: The number of bytes to decrypt
68122e78fafSMichael Halcrow  * @iv: The initialization vector to use for the decryption
682237fead6SMichael Halcrow  *
683237fead6SMichael Halcrow  * Returns the number of bytes decrypted; negative value on error
684237fead6SMichael Halcrow  */
685237fead6SMichael Halcrow static int decrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
686237fead6SMichael Halcrow 			       struct scatterlist *dest_sg,
687237fead6SMichael Halcrow 			       struct scatterlist *src_sg, int size,
688237fead6SMichael Halcrow 			       unsigned char *iv)
689237fead6SMichael Halcrow {
6908bba066fSMichael Halcrow 	struct blkcipher_desc desc = {
6918bba066fSMichael Halcrow 		.tfm = crypt_stat->tfm,
6928bba066fSMichael Halcrow 		.info = iv,
6938bba066fSMichael Halcrow 		.flags = CRYPTO_TFM_REQ_MAY_SLEEP
6948bba066fSMichael Halcrow 	};
695237fead6SMichael Halcrow 	int rc = 0;
696237fead6SMichael Halcrow 
697237fead6SMichael Halcrow 	/* Consider doing this once, when the file is opened */
698237fead6SMichael Halcrow 	mutex_lock(&crypt_stat->cs_tfm_mutex);
6998bba066fSMichael Halcrow 	rc = crypto_blkcipher_setkey(crypt_stat->tfm, crypt_stat->key,
700237fead6SMichael Halcrow 				     crypt_stat->key_size);
701237fead6SMichael Halcrow 	if (rc) {
702237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error setting key; rc = [%d]\n",
703237fead6SMichael Halcrow 				rc);
704237fead6SMichael Halcrow 		mutex_unlock(&crypt_stat->cs_tfm_mutex);
705237fead6SMichael Halcrow 		rc = -EINVAL;
706237fead6SMichael Halcrow 		goto out;
707237fead6SMichael Halcrow 	}
708237fead6SMichael Halcrow 	ecryptfs_printk(KERN_DEBUG, "Decrypting [%d] bytes.\n", size);
7098bba066fSMichael Halcrow 	rc = crypto_blkcipher_decrypt_iv(&desc, dest_sg, src_sg, size);
710237fead6SMichael Halcrow 	mutex_unlock(&crypt_stat->cs_tfm_mutex);
711237fead6SMichael Halcrow 	if (rc) {
712237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error decrypting; rc = [%d]\n",
713237fead6SMichael Halcrow 				rc);
714237fead6SMichael Halcrow 		goto out;
715237fead6SMichael Halcrow 	}
716237fead6SMichael Halcrow 	rc = size;
717237fead6SMichael Halcrow out:
718237fead6SMichael Halcrow 	return rc;
719237fead6SMichael Halcrow }
720237fead6SMichael Halcrow 
721237fead6SMichael Halcrow /**
722237fead6SMichael Halcrow  * ecryptfs_encrypt_page_offset
72322e78fafSMichael Halcrow  * @crypt_stat: The cryptographic context
72422e78fafSMichael Halcrow  * @dst_page: The page to encrypt into
72522e78fafSMichael Halcrow  * @dst_offset: The offset in the page to encrypt into
72622e78fafSMichael Halcrow  * @src_page: The page to encrypt from
72722e78fafSMichael Halcrow  * @src_offset: The offset in the page to encrypt from
72822e78fafSMichael Halcrow  * @size: The number of bytes to encrypt
72922e78fafSMichael Halcrow  * @iv: The initialization vector to use for the encryption
730237fead6SMichael Halcrow  *
731237fead6SMichael Halcrow  * Returns the number of bytes encrypted
732237fead6SMichael Halcrow  */
733237fead6SMichael Halcrow static int
734237fead6SMichael Halcrow ecryptfs_encrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
735237fead6SMichael Halcrow 			     struct page *dst_page, int dst_offset,
736237fead6SMichael Halcrow 			     struct page *src_page, int src_offset, int size,
737237fead6SMichael Halcrow 			     unsigned char *iv)
738237fead6SMichael Halcrow {
739237fead6SMichael Halcrow 	struct scatterlist src_sg, dst_sg;
740237fead6SMichael Halcrow 
74160c74f81SJens Axboe 	sg_init_table(&src_sg, 1);
74260c74f81SJens Axboe 	sg_init_table(&dst_sg, 1);
74360c74f81SJens Axboe 
744642f1490SJens Axboe 	sg_set_page(&src_sg, src_page, size, src_offset);
745642f1490SJens Axboe 	sg_set_page(&dst_sg, dst_page, size, dst_offset);
746237fead6SMichael Halcrow 	return encrypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv);
747237fead6SMichael Halcrow }
748237fead6SMichael Halcrow 
749237fead6SMichael Halcrow /**
750237fead6SMichael Halcrow  * ecryptfs_decrypt_page_offset
75122e78fafSMichael Halcrow  * @crypt_stat: The cryptographic context
75222e78fafSMichael Halcrow  * @dst_page: The page to decrypt into
75322e78fafSMichael Halcrow  * @dst_offset: The offset in the page to decrypt into
75422e78fafSMichael Halcrow  * @src_page: The page to decrypt from
75522e78fafSMichael Halcrow  * @src_offset: The offset in the page to decrypt from
75622e78fafSMichael Halcrow  * @size: The number of bytes to decrypt
75722e78fafSMichael Halcrow  * @iv: The initialization vector to use for the decryption
758237fead6SMichael Halcrow  *
759237fead6SMichael Halcrow  * Returns the number of bytes decrypted
760237fead6SMichael Halcrow  */
761237fead6SMichael Halcrow static int
762237fead6SMichael Halcrow ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
763237fead6SMichael Halcrow 			     struct page *dst_page, int dst_offset,
764237fead6SMichael Halcrow 			     struct page *src_page, int src_offset, int size,
765237fead6SMichael Halcrow 			     unsigned char *iv)
766237fead6SMichael Halcrow {
767237fead6SMichael Halcrow 	struct scatterlist src_sg, dst_sg;
768237fead6SMichael Halcrow 
76960c74f81SJens Axboe 	sg_init_table(&src_sg, 1);
770642f1490SJens Axboe 	sg_set_page(&src_sg, src_page, size, src_offset);
77160c74f81SJens Axboe 
772642f1490SJens Axboe 	sg_init_table(&dst_sg, 1);
773642f1490SJens Axboe 	sg_set_page(&dst_sg, dst_page, size, dst_offset);
774642f1490SJens Axboe 
775237fead6SMichael Halcrow 	return decrypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv);
776237fead6SMichael Halcrow }
777237fead6SMichael Halcrow 
778237fead6SMichael Halcrow #define ECRYPTFS_MAX_SCATTERLIST_LEN 4
779237fead6SMichael Halcrow 
780237fead6SMichael Halcrow /**
781237fead6SMichael Halcrow  * ecryptfs_init_crypt_ctx
782237fead6SMichael Halcrow  * @crypt_stat: Uninitilized crypt stats structure
783237fead6SMichael Halcrow  *
784237fead6SMichael Halcrow  * Initialize the crypto context.
785237fead6SMichael Halcrow  *
786237fead6SMichael Halcrow  * TODO: Performance: Keep a cache of initialized cipher contexts;
787237fead6SMichael Halcrow  * only init if needed
788237fead6SMichael Halcrow  */
789237fead6SMichael Halcrow int ecryptfs_init_crypt_ctx(struct ecryptfs_crypt_stat *crypt_stat)
790237fead6SMichael Halcrow {
7918bba066fSMichael Halcrow 	char *full_alg_name;
792237fead6SMichael Halcrow 	int rc = -EINVAL;
793237fead6SMichael Halcrow 
794237fead6SMichael Halcrow 	if (!crypt_stat->cipher) {
795237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "No cipher specified\n");
796237fead6SMichael Halcrow 		goto out;
797237fead6SMichael Halcrow 	}
798237fead6SMichael Halcrow 	ecryptfs_printk(KERN_DEBUG,
799237fead6SMichael Halcrow 			"Initializing cipher [%s]; strlen = [%d]; "
800237fead6SMichael Halcrow 			"key_size_bits = [%d]\n",
801237fead6SMichael Halcrow 			crypt_stat->cipher, (int)strlen(crypt_stat->cipher),
802237fead6SMichael Halcrow 			crypt_stat->key_size << 3);
803237fead6SMichael Halcrow 	if (crypt_stat->tfm) {
804237fead6SMichael Halcrow 		rc = 0;
805237fead6SMichael Halcrow 		goto out;
806237fead6SMichael Halcrow 	}
807237fead6SMichael Halcrow 	mutex_lock(&crypt_stat->cs_tfm_mutex);
8088bba066fSMichael Halcrow 	rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name,
8098bba066fSMichael Halcrow 						    crypt_stat->cipher, "cbc");
8108bba066fSMichael Halcrow 	if (rc)
811c8161f64SEric Sandeen 		goto out_unlock;
8128bba066fSMichael Halcrow 	crypt_stat->tfm = crypto_alloc_blkcipher(full_alg_name, 0,
8138bba066fSMichael Halcrow 						 CRYPTO_ALG_ASYNC);
8148bba066fSMichael Halcrow 	kfree(full_alg_name);
815de88777eSAkinobu Mita 	if (IS_ERR(crypt_stat->tfm)) {
816de88777eSAkinobu Mita 		rc = PTR_ERR(crypt_stat->tfm);
817237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "cryptfs: init_crypt_ctx(): "
818237fead6SMichael Halcrow 				"Error initializing cipher [%s]\n",
819237fead6SMichael Halcrow 				crypt_stat->cipher);
820c8161f64SEric Sandeen 		goto out_unlock;
821237fead6SMichael Halcrow 	}
822f1ddcaf3SHerbert Xu 	crypto_blkcipher_set_flags(crypt_stat->tfm, CRYPTO_TFM_REQ_WEAK_KEY);
823237fead6SMichael Halcrow 	rc = 0;
824c8161f64SEric Sandeen out_unlock:
825c8161f64SEric Sandeen 	mutex_unlock(&crypt_stat->cs_tfm_mutex);
826237fead6SMichael Halcrow out:
827237fead6SMichael Halcrow 	return rc;
828237fead6SMichael Halcrow }
829237fead6SMichael Halcrow 
830237fead6SMichael Halcrow static void set_extent_mask_and_shift(struct ecryptfs_crypt_stat *crypt_stat)
831237fead6SMichael Halcrow {
832237fead6SMichael Halcrow 	int extent_size_tmp;
833237fead6SMichael Halcrow 
834237fead6SMichael Halcrow 	crypt_stat->extent_mask = 0xFFFFFFFF;
835237fead6SMichael Halcrow 	crypt_stat->extent_shift = 0;
836237fead6SMichael Halcrow 	if (crypt_stat->extent_size == 0)
837237fead6SMichael Halcrow 		return;
838237fead6SMichael Halcrow 	extent_size_tmp = crypt_stat->extent_size;
839237fead6SMichael Halcrow 	while ((extent_size_tmp & 0x01) == 0) {
840237fead6SMichael Halcrow 		extent_size_tmp >>= 1;
841237fead6SMichael Halcrow 		crypt_stat->extent_mask <<= 1;
842237fead6SMichael Halcrow 		crypt_stat->extent_shift++;
843237fead6SMichael Halcrow 	}
844237fead6SMichael Halcrow }
845237fead6SMichael Halcrow 
846237fead6SMichael Halcrow void ecryptfs_set_default_sizes(struct ecryptfs_crypt_stat *crypt_stat)
847237fead6SMichael Halcrow {
848237fead6SMichael Halcrow 	/* Default values; may be overwritten as we are parsing the
849237fead6SMichael Halcrow 	 * packets. */
850237fead6SMichael Halcrow 	crypt_stat->extent_size = ECRYPTFS_DEFAULT_EXTENT_SIZE;
851237fead6SMichael Halcrow 	set_extent_mask_and_shift(crypt_stat);
852237fead6SMichael Halcrow 	crypt_stat->iv_bytes = ECRYPTFS_DEFAULT_IV_BYTES;
853dd2a3b7aSMichael Halcrow 	if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
854cc11beffSMichael Halcrow 		crypt_stat->num_header_bytes_at_front = 0;
85545eaab79SMichael Halcrow 	else {
85645eaab79SMichael Halcrow 		if (PAGE_CACHE_SIZE <= ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)
857cc11beffSMichael Halcrow 			crypt_stat->num_header_bytes_at_front =
858cc11beffSMichael Halcrow 				ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
859dd2a3b7aSMichael Halcrow 		else
860cc11beffSMichael Halcrow 			crypt_stat->num_header_bytes_at_front =	PAGE_CACHE_SIZE;
86145eaab79SMichael Halcrow 	}
862237fead6SMichael Halcrow }
863237fead6SMichael Halcrow 
864237fead6SMichael Halcrow /**
865237fead6SMichael Halcrow  * ecryptfs_compute_root_iv
866237fead6SMichael Halcrow  * @crypt_stats
867237fead6SMichael Halcrow  *
868237fead6SMichael Halcrow  * On error, sets the root IV to all 0's.
869237fead6SMichael Halcrow  */
870237fead6SMichael Halcrow int ecryptfs_compute_root_iv(struct ecryptfs_crypt_stat *crypt_stat)
871237fead6SMichael Halcrow {
872237fead6SMichael Halcrow 	int rc = 0;
873237fead6SMichael Halcrow 	char dst[MD5_DIGEST_SIZE];
874237fead6SMichael Halcrow 
875237fead6SMichael Halcrow 	BUG_ON(crypt_stat->iv_bytes > MD5_DIGEST_SIZE);
876237fead6SMichael Halcrow 	BUG_ON(crypt_stat->iv_bytes <= 0);
877e2bd99ecSMichael Halcrow 	if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
878237fead6SMichael Halcrow 		rc = -EINVAL;
879237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "Session key not valid; "
880237fead6SMichael Halcrow 				"cannot generate root IV\n");
881237fead6SMichael Halcrow 		goto out;
882237fead6SMichael Halcrow 	}
883237fead6SMichael Halcrow 	rc = ecryptfs_calculate_md5(dst, crypt_stat, crypt_stat->key,
884237fead6SMichael Halcrow 				    crypt_stat->key_size);
885237fead6SMichael Halcrow 	if (rc) {
886237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
887237fead6SMichael Halcrow 				"MD5 while generating root IV\n");
888237fead6SMichael Halcrow 		goto out;
889237fead6SMichael Halcrow 	}
890237fead6SMichael Halcrow 	memcpy(crypt_stat->root_iv, dst, crypt_stat->iv_bytes);
891237fead6SMichael Halcrow out:
892237fead6SMichael Halcrow 	if (rc) {
893237fead6SMichael Halcrow 		memset(crypt_stat->root_iv, 0, crypt_stat->iv_bytes);
894e2bd99ecSMichael Halcrow 		crypt_stat->flags |= ECRYPTFS_SECURITY_WARNING;
895237fead6SMichael Halcrow 	}
896237fead6SMichael Halcrow 	return rc;
897237fead6SMichael Halcrow }
898237fead6SMichael Halcrow 
899237fead6SMichael Halcrow static void ecryptfs_generate_new_key(struct ecryptfs_crypt_stat *crypt_stat)
900237fead6SMichael Halcrow {
901237fead6SMichael Halcrow 	get_random_bytes(crypt_stat->key, crypt_stat->key_size);
902e2bd99ecSMichael Halcrow 	crypt_stat->flags |= ECRYPTFS_KEY_VALID;
903237fead6SMichael Halcrow 	ecryptfs_compute_root_iv(crypt_stat);
904237fead6SMichael Halcrow 	if (unlikely(ecryptfs_verbosity > 0)) {
905237fead6SMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Generated new session key:\n");
906237fead6SMichael Halcrow 		ecryptfs_dump_hex(crypt_stat->key,
907237fead6SMichael Halcrow 				  crypt_stat->key_size);
908237fead6SMichael Halcrow 	}
909237fead6SMichael Halcrow }
910237fead6SMichael Halcrow 
911237fead6SMichael Halcrow /**
91217398957SMichael Halcrow  * ecryptfs_copy_mount_wide_flags_to_inode_flags
91322e78fafSMichael Halcrow  * @crypt_stat: The inode's cryptographic context
91422e78fafSMichael Halcrow  * @mount_crypt_stat: The mount point's cryptographic context
91517398957SMichael Halcrow  *
91617398957SMichael Halcrow  * This function propagates the mount-wide flags to individual inode
91717398957SMichael Halcrow  * flags.
91817398957SMichael Halcrow  */
91917398957SMichael Halcrow static void ecryptfs_copy_mount_wide_flags_to_inode_flags(
92017398957SMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat,
92117398957SMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
92217398957SMichael Halcrow {
92317398957SMichael Halcrow 	if (mount_crypt_stat->flags & ECRYPTFS_XATTR_METADATA_ENABLED)
92417398957SMichael Halcrow 		crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
92517398957SMichael Halcrow 	if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
92617398957SMichael Halcrow 		crypt_stat->flags |= ECRYPTFS_VIEW_AS_ENCRYPTED;
92717398957SMichael Halcrow }
92817398957SMichael Halcrow 
929f4aad16aSMichael Halcrow static int ecryptfs_copy_mount_wide_sigs_to_inode_sigs(
930f4aad16aSMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat,
931f4aad16aSMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
932f4aad16aSMichael Halcrow {
933f4aad16aSMichael Halcrow 	struct ecryptfs_global_auth_tok *global_auth_tok;
934f4aad16aSMichael Halcrow 	int rc = 0;
935f4aad16aSMichael Halcrow 
936f4aad16aSMichael Halcrow 	mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
937f4aad16aSMichael Halcrow 	list_for_each_entry(global_auth_tok,
938f4aad16aSMichael Halcrow 			    &mount_crypt_stat->global_auth_tok_list,
939f4aad16aSMichael Halcrow 			    mount_crypt_stat_list) {
940f4aad16aSMichael Halcrow 		rc = ecryptfs_add_keysig(crypt_stat, global_auth_tok->sig);
941f4aad16aSMichael Halcrow 		if (rc) {
942f4aad16aSMichael Halcrow 			printk(KERN_ERR "Error adding keysig; rc = [%d]\n", rc);
943f4aad16aSMichael Halcrow 			mutex_unlock(
944f4aad16aSMichael Halcrow 				&mount_crypt_stat->global_auth_tok_list_mutex);
945f4aad16aSMichael Halcrow 			goto out;
946f4aad16aSMichael Halcrow 		}
947f4aad16aSMichael Halcrow 	}
948f4aad16aSMichael Halcrow 	mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
949f4aad16aSMichael Halcrow out:
950f4aad16aSMichael Halcrow 	return rc;
951f4aad16aSMichael Halcrow }
952f4aad16aSMichael Halcrow 
95317398957SMichael Halcrow /**
954237fead6SMichael Halcrow  * ecryptfs_set_default_crypt_stat_vals
95522e78fafSMichael Halcrow  * @crypt_stat: The inode's cryptographic context
95622e78fafSMichael Halcrow  * @mount_crypt_stat: The mount point's cryptographic context
957237fead6SMichael Halcrow  *
958237fead6SMichael Halcrow  * Default values in the event that policy does not override them.
959237fead6SMichael Halcrow  */
960237fead6SMichael Halcrow static void ecryptfs_set_default_crypt_stat_vals(
961237fead6SMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat,
962237fead6SMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
963237fead6SMichael Halcrow {
96417398957SMichael Halcrow 	ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
96517398957SMichael Halcrow 						      mount_crypt_stat);
966237fead6SMichael Halcrow 	ecryptfs_set_default_sizes(crypt_stat);
967237fead6SMichael Halcrow 	strcpy(crypt_stat->cipher, ECRYPTFS_DEFAULT_CIPHER);
968237fead6SMichael Halcrow 	crypt_stat->key_size = ECRYPTFS_DEFAULT_KEY_BYTES;
969e2bd99ecSMichael Halcrow 	crypt_stat->flags &= ~(ECRYPTFS_KEY_VALID);
970237fead6SMichael Halcrow 	crypt_stat->file_version = ECRYPTFS_FILE_VERSION;
971237fead6SMichael Halcrow 	crypt_stat->mount_crypt_stat = mount_crypt_stat;
972237fead6SMichael Halcrow }
973237fead6SMichael Halcrow 
974237fead6SMichael Halcrow /**
975237fead6SMichael Halcrow  * ecryptfs_new_file_context
97622e78fafSMichael Halcrow  * @ecryptfs_dentry: The eCryptfs dentry
977237fead6SMichael Halcrow  *
978237fead6SMichael Halcrow  * If the crypto context for the file has not yet been established,
979237fead6SMichael Halcrow  * this is where we do that.  Establishing a new crypto context
980237fead6SMichael Halcrow  * involves the following decisions:
981237fead6SMichael Halcrow  *  - What cipher to use?
982237fead6SMichael Halcrow  *  - What set of authentication tokens to use?
983237fead6SMichael Halcrow  * Here we just worry about getting enough information into the
984237fead6SMichael Halcrow  * authentication tokens so that we know that they are available.
985237fead6SMichael Halcrow  * We associate the available authentication tokens with the new file
986237fead6SMichael Halcrow  * via the set of signatures in the crypt_stat struct.  Later, when
987237fead6SMichael Halcrow  * the headers are actually written out, we may again defer to
988237fead6SMichael Halcrow  * userspace to perform the encryption of the session key; for the
989237fead6SMichael Halcrow  * foreseeable future, this will be the case with public key packets.
990237fead6SMichael Halcrow  *
991237fead6SMichael Halcrow  * Returns zero on success; non-zero otherwise
992237fead6SMichael Halcrow  */
993237fead6SMichael Halcrow int ecryptfs_new_file_context(struct dentry *ecryptfs_dentry)
994237fead6SMichael Halcrow {
995237fead6SMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat =
996237fead6SMichael Halcrow 	    &ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat;
997237fead6SMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
998237fead6SMichael Halcrow 	    &ecryptfs_superblock_to_private(
999237fead6SMichael Halcrow 		    ecryptfs_dentry->d_sb)->mount_crypt_stat;
1000237fead6SMichael Halcrow 	int cipher_name_len;
1001f4aad16aSMichael Halcrow 	int rc = 0;
1002237fead6SMichael Halcrow 
1003237fead6SMichael Halcrow 	ecryptfs_set_default_crypt_stat_vals(crypt_stat, mount_crypt_stat);
1004af655dc6SMichael Halcrow 	crypt_stat->flags |= (ECRYPTFS_ENCRYPTED | ECRYPTFS_KEY_VALID);
100517398957SMichael Halcrow 	ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
100617398957SMichael Halcrow 						      mount_crypt_stat);
1007f4aad16aSMichael Halcrow 	rc = ecryptfs_copy_mount_wide_sigs_to_inode_sigs(crypt_stat,
1008f4aad16aSMichael Halcrow 							 mount_crypt_stat);
1009f4aad16aSMichael Halcrow 	if (rc) {
1010f4aad16aSMichael Halcrow 		printk(KERN_ERR "Error attempting to copy mount-wide key sigs "
1011f4aad16aSMichael Halcrow 		       "to the inode key sigs; rc = [%d]\n", rc);
1012f4aad16aSMichael Halcrow 		goto out;
1013f4aad16aSMichael Halcrow 	}
1014237fead6SMichael Halcrow 	cipher_name_len =
1015237fead6SMichael Halcrow 		strlen(mount_crypt_stat->global_default_cipher_name);
1016237fead6SMichael Halcrow 	memcpy(crypt_stat->cipher,
1017237fead6SMichael Halcrow 	       mount_crypt_stat->global_default_cipher_name,
1018237fead6SMichael Halcrow 	       cipher_name_len);
1019237fead6SMichael Halcrow 	crypt_stat->cipher[cipher_name_len] = '\0';
1020237fead6SMichael Halcrow 	crypt_stat->key_size =
1021237fead6SMichael Halcrow 		mount_crypt_stat->global_default_cipher_key_size;
1022237fead6SMichael Halcrow 	ecryptfs_generate_new_key(crypt_stat);
1023237fead6SMichael Halcrow 	rc = ecryptfs_init_crypt_ctx(crypt_stat);
1024237fead6SMichael Halcrow 	if (rc)
1025237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "Error initializing cryptographic "
1026237fead6SMichael Halcrow 				"context for cipher [%s]: rc = [%d]\n",
1027237fead6SMichael Halcrow 				crypt_stat->cipher, rc);
1028f4aad16aSMichael Halcrow out:
1029237fead6SMichael Halcrow 	return rc;
1030237fead6SMichael Halcrow }
1031237fead6SMichael Halcrow 
1032237fead6SMichael Halcrow /**
1033237fead6SMichael Halcrow  * contains_ecryptfs_marker - check for the ecryptfs marker
1034237fead6SMichael Halcrow  * @data: The data block in which to check
1035237fead6SMichael Halcrow  *
1036237fead6SMichael Halcrow  * Returns one if marker found; zero if not found
1037237fead6SMichael Halcrow  */
1038dd2a3b7aSMichael Halcrow static int contains_ecryptfs_marker(char *data)
1039237fead6SMichael Halcrow {
1040237fead6SMichael Halcrow 	u32 m_1, m_2;
1041237fead6SMichael Halcrow 
104229335c6aSHarvey Harrison 	m_1 = get_unaligned_be32(data);
104329335c6aSHarvey Harrison 	m_2 = get_unaligned_be32(data + 4);
1044237fead6SMichael Halcrow 	if ((m_1 ^ MAGIC_ECRYPTFS_MARKER) == m_2)
1045237fead6SMichael Halcrow 		return 1;
1046237fead6SMichael Halcrow 	ecryptfs_printk(KERN_DEBUG, "m_1 = [0x%.8x]; m_2 = [0x%.8x]; "
1047237fead6SMichael Halcrow 			"MAGIC_ECRYPTFS_MARKER = [0x%.8x]\n", m_1, m_2,
1048237fead6SMichael Halcrow 			MAGIC_ECRYPTFS_MARKER);
1049237fead6SMichael Halcrow 	ecryptfs_printk(KERN_DEBUG, "(m_1 ^ MAGIC_ECRYPTFS_MARKER) = "
1050237fead6SMichael Halcrow 			"[0x%.8x]\n", (m_1 ^ MAGIC_ECRYPTFS_MARKER));
1051237fead6SMichael Halcrow 	return 0;
1052237fead6SMichael Halcrow }
1053237fead6SMichael Halcrow 
1054237fead6SMichael Halcrow struct ecryptfs_flag_map_elem {
1055237fead6SMichael Halcrow 	u32 file_flag;
1056237fead6SMichael Halcrow 	u32 local_flag;
1057237fead6SMichael Halcrow };
1058237fead6SMichael Halcrow 
1059237fead6SMichael Halcrow /* Add support for additional flags by adding elements here. */
1060237fead6SMichael Halcrow static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = {
1061237fead6SMichael Halcrow 	{0x00000001, ECRYPTFS_ENABLE_HMAC},
1062dd2a3b7aSMichael Halcrow 	{0x00000002, ECRYPTFS_ENCRYPTED},
1063dd2a3b7aSMichael Halcrow 	{0x00000004, ECRYPTFS_METADATA_IN_XATTR}
1064237fead6SMichael Halcrow };
1065237fead6SMichael Halcrow 
1066237fead6SMichael Halcrow /**
1067237fead6SMichael Halcrow  * ecryptfs_process_flags
106822e78fafSMichael Halcrow  * @crypt_stat: The cryptographic context
1069237fead6SMichael Halcrow  * @page_virt: Source data to be parsed
1070237fead6SMichael Halcrow  * @bytes_read: Updated with the number of bytes read
1071237fead6SMichael Halcrow  *
1072237fead6SMichael Halcrow  * Returns zero on success; non-zero if the flag set is invalid
1073237fead6SMichael Halcrow  */
1074237fead6SMichael Halcrow static int ecryptfs_process_flags(struct ecryptfs_crypt_stat *crypt_stat,
1075237fead6SMichael Halcrow 				  char *page_virt, int *bytes_read)
1076237fead6SMichael Halcrow {
1077237fead6SMichael Halcrow 	int rc = 0;
1078237fead6SMichael Halcrow 	int i;
1079237fead6SMichael Halcrow 	u32 flags;
1080237fead6SMichael Halcrow 
108129335c6aSHarvey Harrison 	flags = get_unaligned_be32(page_virt);
1082237fead6SMichael Halcrow 	for (i = 0; i < ((sizeof(ecryptfs_flag_map)
1083237fead6SMichael Halcrow 			  / sizeof(struct ecryptfs_flag_map_elem))); i++)
1084237fead6SMichael Halcrow 		if (flags & ecryptfs_flag_map[i].file_flag) {
1085e2bd99ecSMichael Halcrow 			crypt_stat->flags |= ecryptfs_flag_map[i].local_flag;
1086237fead6SMichael Halcrow 		} else
1087e2bd99ecSMichael Halcrow 			crypt_stat->flags &= ~(ecryptfs_flag_map[i].local_flag);
1088237fead6SMichael Halcrow 	/* Version is in top 8 bits of the 32-bit flag vector */
1089237fead6SMichael Halcrow 	crypt_stat->file_version = ((flags >> 24) & 0xFF);
1090237fead6SMichael Halcrow 	(*bytes_read) = 4;
1091237fead6SMichael Halcrow 	return rc;
1092237fead6SMichael Halcrow }
1093237fead6SMichael Halcrow 
1094237fead6SMichael Halcrow /**
1095237fead6SMichael Halcrow  * write_ecryptfs_marker
1096237fead6SMichael Halcrow  * @page_virt: The pointer to in a page to begin writing the marker
1097237fead6SMichael Halcrow  * @written: Number of bytes written
1098237fead6SMichael Halcrow  *
1099237fead6SMichael Halcrow  * Marker = 0x3c81b7f5
1100237fead6SMichael Halcrow  */
1101237fead6SMichael Halcrow static void write_ecryptfs_marker(char *page_virt, size_t *written)
1102237fead6SMichael Halcrow {
1103237fead6SMichael Halcrow 	u32 m_1, m_2;
1104237fead6SMichael Halcrow 
1105237fead6SMichael Halcrow 	get_random_bytes(&m_1, (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2));
1106237fead6SMichael Halcrow 	m_2 = (m_1 ^ MAGIC_ECRYPTFS_MARKER);
110729335c6aSHarvey Harrison 	put_unaligned_be32(m_1, page_virt);
110829335c6aSHarvey Harrison 	page_virt += (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2);
110929335c6aSHarvey Harrison 	put_unaligned_be32(m_2, page_virt);
1110237fead6SMichael Halcrow 	(*written) = MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
1111237fead6SMichael Halcrow }
1112237fead6SMichael Halcrow 
1113237fead6SMichael Halcrow static void
1114237fead6SMichael Halcrow write_ecryptfs_flags(char *page_virt, struct ecryptfs_crypt_stat *crypt_stat,
1115237fead6SMichael Halcrow 		     size_t *written)
1116237fead6SMichael Halcrow {
1117237fead6SMichael Halcrow 	u32 flags = 0;
1118237fead6SMichael Halcrow 	int i;
1119237fead6SMichael Halcrow 
1120237fead6SMichael Halcrow 	for (i = 0; i < ((sizeof(ecryptfs_flag_map)
1121237fead6SMichael Halcrow 			  / sizeof(struct ecryptfs_flag_map_elem))); i++)
1122e2bd99ecSMichael Halcrow 		if (crypt_stat->flags & ecryptfs_flag_map[i].local_flag)
1123237fead6SMichael Halcrow 			flags |= ecryptfs_flag_map[i].file_flag;
1124237fead6SMichael Halcrow 	/* Version is in top 8 bits of the 32-bit flag vector */
1125237fead6SMichael Halcrow 	flags |= ((((u8)crypt_stat->file_version) << 24) & 0xFF000000);
112629335c6aSHarvey Harrison 	put_unaligned_be32(flags, page_virt);
1127237fead6SMichael Halcrow 	(*written) = 4;
1128237fead6SMichael Halcrow }
1129237fead6SMichael Halcrow 
1130237fead6SMichael Halcrow struct ecryptfs_cipher_code_str_map_elem {
1131237fead6SMichael Halcrow 	char cipher_str[16];
113219e66a67STrevor Highland 	u8 cipher_code;
1133237fead6SMichael Halcrow };
1134237fead6SMichael Halcrow 
1135237fead6SMichael Halcrow /* Add support for additional ciphers by adding elements here. The
1136237fead6SMichael Halcrow  * cipher_code is whatever OpenPGP applicatoins use to identify the
1137237fead6SMichael Halcrow  * ciphers. List in order of probability. */
1138237fead6SMichael Halcrow static struct ecryptfs_cipher_code_str_map_elem
1139237fead6SMichael Halcrow ecryptfs_cipher_code_str_map[] = {
1140237fead6SMichael Halcrow 	{"aes",RFC2440_CIPHER_AES_128 },
1141237fead6SMichael Halcrow 	{"blowfish", RFC2440_CIPHER_BLOWFISH},
1142237fead6SMichael Halcrow 	{"des3_ede", RFC2440_CIPHER_DES3_EDE},
1143237fead6SMichael Halcrow 	{"cast5", RFC2440_CIPHER_CAST_5},
1144237fead6SMichael Halcrow 	{"twofish", RFC2440_CIPHER_TWOFISH},
1145237fead6SMichael Halcrow 	{"cast6", RFC2440_CIPHER_CAST_6},
1146237fead6SMichael Halcrow 	{"aes", RFC2440_CIPHER_AES_192},
1147237fead6SMichael Halcrow 	{"aes", RFC2440_CIPHER_AES_256}
1148237fead6SMichael Halcrow };
1149237fead6SMichael Halcrow 
1150237fead6SMichael Halcrow /**
1151237fead6SMichael Halcrow  * ecryptfs_code_for_cipher_string
11529c79f34fSMichael Halcrow  * @cipher_name: The string alias for the cipher
11539c79f34fSMichael Halcrow  * @key_bytes: Length of key in bytes; used for AES code selection
1154237fead6SMichael Halcrow  *
1155237fead6SMichael Halcrow  * Returns zero on no match, or the cipher code on match
1156237fead6SMichael Halcrow  */
11579c79f34fSMichael Halcrow u8 ecryptfs_code_for_cipher_string(char *cipher_name, size_t key_bytes)
1158237fead6SMichael Halcrow {
1159237fead6SMichael Halcrow 	int i;
116019e66a67STrevor Highland 	u8 code = 0;
1161237fead6SMichael Halcrow 	struct ecryptfs_cipher_code_str_map_elem *map =
1162237fead6SMichael Halcrow 		ecryptfs_cipher_code_str_map;
1163237fead6SMichael Halcrow 
11649c79f34fSMichael Halcrow 	if (strcmp(cipher_name, "aes") == 0) {
11659c79f34fSMichael Halcrow 		switch (key_bytes) {
1166237fead6SMichael Halcrow 		case 16:
1167237fead6SMichael Halcrow 			code = RFC2440_CIPHER_AES_128;
1168237fead6SMichael Halcrow 			break;
1169237fead6SMichael Halcrow 		case 24:
1170237fead6SMichael Halcrow 			code = RFC2440_CIPHER_AES_192;
1171237fead6SMichael Halcrow 			break;
1172237fead6SMichael Halcrow 		case 32:
1173237fead6SMichael Halcrow 			code = RFC2440_CIPHER_AES_256;
1174237fead6SMichael Halcrow 		}
1175237fead6SMichael Halcrow 	} else {
1176237fead6SMichael Halcrow 		for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
11779c79f34fSMichael Halcrow 			if (strcmp(cipher_name, map[i].cipher_str) == 0) {
1178237fead6SMichael Halcrow 				code = map[i].cipher_code;
1179237fead6SMichael Halcrow 				break;
1180237fead6SMichael Halcrow 			}
1181237fead6SMichael Halcrow 	}
1182237fead6SMichael Halcrow 	return code;
1183237fead6SMichael Halcrow }
1184237fead6SMichael Halcrow 
1185237fead6SMichael Halcrow /**
1186237fead6SMichael Halcrow  * ecryptfs_cipher_code_to_string
1187237fead6SMichael Halcrow  * @str: Destination to write out the cipher name
1188237fead6SMichael Halcrow  * @cipher_code: The code to convert to cipher name string
1189237fead6SMichael Halcrow  *
1190237fead6SMichael Halcrow  * Returns zero on success
1191237fead6SMichael Halcrow  */
119219e66a67STrevor Highland int ecryptfs_cipher_code_to_string(char *str, u8 cipher_code)
1193237fead6SMichael Halcrow {
1194237fead6SMichael Halcrow 	int rc = 0;
1195237fead6SMichael Halcrow 	int i;
1196237fead6SMichael Halcrow 
1197237fead6SMichael Halcrow 	str[0] = '\0';
1198237fead6SMichael Halcrow 	for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
1199237fead6SMichael Halcrow 		if (cipher_code == ecryptfs_cipher_code_str_map[i].cipher_code)
1200237fead6SMichael Halcrow 			strcpy(str, ecryptfs_cipher_code_str_map[i].cipher_str);
1201237fead6SMichael Halcrow 	if (str[0] == '\0') {
1202237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "Cipher code not recognized: "
1203237fead6SMichael Halcrow 				"[%d]\n", cipher_code);
1204237fead6SMichael Halcrow 		rc = -EINVAL;
1205237fead6SMichael Halcrow 	}
1206237fead6SMichael Halcrow 	return rc;
1207237fead6SMichael Halcrow }
1208237fead6SMichael Halcrow 
1209d7cdc5feSMichael Halcrow int ecryptfs_read_and_validate_header_region(char *data,
1210d7cdc5feSMichael Halcrow 					     struct inode *ecryptfs_inode)
1211dd2a3b7aSMichael Halcrow {
1212d7cdc5feSMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat =
1213d7cdc5feSMichael Halcrow 		&(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
1214dd2a3b7aSMichael Halcrow 	int rc;
1215dd2a3b7aSMichael Halcrow 
1216d7cdc5feSMichael Halcrow 	rc = ecryptfs_read_lower(data, 0, crypt_stat->extent_size,
1217d7cdc5feSMichael Halcrow 				 ecryptfs_inode);
1218d7cdc5feSMichael Halcrow 	if (rc) {
1219d7cdc5feSMichael Halcrow 		printk(KERN_ERR "%s: Error reading header region; rc = [%d]\n",
122018d1dbf1SHarvey Harrison 		       __func__, rc);
1221dd2a3b7aSMichael Halcrow 		goto out;
1222d7cdc5feSMichael Halcrow 	}
1223d7cdc5feSMichael Halcrow 	if (!contains_ecryptfs_marker(data + ECRYPTFS_FILE_SIZE_BYTES)) {
1224dd2a3b7aSMichael Halcrow 		rc = -EINVAL;
1225d7cdc5feSMichael Halcrow 		ecryptfs_printk(KERN_DEBUG, "Valid marker not found\n");
1226d7cdc5feSMichael Halcrow 	}
1227dd2a3b7aSMichael Halcrow out:
1228dd2a3b7aSMichael Halcrow 	return rc;
1229dd2a3b7aSMichael Halcrow }
1230dd2a3b7aSMichael Halcrow 
1231e77a56ddSMichael Halcrow void
1232e77a56ddSMichael Halcrow ecryptfs_write_header_metadata(char *virt,
1233e77a56ddSMichael Halcrow 			       struct ecryptfs_crypt_stat *crypt_stat,
1234237fead6SMichael Halcrow 			       size_t *written)
1235237fead6SMichael Halcrow {
1236237fead6SMichael Halcrow 	u32 header_extent_size;
1237237fead6SMichael Halcrow 	u16 num_header_extents_at_front;
1238237fead6SMichael Halcrow 
123945eaab79SMichael Halcrow 	header_extent_size = (u32)crypt_stat->extent_size;
1240237fead6SMichael Halcrow 	num_header_extents_at_front =
1241cc11beffSMichael Halcrow 		(u16)(crypt_stat->num_header_bytes_at_front
1242cc11beffSMichael Halcrow 		      / crypt_stat->extent_size);
124329335c6aSHarvey Harrison 	put_unaligned_be32(header_extent_size, virt);
1244237fead6SMichael Halcrow 	virt += 4;
124529335c6aSHarvey Harrison 	put_unaligned_be16(num_header_extents_at_front, virt);
1246237fead6SMichael Halcrow 	(*written) = 6;
1247237fead6SMichael Halcrow }
1248237fead6SMichael Halcrow 
1249237fead6SMichael Halcrow struct kmem_cache *ecryptfs_header_cache_1;
1250237fead6SMichael Halcrow struct kmem_cache *ecryptfs_header_cache_2;
1251237fead6SMichael Halcrow 
1252237fead6SMichael Halcrow /**
1253237fead6SMichael Halcrow  * ecryptfs_write_headers_virt
125422e78fafSMichael Halcrow  * @page_virt: The virtual address to write the headers to
125587b811c3SEric Sandeen  * @max: The size of memory allocated at page_virt
125622e78fafSMichael Halcrow  * @size: Set to the number of bytes written by this function
125722e78fafSMichael Halcrow  * @crypt_stat: The cryptographic context
125822e78fafSMichael Halcrow  * @ecryptfs_dentry: The eCryptfs dentry
1259237fead6SMichael Halcrow  *
1260237fead6SMichael Halcrow  * Format version: 1
1261237fead6SMichael Halcrow  *
1262237fead6SMichael Halcrow  *   Header Extent:
1263237fead6SMichael Halcrow  *     Octets 0-7:        Unencrypted file size (big-endian)
1264237fead6SMichael Halcrow  *     Octets 8-15:       eCryptfs special marker
1265237fead6SMichael Halcrow  *     Octets 16-19:      Flags
1266237fead6SMichael Halcrow  *      Octet 16:         File format version number (between 0 and 255)
1267237fead6SMichael Halcrow  *      Octets 17-18:     Reserved
1268237fead6SMichael Halcrow  *      Octet 19:         Bit 1 (lsb): Reserved
1269237fead6SMichael Halcrow  *                        Bit 2: Encrypted?
1270237fead6SMichael Halcrow  *                        Bits 3-8: Reserved
1271237fead6SMichael Halcrow  *     Octets 20-23:      Header extent size (big-endian)
1272237fead6SMichael Halcrow  *     Octets 24-25:      Number of header extents at front of file
1273237fead6SMichael Halcrow  *                        (big-endian)
1274237fead6SMichael Halcrow  *     Octet  26:         Begin RFC 2440 authentication token packet set
1275237fead6SMichael Halcrow  *   Data Extent 0:
1276237fead6SMichael Halcrow  *     Lower data (CBC encrypted)
1277237fead6SMichael Halcrow  *   Data Extent 1:
1278237fead6SMichael Halcrow  *     Lower data (CBC encrypted)
1279237fead6SMichael Halcrow  *   ...
1280237fead6SMichael Halcrow  *
1281237fead6SMichael Halcrow  * Returns zero on success
1282237fead6SMichael Halcrow  */
128387b811c3SEric Sandeen static int ecryptfs_write_headers_virt(char *page_virt, size_t max,
128487b811c3SEric Sandeen 				       size_t *size,
1285237fead6SMichael Halcrow 				       struct ecryptfs_crypt_stat *crypt_stat,
1286237fead6SMichael Halcrow 				       struct dentry *ecryptfs_dentry)
1287237fead6SMichael Halcrow {
1288237fead6SMichael Halcrow 	int rc;
1289237fead6SMichael Halcrow 	size_t written;
1290237fead6SMichael Halcrow 	size_t offset;
1291237fead6SMichael Halcrow 
1292237fead6SMichael Halcrow 	offset = ECRYPTFS_FILE_SIZE_BYTES;
1293237fead6SMichael Halcrow 	write_ecryptfs_marker((page_virt + offset), &written);
1294237fead6SMichael Halcrow 	offset += written;
1295237fead6SMichael Halcrow 	write_ecryptfs_flags((page_virt + offset), crypt_stat, &written);
1296237fead6SMichael Halcrow 	offset += written;
1297e77a56ddSMichael Halcrow 	ecryptfs_write_header_metadata((page_virt + offset), crypt_stat,
1298e77a56ddSMichael Halcrow 				       &written);
1299237fead6SMichael Halcrow 	offset += written;
1300237fead6SMichael Halcrow 	rc = ecryptfs_generate_key_packet_set((page_virt + offset), crypt_stat,
1301237fead6SMichael Halcrow 					      ecryptfs_dentry, &written,
130287b811c3SEric Sandeen 					      max - offset);
1303237fead6SMichael Halcrow 	if (rc)
1304237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "Error generating key packet "
1305237fead6SMichael Halcrow 				"set; rc = [%d]\n", rc);
1306dd2a3b7aSMichael Halcrow 	if (size) {
1307dd2a3b7aSMichael Halcrow 		offset += written;
1308dd2a3b7aSMichael Halcrow 		*size = offset;
1309dd2a3b7aSMichael Halcrow 	}
1310dd2a3b7aSMichael Halcrow 	return rc;
1311dd2a3b7aSMichael Halcrow }
1312dd2a3b7aSMichael Halcrow 
131322e78fafSMichael Halcrow static int
131422e78fafSMichael Halcrow ecryptfs_write_metadata_to_contents(struct ecryptfs_crypt_stat *crypt_stat,
1315d7cdc5feSMichael Halcrow 				    struct dentry *ecryptfs_dentry,
1316cc11beffSMichael Halcrow 				    char *virt)
1317dd2a3b7aSMichael Halcrow {
1318d7cdc5feSMichael Halcrow 	int rc;
1319dd2a3b7aSMichael Halcrow 
1320cc11beffSMichael Halcrow 	rc = ecryptfs_write_lower(ecryptfs_dentry->d_inode, virt,
1321cc11beffSMichael Halcrow 				  0, crypt_stat->num_header_bytes_at_front);
1322cc11beffSMichael Halcrow 	if (rc)
1323d7cdc5feSMichael Halcrow 		printk(KERN_ERR "%s: Error attempting to write header "
132418d1dbf1SHarvey Harrison 		       "information to lower file; rc = [%d]\n", __func__,
1325d7cdc5feSMichael Halcrow 		       rc);
132670456600SMichael Halcrow 	return rc;
1327dd2a3b7aSMichael Halcrow }
1328dd2a3b7aSMichael Halcrow 
132922e78fafSMichael Halcrow static int
133022e78fafSMichael Halcrow ecryptfs_write_metadata_to_xattr(struct dentry *ecryptfs_dentry,
1331dd2a3b7aSMichael Halcrow 				 struct ecryptfs_crypt_stat *crypt_stat,
1332dd2a3b7aSMichael Halcrow 				 char *page_virt, size_t size)
1333dd2a3b7aSMichael Halcrow {
1334dd2a3b7aSMichael Halcrow 	int rc;
1335dd2a3b7aSMichael Halcrow 
1336dd2a3b7aSMichael Halcrow 	rc = ecryptfs_setxattr(ecryptfs_dentry, ECRYPTFS_XATTR_NAME, page_virt,
1337dd2a3b7aSMichael Halcrow 			       size, 0);
1338237fead6SMichael Halcrow 	return rc;
1339237fead6SMichael Halcrow }
1340237fead6SMichael Halcrow 
1341237fead6SMichael Halcrow /**
1342dd2a3b7aSMichael Halcrow  * ecryptfs_write_metadata
134322e78fafSMichael Halcrow  * @ecryptfs_dentry: The eCryptfs dentry
1344237fead6SMichael Halcrow  *
1345237fead6SMichael Halcrow  * Write the file headers out.  This will likely involve a userspace
1346237fead6SMichael Halcrow  * callout, in which the session key is encrypted with one or more
1347237fead6SMichael Halcrow  * public keys and/or the passphrase necessary to do the encryption is
1348237fead6SMichael Halcrow  * retrieved via a prompt.  Exactly what happens at this point should
1349237fead6SMichael Halcrow  * be policy-dependent.
1350237fead6SMichael Halcrow  *
1351237fead6SMichael Halcrow  * Returns zero on success; non-zero on error
1352237fead6SMichael Halcrow  */
1353d7cdc5feSMichael Halcrow int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry)
1354237fead6SMichael Halcrow {
1355d7cdc5feSMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat =
1356d7cdc5feSMichael Halcrow 		&ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat;
1357cc11beffSMichael Halcrow 	char *virt;
1358d7cdc5feSMichael Halcrow 	size_t size = 0;
1359237fead6SMichael Halcrow 	int rc = 0;
1360237fead6SMichael Halcrow 
1361e2bd99ecSMichael Halcrow 	if (likely(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
1362e2bd99ecSMichael Halcrow 		if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
1363d7cdc5feSMichael Halcrow 			printk(KERN_ERR "Key is invalid; bailing out\n");
1364237fead6SMichael Halcrow 			rc = -EINVAL;
1365237fead6SMichael Halcrow 			goto out;
1366237fead6SMichael Halcrow 		}
1367237fead6SMichael Halcrow 	} else {
1368cc11beffSMichael Halcrow 		printk(KERN_WARNING "%s: Encrypted flag not set\n",
136918d1dbf1SHarvey Harrison 		       __func__);
1370237fead6SMichael Halcrow 		rc = -EINVAL;
1371237fead6SMichael Halcrow 		goto out;
1372237fead6SMichael Halcrow 	}
1373237fead6SMichael Halcrow 	/* Released in this function */
137487b811c3SEric Sandeen 	virt = (char *)get_zeroed_page(GFP_KERNEL);
1375cc11beffSMichael Halcrow 	if (!virt) {
137618d1dbf1SHarvey Harrison 		printk(KERN_ERR "%s: Out of memory\n", __func__);
1377237fead6SMichael Halcrow 		rc = -ENOMEM;
1378237fead6SMichael Halcrow 		goto out;
1379237fead6SMichael Halcrow 	}
138087b811c3SEric Sandeen 	rc = ecryptfs_write_headers_virt(virt, PAGE_CACHE_SIZE, &size,
138187b811c3SEric Sandeen 					 crypt_stat, ecryptfs_dentry);
1382237fead6SMichael Halcrow 	if (unlikely(rc)) {
1383cc11beffSMichael Halcrow 		printk(KERN_ERR "%s: Error whilst writing headers; rc = [%d]\n",
138418d1dbf1SHarvey Harrison 		       __func__, rc);
1385237fead6SMichael Halcrow 		goto out_free;
1386237fead6SMichael Halcrow 	}
1387dd2a3b7aSMichael Halcrow 	if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
1388dd2a3b7aSMichael Halcrow 		rc = ecryptfs_write_metadata_to_xattr(ecryptfs_dentry,
1389cc11beffSMichael Halcrow 						      crypt_stat, virt, size);
1390dd2a3b7aSMichael Halcrow 	else
1391d7cdc5feSMichael Halcrow 		rc = ecryptfs_write_metadata_to_contents(crypt_stat,
1392cc11beffSMichael Halcrow 							 ecryptfs_dentry, virt);
1393dd2a3b7aSMichael Halcrow 	if (rc) {
1394cc11beffSMichael Halcrow 		printk(KERN_ERR "%s: Error writing metadata out to lower file; "
139518d1dbf1SHarvey Harrison 		       "rc = [%d]\n", __func__, rc);
1396dd2a3b7aSMichael Halcrow 		goto out_free;
1397237fead6SMichael Halcrow 	}
1398237fead6SMichael Halcrow out_free:
139987b811c3SEric Sandeen 	free_page((unsigned long)virt);
1400237fead6SMichael Halcrow out:
1401237fead6SMichael Halcrow 	return rc;
1402237fead6SMichael Halcrow }
1403237fead6SMichael Halcrow 
1404dd2a3b7aSMichael Halcrow #define ECRYPTFS_DONT_VALIDATE_HEADER_SIZE 0
1405dd2a3b7aSMichael Halcrow #define ECRYPTFS_VALIDATE_HEADER_SIZE 1
1406237fead6SMichael Halcrow static int parse_header_metadata(struct ecryptfs_crypt_stat *crypt_stat,
1407dd2a3b7aSMichael Halcrow 				 char *virt, int *bytes_read,
1408dd2a3b7aSMichael Halcrow 				 int validate_header_size)
1409237fead6SMichael Halcrow {
1410237fead6SMichael Halcrow 	int rc = 0;
1411237fead6SMichael Halcrow 	u32 header_extent_size;
1412237fead6SMichael Halcrow 	u16 num_header_extents_at_front;
1413237fead6SMichael Halcrow 
141429335c6aSHarvey Harrison 	header_extent_size = get_unaligned_be32(virt);
141529335c6aSHarvey Harrison 	virt += sizeof(__be32);
141629335c6aSHarvey Harrison 	num_header_extents_at_front = get_unaligned_be16(virt);
1417cc11beffSMichael Halcrow 	crypt_stat->num_header_bytes_at_front =
1418cc11beffSMichael Halcrow 		(((size_t)num_header_extents_at_front
1419cc11beffSMichael Halcrow 		  * (size_t)header_extent_size));
142029335c6aSHarvey Harrison 	(*bytes_read) = (sizeof(__be32) + sizeof(__be16));
1421dd2a3b7aSMichael Halcrow 	if ((validate_header_size == ECRYPTFS_VALIDATE_HEADER_SIZE)
1422cc11beffSMichael Halcrow 	    && (crypt_stat->num_header_bytes_at_front
1423dd2a3b7aSMichael Halcrow 		< ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)) {
1424237fead6SMichael Halcrow 		rc = -EINVAL;
1425cc11beffSMichael Halcrow 		printk(KERN_WARNING "Invalid header size: [%zd]\n",
1426cc11beffSMichael Halcrow 		       crypt_stat->num_header_bytes_at_front);
1427237fead6SMichael Halcrow 	}
1428237fead6SMichael Halcrow 	return rc;
1429237fead6SMichael Halcrow }
1430237fead6SMichael Halcrow 
1431237fead6SMichael Halcrow /**
1432237fead6SMichael Halcrow  * set_default_header_data
143322e78fafSMichael Halcrow  * @crypt_stat: The cryptographic context
1434237fead6SMichael Halcrow  *
1435237fead6SMichael Halcrow  * For version 0 file format; this function is only for backwards
1436237fead6SMichael Halcrow  * compatibility for files created with the prior versions of
1437237fead6SMichael Halcrow  * eCryptfs.
1438237fead6SMichael Halcrow  */
1439237fead6SMichael Halcrow static void set_default_header_data(struct ecryptfs_crypt_stat *crypt_stat)
1440237fead6SMichael Halcrow {
1441cc11beffSMichael Halcrow 	crypt_stat->num_header_bytes_at_front =
1442cc11beffSMichael Halcrow 		ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
1443237fead6SMichael Halcrow }
1444237fead6SMichael Halcrow 
1445237fead6SMichael Halcrow /**
1446237fead6SMichael Halcrow  * ecryptfs_read_headers_virt
144722e78fafSMichael Halcrow  * @page_virt: The virtual address into which to read the headers
144822e78fafSMichael Halcrow  * @crypt_stat: The cryptographic context
144922e78fafSMichael Halcrow  * @ecryptfs_dentry: The eCryptfs dentry
145022e78fafSMichael Halcrow  * @validate_header_size: Whether to validate the header size while reading
1451237fead6SMichael Halcrow  *
1452237fead6SMichael Halcrow  * Read/parse the header data. The header format is detailed in the
1453237fead6SMichael Halcrow  * comment block for the ecryptfs_write_headers_virt() function.
1454237fead6SMichael Halcrow  *
1455237fead6SMichael Halcrow  * Returns zero on success
1456237fead6SMichael Halcrow  */
1457237fead6SMichael Halcrow static int ecryptfs_read_headers_virt(char *page_virt,
1458237fead6SMichael Halcrow 				      struct ecryptfs_crypt_stat *crypt_stat,
1459dd2a3b7aSMichael Halcrow 				      struct dentry *ecryptfs_dentry,
1460dd2a3b7aSMichael Halcrow 				      int validate_header_size)
1461237fead6SMichael Halcrow {
1462237fead6SMichael Halcrow 	int rc = 0;
1463237fead6SMichael Halcrow 	int offset;
1464237fead6SMichael Halcrow 	int bytes_read;
1465237fead6SMichael Halcrow 
1466237fead6SMichael Halcrow 	ecryptfs_set_default_sizes(crypt_stat);
1467237fead6SMichael Halcrow 	crypt_stat->mount_crypt_stat = &ecryptfs_superblock_to_private(
1468237fead6SMichael Halcrow 		ecryptfs_dentry->d_sb)->mount_crypt_stat;
1469237fead6SMichael Halcrow 	offset = ECRYPTFS_FILE_SIZE_BYTES;
1470237fead6SMichael Halcrow 	rc = contains_ecryptfs_marker(page_virt + offset);
1471237fead6SMichael Halcrow 	if (rc == 0) {
1472237fead6SMichael Halcrow 		rc = -EINVAL;
1473237fead6SMichael Halcrow 		goto out;
1474237fead6SMichael Halcrow 	}
1475237fead6SMichael Halcrow 	offset += MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
1476237fead6SMichael Halcrow 	rc = ecryptfs_process_flags(crypt_stat, (page_virt + offset),
1477237fead6SMichael Halcrow 				    &bytes_read);
1478237fead6SMichael Halcrow 	if (rc) {
1479237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "Error processing flags\n");
1480237fead6SMichael Halcrow 		goto out;
1481237fead6SMichael Halcrow 	}
1482237fead6SMichael Halcrow 	if (crypt_stat->file_version > ECRYPTFS_SUPPORTED_FILE_VERSION) {
1483237fead6SMichael Halcrow 		ecryptfs_printk(KERN_WARNING, "File version is [%d]; only "
1484237fead6SMichael Halcrow 				"file version [%d] is supported by this "
1485237fead6SMichael Halcrow 				"version of eCryptfs\n",
1486237fead6SMichael Halcrow 				crypt_stat->file_version,
1487237fead6SMichael Halcrow 				ECRYPTFS_SUPPORTED_FILE_VERSION);
1488237fead6SMichael Halcrow 		rc = -EINVAL;
1489237fead6SMichael Halcrow 		goto out;
1490237fead6SMichael Halcrow 	}
1491237fead6SMichael Halcrow 	offset += bytes_read;
1492237fead6SMichael Halcrow 	if (crypt_stat->file_version >= 1) {
1493237fead6SMichael Halcrow 		rc = parse_header_metadata(crypt_stat, (page_virt + offset),
1494dd2a3b7aSMichael Halcrow 					   &bytes_read, validate_header_size);
1495237fead6SMichael Halcrow 		if (rc) {
1496237fead6SMichael Halcrow 			ecryptfs_printk(KERN_WARNING, "Error reading header "
1497237fead6SMichael Halcrow 					"metadata; rc = [%d]\n", rc);
1498237fead6SMichael Halcrow 		}
1499237fead6SMichael Halcrow 		offset += bytes_read;
1500237fead6SMichael Halcrow 	} else
1501237fead6SMichael Halcrow 		set_default_header_data(crypt_stat);
1502237fead6SMichael Halcrow 	rc = ecryptfs_parse_packet_set(crypt_stat, (page_virt + offset),
1503237fead6SMichael Halcrow 				       ecryptfs_dentry);
1504237fead6SMichael Halcrow out:
1505237fead6SMichael Halcrow 	return rc;
1506237fead6SMichael Halcrow }
1507237fead6SMichael Halcrow 
1508237fead6SMichael Halcrow /**
1509dd2a3b7aSMichael Halcrow  * ecryptfs_read_xattr_region
151022e78fafSMichael Halcrow  * @page_virt: The vitual address into which to read the xattr data
15112ed92554SMichael Halcrow  * @ecryptfs_inode: The eCryptfs inode
1512dd2a3b7aSMichael Halcrow  *
1513dd2a3b7aSMichael Halcrow  * Attempts to read the crypto metadata from the extended attribute
1514dd2a3b7aSMichael Halcrow  * region of the lower file.
151522e78fafSMichael Halcrow  *
151622e78fafSMichael Halcrow  * Returns zero on success; non-zero on error
1517dd2a3b7aSMichael Halcrow  */
1518d7cdc5feSMichael Halcrow int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode)
1519dd2a3b7aSMichael Halcrow {
1520d7cdc5feSMichael Halcrow 	struct dentry *lower_dentry =
1521d7cdc5feSMichael Halcrow 		ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
1522dd2a3b7aSMichael Halcrow 	ssize_t size;
1523dd2a3b7aSMichael Halcrow 	int rc = 0;
1524dd2a3b7aSMichael Halcrow 
1525d7cdc5feSMichael Halcrow 	size = ecryptfs_getxattr_lower(lower_dentry, ECRYPTFS_XATTR_NAME,
1526dd2a3b7aSMichael Halcrow 				       page_virt, ECRYPTFS_DEFAULT_EXTENT_SIZE);
1527dd2a3b7aSMichael Halcrow 	if (size < 0) {
152825bd8174SMichael Halcrow 		if (unlikely(ecryptfs_verbosity > 0))
152925bd8174SMichael Halcrow 			printk(KERN_INFO "Error attempting to read the [%s] "
153025bd8174SMichael Halcrow 			       "xattr from the lower file; return value = "
153125bd8174SMichael Halcrow 			       "[%zd]\n", ECRYPTFS_XATTR_NAME, size);
1532dd2a3b7aSMichael Halcrow 		rc = -EINVAL;
1533dd2a3b7aSMichael Halcrow 		goto out;
1534dd2a3b7aSMichael Halcrow 	}
1535dd2a3b7aSMichael Halcrow out:
1536dd2a3b7aSMichael Halcrow 	return rc;
1537dd2a3b7aSMichael Halcrow }
1538dd2a3b7aSMichael Halcrow 
1539dd2a3b7aSMichael Halcrow int ecryptfs_read_and_validate_xattr_region(char *page_virt,
1540dd2a3b7aSMichael Halcrow 					    struct dentry *ecryptfs_dentry)
1541dd2a3b7aSMichael Halcrow {
1542dd2a3b7aSMichael Halcrow 	int rc;
1543dd2a3b7aSMichael Halcrow 
1544d7cdc5feSMichael Halcrow 	rc = ecryptfs_read_xattr_region(page_virt, ecryptfs_dentry->d_inode);
1545dd2a3b7aSMichael Halcrow 	if (rc)
1546dd2a3b7aSMichael Halcrow 		goto out;
1547dd2a3b7aSMichael Halcrow 	if (!contains_ecryptfs_marker(page_virt	+ ECRYPTFS_FILE_SIZE_BYTES)) {
1548dd2a3b7aSMichael Halcrow 		printk(KERN_WARNING "Valid data found in [%s] xattr, but "
1549dd2a3b7aSMichael Halcrow 			"the marker is invalid\n", ECRYPTFS_XATTR_NAME);
1550dd2a3b7aSMichael Halcrow 		rc = -EINVAL;
1551dd2a3b7aSMichael Halcrow 	}
1552dd2a3b7aSMichael Halcrow out:
1553dd2a3b7aSMichael Halcrow 	return rc;
1554dd2a3b7aSMichael Halcrow }
1555dd2a3b7aSMichael Halcrow 
1556dd2a3b7aSMichael Halcrow /**
1557dd2a3b7aSMichael Halcrow  * ecryptfs_read_metadata
1558dd2a3b7aSMichael Halcrow  *
1559dd2a3b7aSMichael Halcrow  * Common entry point for reading file metadata. From here, we could
1560dd2a3b7aSMichael Halcrow  * retrieve the header information from the header region of the file,
1561dd2a3b7aSMichael Halcrow  * the xattr region of the file, or some other repostory that is
1562dd2a3b7aSMichael Halcrow  * stored separately from the file itself. The current implementation
1563dd2a3b7aSMichael Halcrow  * supports retrieving the metadata information from the file contents
1564dd2a3b7aSMichael Halcrow  * and from the xattr region.
1565237fead6SMichael Halcrow  *
1566237fead6SMichael Halcrow  * Returns zero if valid headers found and parsed; non-zero otherwise
1567237fead6SMichael Halcrow  */
1568d7cdc5feSMichael Halcrow int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry)
1569237fead6SMichael Halcrow {
1570237fead6SMichael Halcrow 	int rc = 0;
1571237fead6SMichael Halcrow 	char *page_virt = NULL;
1572d7cdc5feSMichael Halcrow 	struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
1573237fead6SMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat =
1574d7cdc5feSMichael Halcrow 	    &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
1575e77a56ddSMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
1576e77a56ddSMichael Halcrow 		&ecryptfs_superblock_to_private(
1577e77a56ddSMichael Halcrow 			ecryptfs_dentry->d_sb)->mount_crypt_stat;
1578237fead6SMichael Halcrow 
1579e77a56ddSMichael Halcrow 	ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
1580e77a56ddSMichael Halcrow 						      mount_crypt_stat);
1581237fead6SMichael Halcrow 	/* Read the first page from the underlying file */
1582f7267c0cSChristoph Lameter 	page_virt = kmem_cache_alloc(ecryptfs_header_cache_1, GFP_USER);
1583237fead6SMichael Halcrow 	if (!page_virt) {
1584237fead6SMichael Halcrow 		rc = -ENOMEM;
1585d7cdc5feSMichael Halcrow 		printk(KERN_ERR "%s: Unable to allocate page_virt\n",
158618d1dbf1SHarvey Harrison 		       __func__);
1587237fead6SMichael Halcrow 		goto out;
1588237fead6SMichael Halcrow 	}
1589d7cdc5feSMichael Halcrow 	rc = ecryptfs_read_lower(page_virt, 0, crypt_stat->extent_size,
1590d7cdc5feSMichael Halcrow 				 ecryptfs_inode);
1591d7cdc5feSMichael Halcrow 	if (!rc)
1592237fead6SMichael Halcrow 		rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1593dd2a3b7aSMichael Halcrow 						ecryptfs_dentry,
1594dd2a3b7aSMichael Halcrow 						ECRYPTFS_VALIDATE_HEADER_SIZE);
1595dd2a3b7aSMichael Halcrow 	if (rc) {
1596d7cdc5feSMichael Halcrow 		rc = ecryptfs_read_xattr_region(page_virt, ecryptfs_inode);
1597237fead6SMichael Halcrow 		if (rc) {
1598dd2a3b7aSMichael Halcrow 			printk(KERN_DEBUG "Valid eCryptfs headers not found in "
1599dd2a3b7aSMichael Halcrow 			       "file header region or xattr region\n");
1600237fead6SMichael Halcrow 			rc = -EINVAL;
1601dd2a3b7aSMichael Halcrow 			goto out;
1602dd2a3b7aSMichael Halcrow 		}
1603dd2a3b7aSMichael Halcrow 		rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1604dd2a3b7aSMichael Halcrow 						ecryptfs_dentry,
1605dd2a3b7aSMichael Halcrow 						ECRYPTFS_DONT_VALIDATE_HEADER_SIZE);
1606dd2a3b7aSMichael Halcrow 		if (rc) {
1607dd2a3b7aSMichael Halcrow 			printk(KERN_DEBUG "Valid eCryptfs headers not found in "
1608dd2a3b7aSMichael Halcrow 			       "file xattr region either\n");
1609dd2a3b7aSMichael Halcrow 			rc = -EINVAL;
1610dd2a3b7aSMichael Halcrow 		}
1611dd2a3b7aSMichael Halcrow 		if (crypt_stat->mount_crypt_stat->flags
1612dd2a3b7aSMichael Halcrow 		    & ECRYPTFS_XATTR_METADATA_ENABLED) {
1613dd2a3b7aSMichael Halcrow 			crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
1614dd2a3b7aSMichael Halcrow 		} else {
1615dd2a3b7aSMichael Halcrow 			printk(KERN_WARNING "Attempt to access file with "
1616dd2a3b7aSMichael Halcrow 			       "crypto metadata only in the extended attribute "
1617dd2a3b7aSMichael Halcrow 			       "region, but eCryptfs was mounted without "
1618dd2a3b7aSMichael Halcrow 			       "xattr support enabled. eCryptfs will not treat "
1619dd2a3b7aSMichael Halcrow 			       "this like an encrypted file.\n");
1620dd2a3b7aSMichael Halcrow 			rc = -EINVAL;
1621dd2a3b7aSMichael Halcrow 		}
1622237fead6SMichael Halcrow 	}
1623237fead6SMichael Halcrow out:
1624237fead6SMichael Halcrow 	if (page_virt) {
1625237fead6SMichael Halcrow 		memset(page_virt, 0, PAGE_CACHE_SIZE);
1626237fead6SMichael Halcrow 		kmem_cache_free(ecryptfs_header_cache_1, page_virt);
1627237fead6SMichael Halcrow 	}
1628237fead6SMichael Halcrow 	return rc;
1629237fead6SMichael Halcrow }
1630237fead6SMichael Halcrow 
1631237fead6SMichael Halcrow /**
1632237fead6SMichael Halcrow  * ecryptfs_encode_filename - converts a plaintext file name to cipher text
1633237fead6SMichael Halcrow  * @crypt_stat: The crypt_stat struct associated with the file anem to encode
1634237fead6SMichael Halcrow  * @name: The plaintext name
1635237fead6SMichael Halcrow  * @length: The length of the plaintext
1636237fead6SMichael Halcrow  * @encoded_name: The encypted name
1637237fead6SMichael Halcrow  *
1638237fead6SMichael Halcrow  * Encrypts and encodes a filename into something that constitutes a
1639237fead6SMichael Halcrow  * valid filename for a filesystem, with printable characters.
1640237fead6SMichael Halcrow  *
1641237fead6SMichael Halcrow  * We assume that we have a properly initialized crypto context,
1642237fead6SMichael Halcrow  * pointed to by crypt_stat->tfm.
1643237fead6SMichael Halcrow  *
1644237fead6SMichael Halcrow  * TODO: Implement filename decoding and decryption here, in place of
1645237fead6SMichael Halcrow  * memcpy. We are keeping the framework around for now to (1)
1646237fead6SMichael Halcrow  * facilitate testing of the components needed to implement filename
1647237fead6SMichael Halcrow  * encryption and (2) to provide a code base from which other
1648237fead6SMichael Halcrow  * developers in the community can easily implement this feature.
1649237fead6SMichael Halcrow  *
1650237fead6SMichael Halcrow  * Returns the length of encoded filename; negative if error
1651237fead6SMichael Halcrow  */
1652237fead6SMichael Halcrow int
1653237fead6SMichael Halcrow ecryptfs_encode_filename(struct ecryptfs_crypt_stat *crypt_stat,
1654237fead6SMichael Halcrow 			 const char *name, int length, char **encoded_name)
1655237fead6SMichael Halcrow {
1656237fead6SMichael Halcrow 	int error = 0;
1657237fead6SMichael Halcrow 
1658237fead6SMichael Halcrow 	(*encoded_name) = kmalloc(length + 2, GFP_KERNEL);
1659237fead6SMichael Halcrow 	if (!(*encoded_name)) {
1660237fead6SMichael Halcrow 		error = -ENOMEM;
1661237fead6SMichael Halcrow 		goto out;
1662237fead6SMichael Halcrow 	}
1663237fead6SMichael Halcrow 	/* TODO: Filename encryption is a scheduled feature for a
1664237fead6SMichael Halcrow 	 * future version of eCryptfs. This function is here only for
1665237fead6SMichael Halcrow 	 * the purpose of providing a framework for other developers
1666237fead6SMichael Halcrow 	 * to easily implement filename encryption. Hint: Replace this
1667237fead6SMichael Halcrow 	 * memcpy() with a call to encrypt and encode the
1668237fead6SMichael Halcrow 	 * filename, the set the length accordingly. */
1669237fead6SMichael Halcrow 	memcpy((void *)(*encoded_name), (void *)name, length);
1670237fead6SMichael Halcrow 	(*encoded_name)[length] = '\0';
1671237fead6SMichael Halcrow 	error = length + 1;
1672237fead6SMichael Halcrow out:
1673237fead6SMichael Halcrow 	return error;
1674237fead6SMichael Halcrow }
1675237fead6SMichael Halcrow 
1676237fead6SMichael Halcrow /**
1677237fead6SMichael Halcrow  * ecryptfs_decode_filename - converts the cipher text name to plaintext
1678237fead6SMichael Halcrow  * @crypt_stat: The crypt_stat struct associated with the file
1679237fead6SMichael Halcrow  * @name: The filename in cipher text
1680237fead6SMichael Halcrow  * @length: The length of the cipher text name
1681237fead6SMichael Halcrow  * @decrypted_name: The plaintext name
1682237fead6SMichael Halcrow  *
1683237fead6SMichael Halcrow  * Decodes and decrypts the filename.
1684237fead6SMichael Halcrow  *
1685237fead6SMichael Halcrow  * We assume that we have a properly initialized crypto context,
1686237fead6SMichael Halcrow  * pointed to by crypt_stat->tfm.
1687237fead6SMichael Halcrow  *
1688237fead6SMichael Halcrow  * TODO: Implement filename decoding and decryption here, in place of
1689237fead6SMichael Halcrow  * memcpy. We are keeping the framework around for now to (1)
1690237fead6SMichael Halcrow  * facilitate testing of the components needed to implement filename
1691237fead6SMichael Halcrow  * encryption and (2) to provide a code base from which other
1692237fead6SMichael Halcrow  * developers in the community can easily implement this feature.
1693237fead6SMichael Halcrow  *
1694237fead6SMichael Halcrow  * Returns the length of decoded filename; negative if error
1695237fead6SMichael Halcrow  */
1696237fead6SMichael Halcrow int
1697237fead6SMichael Halcrow ecryptfs_decode_filename(struct ecryptfs_crypt_stat *crypt_stat,
1698237fead6SMichael Halcrow 			 const char *name, int length, char **decrypted_name)
1699237fead6SMichael Halcrow {
1700237fead6SMichael Halcrow 	int error = 0;
1701237fead6SMichael Halcrow 
1702237fead6SMichael Halcrow 	(*decrypted_name) = kmalloc(length + 2, GFP_KERNEL);
1703237fead6SMichael Halcrow 	if (!(*decrypted_name)) {
1704237fead6SMichael Halcrow 		error = -ENOMEM;
1705237fead6SMichael Halcrow 		goto out;
1706237fead6SMichael Halcrow 	}
1707237fead6SMichael Halcrow 	/* TODO: Filename encryption is a scheduled feature for a
1708237fead6SMichael Halcrow 	 * future version of eCryptfs. This function is here only for
1709237fead6SMichael Halcrow 	 * the purpose of providing a framework for other developers
1710237fead6SMichael Halcrow 	 * to easily implement filename encryption. Hint: Replace this
1711237fead6SMichael Halcrow 	 * memcpy() with a call to decode and decrypt the
1712237fead6SMichael Halcrow 	 * filename, the set the length accordingly. */
1713237fead6SMichael Halcrow 	memcpy((void *)(*decrypted_name), (void *)name, length);
1714237fead6SMichael Halcrow 	(*decrypted_name)[length + 1] = '\0';	/* Only for convenience
1715237fead6SMichael Halcrow 						 * in printing out the
1716237fead6SMichael Halcrow 						 * string in debug
1717237fead6SMichael Halcrow 						 * messages */
1718237fead6SMichael Halcrow 	error = length;
1719237fead6SMichael Halcrow out:
1720237fead6SMichael Halcrow 	return error;
1721237fead6SMichael Halcrow }
1722237fead6SMichael Halcrow 
1723237fead6SMichael Halcrow /**
1724*51ca58dcSMichael Halcrow  * ecryptfs_encrypt_filename - encrypt filename
1725*51ca58dcSMichael Halcrow  *
1726*51ca58dcSMichael Halcrow  * CBC-encrypts the filename. We do not want to encrypt the same
1727*51ca58dcSMichael Halcrow  * filename with the same key and IV, which may happen with hard
1728*51ca58dcSMichael Halcrow  * links, so we prepend random bits to each filename.
1729*51ca58dcSMichael Halcrow  *
1730*51ca58dcSMichael Halcrow  * Returns zero on success; non-zero otherwise
1731*51ca58dcSMichael Halcrow  */
1732*51ca58dcSMichael Halcrow static int
1733*51ca58dcSMichael Halcrow ecryptfs_encrypt_filename(struct ecryptfs_filename *filename,
1734*51ca58dcSMichael Halcrow 			  struct ecryptfs_crypt_stat *crypt_stat,
1735*51ca58dcSMichael Halcrow 			  struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
1736*51ca58dcSMichael Halcrow {
1737*51ca58dcSMichael Halcrow 	int rc = 0;
1738*51ca58dcSMichael Halcrow 
1739*51ca58dcSMichael Halcrow 	filename->encrypted_filename = NULL;
1740*51ca58dcSMichael Halcrow 	filename->encrypted_filename_size = 0;
1741*51ca58dcSMichael Halcrow 	if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
1742*51ca58dcSMichael Halcrow 	    || (mount_crypt_stat && (mount_crypt_stat->flags
1743*51ca58dcSMichael Halcrow 				     & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
1744*51ca58dcSMichael Halcrow 		size_t packet_size;
1745*51ca58dcSMichael Halcrow 		size_t remaining_bytes;
1746*51ca58dcSMichael Halcrow 
1747*51ca58dcSMichael Halcrow 		rc = ecryptfs_write_tag_70_packet(
1748*51ca58dcSMichael Halcrow 			NULL, NULL,
1749*51ca58dcSMichael Halcrow 			&filename->encrypted_filename_size,
1750*51ca58dcSMichael Halcrow 			mount_crypt_stat, NULL,
1751*51ca58dcSMichael Halcrow 			filename->filename_size);
1752*51ca58dcSMichael Halcrow 		if (rc) {
1753*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to get packet "
1754*51ca58dcSMichael Halcrow 			       "size for tag 72; rc = [%d]\n", __func__,
1755*51ca58dcSMichael Halcrow 			       rc);
1756*51ca58dcSMichael Halcrow 			filename->encrypted_filename_size = 0;
1757*51ca58dcSMichael Halcrow 			goto out;
1758*51ca58dcSMichael Halcrow 		}
1759*51ca58dcSMichael Halcrow 		filename->encrypted_filename =
1760*51ca58dcSMichael Halcrow 			kmalloc(filename->encrypted_filename_size, GFP_KERNEL);
1761*51ca58dcSMichael Halcrow 		if (!filename->encrypted_filename) {
1762*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Out of memory whilst attempting "
1763*51ca58dcSMichael Halcrow 			       "to kmalloc [%Zd] bytes\n", __func__,
1764*51ca58dcSMichael Halcrow 			       filename->encrypted_filename_size);
1765*51ca58dcSMichael Halcrow 			rc = -ENOMEM;
1766*51ca58dcSMichael Halcrow 			goto out;
1767*51ca58dcSMichael Halcrow 		}
1768*51ca58dcSMichael Halcrow 		remaining_bytes = filename->encrypted_filename_size;
1769*51ca58dcSMichael Halcrow 		rc = ecryptfs_write_tag_70_packet(filename->encrypted_filename,
1770*51ca58dcSMichael Halcrow 						  &remaining_bytes,
1771*51ca58dcSMichael Halcrow 						  &packet_size,
1772*51ca58dcSMichael Halcrow 						  mount_crypt_stat,
1773*51ca58dcSMichael Halcrow 						  filename->filename,
1774*51ca58dcSMichael Halcrow 						  filename->filename_size);
1775*51ca58dcSMichael Halcrow 		if (rc) {
1776*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to generate "
1777*51ca58dcSMichael Halcrow 			       "tag 70 packet; rc = [%d]\n", __func__,
1778*51ca58dcSMichael Halcrow 			       rc);
1779*51ca58dcSMichael Halcrow 			kfree(filename->encrypted_filename);
1780*51ca58dcSMichael Halcrow 			filename->encrypted_filename = NULL;
1781*51ca58dcSMichael Halcrow 			filename->encrypted_filename_size = 0;
1782*51ca58dcSMichael Halcrow 			goto out;
1783*51ca58dcSMichael Halcrow 		}
1784*51ca58dcSMichael Halcrow 		filename->encrypted_filename_size = packet_size;
1785*51ca58dcSMichael Halcrow 	} else {
1786*51ca58dcSMichael Halcrow 		printk(KERN_ERR "%s: No support for requested filename "
1787*51ca58dcSMichael Halcrow 		       "encryption method in this release\n", __func__);
1788*51ca58dcSMichael Halcrow 		rc = -ENOTSUPP;
1789*51ca58dcSMichael Halcrow 		goto out;
1790*51ca58dcSMichael Halcrow 	}
1791*51ca58dcSMichael Halcrow out:
1792*51ca58dcSMichael Halcrow 	return rc;
1793*51ca58dcSMichael Halcrow }
1794*51ca58dcSMichael Halcrow 
1795*51ca58dcSMichael Halcrow static int ecryptfs_copy_filename(char **copied_name, size_t *copied_name_size,
1796*51ca58dcSMichael Halcrow 				  const char *name, size_t name_size)
1797*51ca58dcSMichael Halcrow {
1798*51ca58dcSMichael Halcrow 	int rc = 0;
1799*51ca58dcSMichael Halcrow 
1800*51ca58dcSMichael Halcrow 	(*copied_name) = kmalloc((name_size + 2), GFP_KERNEL);
1801*51ca58dcSMichael Halcrow 	if (!(*copied_name)) {
1802*51ca58dcSMichael Halcrow 		rc = -ENOMEM;
1803*51ca58dcSMichael Halcrow 		goto out;
1804*51ca58dcSMichael Halcrow 	}
1805*51ca58dcSMichael Halcrow 	memcpy((void *)(*copied_name), (void *)name, name_size);
1806*51ca58dcSMichael Halcrow 	(*copied_name)[(name_size)] = '\0';	/* Only for convenience
1807*51ca58dcSMichael Halcrow 						 * in printing out the
1808*51ca58dcSMichael Halcrow 						 * string in debug
1809*51ca58dcSMichael Halcrow 						 * messages */
1810*51ca58dcSMichael Halcrow 	(*copied_name_size) = (name_size + 1);
1811*51ca58dcSMichael Halcrow out:
1812*51ca58dcSMichael Halcrow 	return rc;
1813*51ca58dcSMichael Halcrow }
1814*51ca58dcSMichael Halcrow 
1815*51ca58dcSMichael Halcrow /**
1816f4aad16aSMichael Halcrow  * ecryptfs_process_key_cipher - Perform key cipher initialization.
1817237fead6SMichael Halcrow  * @key_tfm: Crypto context for key material, set by this function
1818e5d9cbdeSMichael Halcrow  * @cipher_name: Name of the cipher
1819e5d9cbdeSMichael Halcrow  * @key_size: Size of the key in bytes
1820237fead6SMichael Halcrow  *
1821237fead6SMichael Halcrow  * Returns zero on success. Any crypto_tfm structs allocated here
1822237fead6SMichael Halcrow  * should be released by other functions, such as on a superblock put
1823237fead6SMichael Halcrow  * event, regardless of whether this function succeeds for fails.
1824237fead6SMichael Halcrow  */
1825cd9d67dfSMichael Halcrow static int
1826f4aad16aSMichael Halcrow ecryptfs_process_key_cipher(struct crypto_blkcipher **key_tfm,
1827f4aad16aSMichael Halcrow 			    char *cipher_name, size_t *key_size)
1828237fead6SMichael Halcrow {
1829237fead6SMichael Halcrow 	char dummy_key[ECRYPTFS_MAX_KEY_BYTES];
18308bba066fSMichael Halcrow 	char *full_alg_name;
1831237fead6SMichael Halcrow 	int rc;
1832237fead6SMichael Halcrow 
1833e5d9cbdeSMichael Halcrow 	*key_tfm = NULL;
1834e5d9cbdeSMichael Halcrow 	if (*key_size > ECRYPTFS_MAX_KEY_BYTES) {
1835237fead6SMichael Halcrow 		rc = -EINVAL;
1836237fead6SMichael Halcrow 		printk(KERN_ERR "Requested key size is [%Zd] bytes; maximum "
1837e5d9cbdeSMichael Halcrow 		      "allowable is [%d]\n", *key_size, ECRYPTFS_MAX_KEY_BYTES);
1838237fead6SMichael Halcrow 		goto out;
1839237fead6SMichael Halcrow 	}
18408bba066fSMichael Halcrow 	rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name, cipher_name,
18418bba066fSMichael Halcrow 						    "ecb");
18428bba066fSMichael Halcrow 	if (rc)
18438bba066fSMichael Halcrow 		goto out;
18448bba066fSMichael Halcrow 	*key_tfm = crypto_alloc_blkcipher(full_alg_name, 0, CRYPTO_ALG_ASYNC);
18458bba066fSMichael Halcrow 	kfree(full_alg_name);
18468bba066fSMichael Halcrow 	if (IS_ERR(*key_tfm)) {
18478bba066fSMichael Halcrow 		rc = PTR_ERR(*key_tfm);
1848237fead6SMichael Halcrow 		printk(KERN_ERR "Unable to allocate crypto cipher with name "
18498bba066fSMichael Halcrow 		       "[%s]; rc = [%d]\n", cipher_name, rc);
1850237fead6SMichael Halcrow 		goto out;
1851237fead6SMichael Halcrow 	}
18528bba066fSMichael Halcrow 	crypto_blkcipher_set_flags(*key_tfm, CRYPTO_TFM_REQ_WEAK_KEY);
18538bba066fSMichael Halcrow 	if (*key_size == 0) {
18548bba066fSMichael Halcrow 		struct blkcipher_alg *alg = crypto_blkcipher_alg(*key_tfm);
18558bba066fSMichael Halcrow 
18568bba066fSMichael Halcrow 		*key_size = alg->max_keysize;
18578bba066fSMichael Halcrow 	}
1858e5d9cbdeSMichael Halcrow 	get_random_bytes(dummy_key, *key_size);
18598bba066fSMichael Halcrow 	rc = crypto_blkcipher_setkey(*key_tfm, dummy_key, *key_size);
1860237fead6SMichael Halcrow 	if (rc) {
1861237fead6SMichael Halcrow 		printk(KERN_ERR "Error attempting to set key of size [%Zd] for "
1862e5d9cbdeSMichael Halcrow 		       "cipher [%s]; rc = [%d]\n", *key_size, cipher_name, rc);
1863237fead6SMichael Halcrow 		rc = -EINVAL;
1864237fead6SMichael Halcrow 		goto out;
1865237fead6SMichael Halcrow 	}
1866237fead6SMichael Halcrow out:
1867237fead6SMichael Halcrow 	return rc;
1868237fead6SMichael Halcrow }
1869f4aad16aSMichael Halcrow 
1870f4aad16aSMichael Halcrow struct kmem_cache *ecryptfs_key_tfm_cache;
18717896b631SAdrian Bunk static struct list_head key_tfm_list;
1872af440f52SEric Sandeen struct mutex key_tfm_list_mutex;
1873f4aad16aSMichael Halcrow 
1874f4aad16aSMichael Halcrow int ecryptfs_init_crypto(void)
1875f4aad16aSMichael Halcrow {
1876f4aad16aSMichael Halcrow 	mutex_init(&key_tfm_list_mutex);
1877f4aad16aSMichael Halcrow 	INIT_LIST_HEAD(&key_tfm_list);
1878f4aad16aSMichael Halcrow 	return 0;
1879f4aad16aSMichael Halcrow }
1880f4aad16aSMichael Halcrow 
1881af440f52SEric Sandeen /**
1882af440f52SEric Sandeen  * ecryptfs_destroy_crypto - free all cached key_tfms on key_tfm_list
1883af440f52SEric Sandeen  *
1884af440f52SEric Sandeen  * Called only at module unload time
1885af440f52SEric Sandeen  */
1886fcd12835SMichael Halcrow int ecryptfs_destroy_crypto(void)
1887f4aad16aSMichael Halcrow {
1888f4aad16aSMichael Halcrow 	struct ecryptfs_key_tfm *key_tfm, *key_tfm_tmp;
1889f4aad16aSMichael Halcrow 
1890f4aad16aSMichael Halcrow 	mutex_lock(&key_tfm_list_mutex);
1891f4aad16aSMichael Halcrow 	list_for_each_entry_safe(key_tfm, key_tfm_tmp, &key_tfm_list,
1892f4aad16aSMichael Halcrow 				 key_tfm_list) {
1893f4aad16aSMichael Halcrow 		list_del(&key_tfm->key_tfm_list);
1894f4aad16aSMichael Halcrow 		if (key_tfm->key_tfm)
1895f4aad16aSMichael Halcrow 			crypto_free_blkcipher(key_tfm->key_tfm);
1896f4aad16aSMichael Halcrow 		kmem_cache_free(ecryptfs_key_tfm_cache, key_tfm);
1897f4aad16aSMichael Halcrow 	}
1898f4aad16aSMichael Halcrow 	mutex_unlock(&key_tfm_list_mutex);
1899f4aad16aSMichael Halcrow 	return 0;
1900f4aad16aSMichael Halcrow }
1901f4aad16aSMichael Halcrow 
1902f4aad16aSMichael Halcrow int
1903f4aad16aSMichael Halcrow ecryptfs_add_new_key_tfm(struct ecryptfs_key_tfm **key_tfm, char *cipher_name,
1904f4aad16aSMichael Halcrow 			 size_t key_size)
1905f4aad16aSMichael Halcrow {
1906f4aad16aSMichael Halcrow 	struct ecryptfs_key_tfm *tmp_tfm;
1907f4aad16aSMichael Halcrow 	int rc = 0;
1908f4aad16aSMichael Halcrow 
1909af440f52SEric Sandeen 	BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1910af440f52SEric Sandeen 
1911f4aad16aSMichael Halcrow 	tmp_tfm = kmem_cache_alloc(ecryptfs_key_tfm_cache, GFP_KERNEL);
1912f4aad16aSMichael Halcrow 	if (key_tfm != NULL)
1913f4aad16aSMichael Halcrow 		(*key_tfm) = tmp_tfm;
1914f4aad16aSMichael Halcrow 	if (!tmp_tfm) {
1915f4aad16aSMichael Halcrow 		rc = -ENOMEM;
1916f4aad16aSMichael Halcrow 		printk(KERN_ERR "Error attempting to allocate from "
1917f4aad16aSMichael Halcrow 		       "ecryptfs_key_tfm_cache\n");
1918f4aad16aSMichael Halcrow 		goto out;
1919f4aad16aSMichael Halcrow 	}
1920f4aad16aSMichael Halcrow 	mutex_init(&tmp_tfm->key_tfm_mutex);
1921f4aad16aSMichael Halcrow 	strncpy(tmp_tfm->cipher_name, cipher_name,
1922f4aad16aSMichael Halcrow 		ECRYPTFS_MAX_CIPHER_NAME_SIZE);
1923b8862906SEric Sandeen 	tmp_tfm->cipher_name[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
1924f4aad16aSMichael Halcrow 	tmp_tfm->key_size = key_size;
19255dda6992SMichael Halcrow 	rc = ecryptfs_process_key_cipher(&tmp_tfm->key_tfm,
1926f4aad16aSMichael Halcrow 					 tmp_tfm->cipher_name,
19275dda6992SMichael Halcrow 					 &tmp_tfm->key_size);
19285dda6992SMichael Halcrow 	if (rc) {
1929f4aad16aSMichael Halcrow 		printk(KERN_ERR "Error attempting to initialize key TFM "
1930f4aad16aSMichael Halcrow 		       "cipher with name = [%s]; rc = [%d]\n",
1931f4aad16aSMichael Halcrow 		       tmp_tfm->cipher_name, rc);
1932f4aad16aSMichael Halcrow 		kmem_cache_free(ecryptfs_key_tfm_cache, tmp_tfm);
1933f4aad16aSMichael Halcrow 		if (key_tfm != NULL)
1934f4aad16aSMichael Halcrow 			(*key_tfm) = NULL;
1935f4aad16aSMichael Halcrow 		goto out;
1936f4aad16aSMichael Halcrow 	}
1937f4aad16aSMichael Halcrow 	list_add(&tmp_tfm->key_tfm_list, &key_tfm_list);
1938f4aad16aSMichael Halcrow out:
1939f4aad16aSMichael Halcrow 	return rc;
1940f4aad16aSMichael Halcrow }
1941f4aad16aSMichael Halcrow 
1942af440f52SEric Sandeen /**
1943af440f52SEric Sandeen  * ecryptfs_tfm_exists - Search for existing tfm for cipher_name.
1944af440f52SEric Sandeen  * @cipher_name: the name of the cipher to search for
1945af440f52SEric Sandeen  * @key_tfm: set to corresponding tfm if found
1946af440f52SEric Sandeen  *
1947af440f52SEric Sandeen  * Searches for cached key_tfm matching @cipher_name
1948af440f52SEric Sandeen  * Must be called with &key_tfm_list_mutex held
1949af440f52SEric Sandeen  * Returns 1 if found, with @key_tfm set
1950af440f52SEric Sandeen  * Returns 0 if not found, with @key_tfm set to NULL
1951af440f52SEric Sandeen  */
1952af440f52SEric Sandeen int ecryptfs_tfm_exists(char *cipher_name, struct ecryptfs_key_tfm **key_tfm)
1953af440f52SEric Sandeen {
1954af440f52SEric Sandeen 	struct ecryptfs_key_tfm *tmp_key_tfm;
1955af440f52SEric Sandeen 
1956af440f52SEric Sandeen 	BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1957af440f52SEric Sandeen 
1958af440f52SEric Sandeen 	list_for_each_entry(tmp_key_tfm, &key_tfm_list, key_tfm_list) {
1959af440f52SEric Sandeen 		if (strcmp(tmp_key_tfm->cipher_name, cipher_name) == 0) {
1960af440f52SEric Sandeen 			if (key_tfm)
1961af440f52SEric Sandeen 				(*key_tfm) = tmp_key_tfm;
1962af440f52SEric Sandeen 			return 1;
1963af440f52SEric Sandeen 		}
1964af440f52SEric Sandeen 	}
1965af440f52SEric Sandeen 	if (key_tfm)
1966af440f52SEric Sandeen 		(*key_tfm) = NULL;
1967af440f52SEric Sandeen 	return 0;
1968af440f52SEric Sandeen }
1969af440f52SEric Sandeen 
1970af440f52SEric Sandeen /**
1971af440f52SEric Sandeen  * ecryptfs_get_tfm_and_mutex_for_cipher_name
1972af440f52SEric Sandeen  *
1973af440f52SEric Sandeen  * @tfm: set to cached tfm found, or new tfm created
1974af440f52SEric Sandeen  * @tfm_mutex: set to mutex for cached tfm found, or new tfm created
1975af440f52SEric Sandeen  * @cipher_name: the name of the cipher to search for and/or add
1976af440f52SEric Sandeen  *
1977af440f52SEric Sandeen  * Sets pointers to @tfm & @tfm_mutex matching @cipher_name.
1978af440f52SEric Sandeen  * Searches for cached item first, and creates new if not found.
1979af440f52SEric Sandeen  * Returns 0 on success, non-zero if adding new cipher failed
1980af440f52SEric Sandeen  */
1981f4aad16aSMichael Halcrow int ecryptfs_get_tfm_and_mutex_for_cipher_name(struct crypto_blkcipher **tfm,
1982f4aad16aSMichael Halcrow 					       struct mutex **tfm_mutex,
1983f4aad16aSMichael Halcrow 					       char *cipher_name)
1984f4aad16aSMichael Halcrow {
1985f4aad16aSMichael Halcrow 	struct ecryptfs_key_tfm *key_tfm;
1986f4aad16aSMichael Halcrow 	int rc = 0;
1987f4aad16aSMichael Halcrow 
1988f4aad16aSMichael Halcrow 	(*tfm) = NULL;
1989f4aad16aSMichael Halcrow 	(*tfm_mutex) = NULL;
1990af440f52SEric Sandeen 
1991f4aad16aSMichael Halcrow 	mutex_lock(&key_tfm_list_mutex);
1992af440f52SEric Sandeen 	if (!ecryptfs_tfm_exists(cipher_name, &key_tfm)) {
19935dda6992SMichael Halcrow 		rc = ecryptfs_add_new_key_tfm(&key_tfm, cipher_name, 0);
19945dda6992SMichael Halcrow 		if (rc) {
1995af440f52SEric Sandeen 			printk(KERN_ERR "Error adding new key_tfm to list; "
1996af440f52SEric Sandeen 					"rc = [%d]\n", rc);
1997f4aad16aSMichael Halcrow 			goto out;
1998f4aad16aSMichael Halcrow 		}
1999af440f52SEric Sandeen 	}
2000f4aad16aSMichael Halcrow 	(*tfm) = key_tfm->key_tfm;
2001f4aad16aSMichael Halcrow 	(*tfm_mutex) = &key_tfm->key_tfm_mutex;
2002f4aad16aSMichael Halcrow out:
200371fd5179SCyrill Gorcunov 	mutex_unlock(&key_tfm_list_mutex);
2004f4aad16aSMichael Halcrow 	return rc;
2005f4aad16aSMichael Halcrow }
2006*51ca58dcSMichael Halcrow 
2007*51ca58dcSMichael Halcrow /* 64 characters forming a 6-bit target field */
2008*51ca58dcSMichael Halcrow static unsigned char *portable_filename_chars = ("-.0123456789ABCD"
2009*51ca58dcSMichael Halcrow 						 "EFGHIJKLMNOPQRST"
2010*51ca58dcSMichael Halcrow 						 "UVWXYZabcdefghij"
2011*51ca58dcSMichael Halcrow 						 "klmnopqrstuvwxyz");
2012*51ca58dcSMichael Halcrow 
2013*51ca58dcSMichael Halcrow /* We could either offset on every reverse map or just pad some 0x00's
2014*51ca58dcSMichael Halcrow  * at the front here */
2015*51ca58dcSMichael Halcrow static unsigned char filename_rev_map[] = {
2016*51ca58dcSMichael Halcrow 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 7 */
2017*51ca58dcSMichael Halcrow 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 15 */
2018*51ca58dcSMichael Halcrow 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 23 */
2019*51ca58dcSMichael Halcrow 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 31 */
2020*51ca58dcSMichael Halcrow 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 39 */
2021*51ca58dcSMichael Halcrow 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, /* 47 */
2022*51ca58dcSMichael Halcrow 	0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, /* 55 */
2023*51ca58dcSMichael Halcrow 	0x0A, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 63 */
2024*51ca58dcSMichael Halcrow 	0x00, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, /* 71 */
2025*51ca58dcSMichael Halcrow 	0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, /* 79 */
2026*51ca58dcSMichael Halcrow 	0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, /* 87 */
2027*51ca58dcSMichael Halcrow 	0x23, 0x24, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, /* 95 */
2028*51ca58dcSMichael Halcrow 	0x00, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, /* 103 */
2029*51ca58dcSMichael Halcrow 	0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, /* 111 */
2030*51ca58dcSMichael Halcrow 	0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, /* 119 */
2031*51ca58dcSMichael Halcrow 	0x3D, 0x3E, 0x3F
2032*51ca58dcSMichael Halcrow };
2033*51ca58dcSMichael Halcrow 
2034*51ca58dcSMichael Halcrow /**
2035*51ca58dcSMichael Halcrow  * ecryptfs_encode_for_filename
2036*51ca58dcSMichael Halcrow  * @dst: Destination location for encoded filename
2037*51ca58dcSMichael Halcrow  * @dst_size: Size of the encoded filename in bytes
2038*51ca58dcSMichael Halcrow  * @src: Source location for the filename to encode
2039*51ca58dcSMichael Halcrow  * @src_size: Size of the source in bytes
2040*51ca58dcSMichael Halcrow  */
2041*51ca58dcSMichael Halcrow void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size,
2042*51ca58dcSMichael Halcrow 				  unsigned char *src, size_t src_size)
2043*51ca58dcSMichael Halcrow {
2044*51ca58dcSMichael Halcrow 	size_t num_blocks;
2045*51ca58dcSMichael Halcrow 	size_t block_num = 0;
2046*51ca58dcSMichael Halcrow 	size_t dst_offset = 0;
2047*51ca58dcSMichael Halcrow 	unsigned char last_block[3];
2048*51ca58dcSMichael Halcrow 
2049*51ca58dcSMichael Halcrow 	if (src_size == 0) {
2050*51ca58dcSMichael Halcrow 		(*dst_size) = 0;
2051*51ca58dcSMichael Halcrow 		goto out;
2052*51ca58dcSMichael Halcrow 	}
2053*51ca58dcSMichael Halcrow 	num_blocks = (src_size / 3);
2054*51ca58dcSMichael Halcrow 	if ((src_size % 3) == 0) {
2055*51ca58dcSMichael Halcrow 		memcpy(last_block, (&src[src_size - 3]), 3);
2056*51ca58dcSMichael Halcrow 	} else {
2057*51ca58dcSMichael Halcrow 		num_blocks++;
2058*51ca58dcSMichael Halcrow 		last_block[2] = 0x00;
2059*51ca58dcSMichael Halcrow 		switch (src_size % 3) {
2060*51ca58dcSMichael Halcrow 		case 1:
2061*51ca58dcSMichael Halcrow 			last_block[0] = src[src_size - 1];
2062*51ca58dcSMichael Halcrow 			last_block[1] = 0x00;
2063*51ca58dcSMichael Halcrow 			break;
2064*51ca58dcSMichael Halcrow 		case 2:
2065*51ca58dcSMichael Halcrow 			last_block[0] = src[src_size - 2];
2066*51ca58dcSMichael Halcrow 			last_block[1] = src[src_size - 1];
2067*51ca58dcSMichael Halcrow 		}
2068*51ca58dcSMichael Halcrow 	}
2069*51ca58dcSMichael Halcrow 	(*dst_size) = (num_blocks * 4);
2070*51ca58dcSMichael Halcrow 	if (!dst)
2071*51ca58dcSMichael Halcrow 		goto out;
2072*51ca58dcSMichael Halcrow 	while (block_num < num_blocks) {
2073*51ca58dcSMichael Halcrow 		unsigned char *src_block;
2074*51ca58dcSMichael Halcrow 		unsigned char dst_block[4];
2075*51ca58dcSMichael Halcrow 
2076*51ca58dcSMichael Halcrow 		if (block_num == (num_blocks - 1))
2077*51ca58dcSMichael Halcrow 			src_block = last_block;
2078*51ca58dcSMichael Halcrow 		else
2079*51ca58dcSMichael Halcrow 			src_block = &src[block_num * 3];
2080*51ca58dcSMichael Halcrow 		dst_block[0] = ((src_block[0] >> 2) & 0x3F);
2081*51ca58dcSMichael Halcrow 		dst_block[1] = (((src_block[0] << 4) & 0x30)
2082*51ca58dcSMichael Halcrow 				| ((src_block[1] >> 4) & 0x0F));
2083*51ca58dcSMichael Halcrow 		dst_block[2] = (((src_block[1] << 2) & 0x3C)
2084*51ca58dcSMichael Halcrow 				| ((src_block[2] >> 6) & 0x03));
2085*51ca58dcSMichael Halcrow 		dst_block[3] = (src_block[2] & 0x3F);
2086*51ca58dcSMichael Halcrow 		dst[dst_offset++] = portable_filename_chars[dst_block[0]];
2087*51ca58dcSMichael Halcrow 		dst[dst_offset++] = portable_filename_chars[dst_block[1]];
2088*51ca58dcSMichael Halcrow 		dst[dst_offset++] = portable_filename_chars[dst_block[2]];
2089*51ca58dcSMichael Halcrow 		dst[dst_offset++] = portable_filename_chars[dst_block[3]];
2090*51ca58dcSMichael Halcrow 		block_num++;
2091*51ca58dcSMichael Halcrow 	}
2092*51ca58dcSMichael Halcrow out:
2093*51ca58dcSMichael Halcrow 	return;
2094*51ca58dcSMichael Halcrow }
2095*51ca58dcSMichael Halcrow 
2096*51ca58dcSMichael Halcrow int ecryptfs_decode_from_filename(unsigned char *dst, size_t *dst_size,
2097*51ca58dcSMichael Halcrow 				  const unsigned char *src, size_t src_size)
2098*51ca58dcSMichael Halcrow {
2099*51ca58dcSMichael Halcrow 	u8 current_bit_offset = 0;
2100*51ca58dcSMichael Halcrow 	size_t src_byte_offset = 0;
2101*51ca58dcSMichael Halcrow 	size_t dst_byte_offset = 0;
2102*51ca58dcSMichael Halcrow 	int rc = 0;
2103*51ca58dcSMichael Halcrow 
2104*51ca58dcSMichael Halcrow 	if (dst == NULL) {
2105*51ca58dcSMichael Halcrow 		/* Not exact; conservatively long */
2106*51ca58dcSMichael Halcrow 		(*dst_size) = (((src_size + 1) * 3) / 4);
2107*51ca58dcSMichael Halcrow 		goto out;
2108*51ca58dcSMichael Halcrow 	}
2109*51ca58dcSMichael Halcrow 	while (src_byte_offset < src_size) {
2110*51ca58dcSMichael Halcrow 		unsigned char src_byte =
2111*51ca58dcSMichael Halcrow 				filename_rev_map[(int)src[src_byte_offset]];
2112*51ca58dcSMichael Halcrow 
2113*51ca58dcSMichael Halcrow 		switch (current_bit_offset) {
2114*51ca58dcSMichael Halcrow 		case 0:
2115*51ca58dcSMichael Halcrow 			dst[dst_byte_offset] = (src_byte << 2);
2116*51ca58dcSMichael Halcrow 			current_bit_offset = 6;
2117*51ca58dcSMichael Halcrow 			break;
2118*51ca58dcSMichael Halcrow 		case 6:
2119*51ca58dcSMichael Halcrow 			dst[dst_byte_offset++] |= (src_byte >> 4);
2120*51ca58dcSMichael Halcrow 			dst[dst_byte_offset] = ((src_byte & 0xF)
2121*51ca58dcSMichael Halcrow 						 << 4);
2122*51ca58dcSMichael Halcrow 			current_bit_offset = 4;
2123*51ca58dcSMichael Halcrow 			break;
2124*51ca58dcSMichael Halcrow 		case 4:
2125*51ca58dcSMichael Halcrow 			dst[dst_byte_offset++] |= (src_byte >> 2);
2126*51ca58dcSMichael Halcrow 			dst[dst_byte_offset] = (src_byte << 6);
2127*51ca58dcSMichael Halcrow 			current_bit_offset = 2;
2128*51ca58dcSMichael Halcrow 			break;
2129*51ca58dcSMichael Halcrow 		case 2:
2130*51ca58dcSMichael Halcrow 			dst[dst_byte_offset++] |= (src_byte);
2131*51ca58dcSMichael Halcrow 			dst[dst_byte_offset] = 0;
2132*51ca58dcSMichael Halcrow 			current_bit_offset = 0;
2133*51ca58dcSMichael Halcrow 			break;
2134*51ca58dcSMichael Halcrow 		}
2135*51ca58dcSMichael Halcrow 		src_byte_offset++;
2136*51ca58dcSMichael Halcrow 	}
2137*51ca58dcSMichael Halcrow 	(*dst_size) = dst_byte_offset;
2138*51ca58dcSMichael Halcrow out:
2139*51ca58dcSMichael Halcrow 	return rc;
2140*51ca58dcSMichael Halcrow }
2141*51ca58dcSMichael Halcrow 
2142*51ca58dcSMichael Halcrow /**
2143*51ca58dcSMichael Halcrow  * ecryptfs_encrypt_and_encode_filename - converts a plaintext file name to cipher text
2144*51ca58dcSMichael Halcrow  * @crypt_stat: The crypt_stat struct associated with the file anem to encode
2145*51ca58dcSMichael Halcrow  * @name: The plaintext name
2146*51ca58dcSMichael Halcrow  * @length: The length of the plaintext
2147*51ca58dcSMichael Halcrow  * @encoded_name: The encypted name
2148*51ca58dcSMichael Halcrow  *
2149*51ca58dcSMichael Halcrow  * Encrypts and encodes a filename into something that constitutes a
2150*51ca58dcSMichael Halcrow  * valid filename for a filesystem, with printable characters.
2151*51ca58dcSMichael Halcrow  *
2152*51ca58dcSMichael Halcrow  * We assume that we have a properly initialized crypto context,
2153*51ca58dcSMichael Halcrow  * pointed to by crypt_stat->tfm.
2154*51ca58dcSMichael Halcrow  *
2155*51ca58dcSMichael Halcrow  * Returns zero on success; non-zero on otherwise
2156*51ca58dcSMichael Halcrow  */
2157*51ca58dcSMichael Halcrow int ecryptfs_encrypt_and_encode_filename(
2158*51ca58dcSMichael Halcrow 	char **encoded_name,
2159*51ca58dcSMichael Halcrow 	size_t *encoded_name_size,
2160*51ca58dcSMichael Halcrow 	struct ecryptfs_crypt_stat *crypt_stat,
2161*51ca58dcSMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
2162*51ca58dcSMichael Halcrow 	const char *name, size_t name_size)
2163*51ca58dcSMichael Halcrow {
2164*51ca58dcSMichael Halcrow 	size_t encoded_name_no_prefix_size;
2165*51ca58dcSMichael Halcrow 	int rc = 0;
2166*51ca58dcSMichael Halcrow 
2167*51ca58dcSMichael Halcrow 	(*encoded_name) = NULL;
2168*51ca58dcSMichael Halcrow 	(*encoded_name_size) = 0;
2169*51ca58dcSMichael Halcrow 	if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCRYPT_FILENAMES))
2170*51ca58dcSMichael Halcrow 	    || (mount_crypt_stat && (mount_crypt_stat->flags
2171*51ca58dcSMichael Halcrow 				     & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES))) {
2172*51ca58dcSMichael Halcrow 		struct ecryptfs_filename *filename;
2173*51ca58dcSMichael Halcrow 
2174*51ca58dcSMichael Halcrow 		filename = kzalloc(sizeof(*filename), GFP_KERNEL);
2175*51ca58dcSMichael Halcrow 		if (!filename) {
2176*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Out of memory whilst attempting "
2177*51ca58dcSMichael Halcrow 			       "to kzalloc [%d] bytes\n", __func__,
2178*51ca58dcSMichael Halcrow 			       sizeof(*filename));
2179*51ca58dcSMichael Halcrow 			rc = -ENOMEM;
2180*51ca58dcSMichael Halcrow 			goto out;
2181*51ca58dcSMichael Halcrow 		}
2182*51ca58dcSMichael Halcrow 		filename->filename = (char *)name;
2183*51ca58dcSMichael Halcrow 		filename->filename_size = name_size;
2184*51ca58dcSMichael Halcrow 		rc = ecryptfs_encrypt_filename(filename, crypt_stat,
2185*51ca58dcSMichael Halcrow 					       mount_crypt_stat);
2186*51ca58dcSMichael Halcrow 		if (rc) {
2187*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to encrypt "
2188*51ca58dcSMichael Halcrow 			       "filename; rc = [%d]\n", __func__, rc);
2189*51ca58dcSMichael Halcrow 			kfree(filename);
2190*51ca58dcSMichael Halcrow 			goto out;
2191*51ca58dcSMichael Halcrow 		}
2192*51ca58dcSMichael Halcrow 		ecryptfs_encode_for_filename(
2193*51ca58dcSMichael Halcrow 			NULL, &encoded_name_no_prefix_size,
2194*51ca58dcSMichael Halcrow 			filename->encrypted_filename,
2195*51ca58dcSMichael Halcrow 			filename->encrypted_filename_size);
2196*51ca58dcSMichael Halcrow 		if ((crypt_stat && (crypt_stat->flags
2197*51ca58dcSMichael Halcrow 				    & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2198*51ca58dcSMichael Halcrow 		    || (mount_crypt_stat
2199*51ca58dcSMichael Halcrow 			&& (mount_crypt_stat->flags
2200*51ca58dcSMichael Halcrow 			    & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)))
2201*51ca58dcSMichael Halcrow 			(*encoded_name_size) =
2202*51ca58dcSMichael Halcrow 				(ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2203*51ca58dcSMichael Halcrow 				 + encoded_name_no_prefix_size);
2204*51ca58dcSMichael Halcrow 		else
2205*51ca58dcSMichael Halcrow 			(*encoded_name_size) =
2206*51ca58dcSMichael Halcrow 				(ECRYPTFS_FEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2207*51ca58dcSMichael Halcrow 				 + encoded_name_no_prefix_size);
2208*51ca58dcSMichael Halcrow 		(*encoded_name) = kmalloc((*encoded_name_size) + 1, GFP_KERNEL);
2209*51ca58dcSMichael Halcrow 		if (!(*encoded_name)) {
2210*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Out of memory whilst attempting "
2211*51ca58dcSMichael Halcrow 			       "to kzalloc [%d] bytes\n", __func__,
2212*51ca58dcSMichael Halcrow 			       (*encoded_name_size));
2213*51ca58dcSMichael Halcrow 			rc = -ENOMEM;
2214*51ca58dcSMichael Halcrow 			kfree(filename->encrypted_filename);
2215*51ca58dcSMichael Halcrow 			kfree(filename);
2216*51ca58dcSMichael Halcrow 			goto out;
2217*51ca58dcSMichael Halcrow 		}
2218*51ca58dcSMichael Halcrow 		if ((crypt_stat && (crypt_stat->flags
2219*51ca58dcSMichael Halcrow 				    & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2220*51ca58dcSMichael Halcrow 		    || (mount_crypt_stat
2221*51ca58dcSMichael Halcrow 			&& (mount_crypt_stat->flags
2222*51ca58dcSMichael Halcrow 			    & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
2223*51ca58dcSMichael Halcrow 			memcpy((*encoded_name),
2224*51ca58dcSMichael Halcrow 			       ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2225*51ca58dcSMichael Halcrow 			       ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE);
2226*51ca58dcSMichael Halcrow 			ecryptfs_encode_for_filename(
2227*51ca58dcSMichael Halcrow 			    ((*encoded_name)
2228*51ca58dcSMichael Halcrow 			     + ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE),
2229*51ca58dcSMichael Halcrow 			    &encoded_name_no_prefix_size,
2230*51ca58dcSMichael Halcrow 			    filename->encrypted_filename,
2231*51ca58dcSMichael Halcrow 			    filename->encrypted_filename_size);
2232*51ca58dcSMichael Halcrow 			(*encoded_name_size) =
2233*51ca58dcSMichael Halcrow 				(ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2234*51ca58dcSMichael Halcrow 				 + encoded_name_no_prefix_size);
2235*51ca58dcSMichael Halcrow 			(*encoded_name)[(*encoded_name_size)] = '\0';
2236*51ca58dcSMichael Halcrow 			(*encoded_name_size)++;
2237*51ca58dcSMichael Halcrow 		} else {
2238*51ca58dcSMichael Halcrow 			rc = -ENOTSUPP;
2239*51ca58dcSMichael Halcrow 		}
2240*51ca58dcSMichael Halcrow 		if (rc) {
2241*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to encode "
2242*51ca58dcSMichael Halcrow 			       "encrypted filename; rc = [%d]\n", __func__,
2243*51ca58dcSMichael Halcrow 			       rc);
2244*51ca58dcSMichael Halcrow 			kfree((*encoded_name));
2245*51ca58dcSMichael Halcrow 			(*encoded_name) = NULL;
2246*51ca58dcSMichael Halcrow 			(*encoded_name_size) = 0;
2247*51ca58dcSMichael Halcrow 		}
2248*51ca58dcSMichael Halcrow 		kfree(filename->encrypted_filename);
2249*51ca58dcSMichael Halcrow 		kfree(filename);
2250*51ca58dcSMichael Halcrow 	} else {
2251*51ca58dcSMichael Halcrow 		rc = ecryptfs_copy_filename(encoded_name,
2252*51ca58dcSMichael Halcrow 					    encoded_name_size,
2253*51ca58dcSMichael Halcrow 					    name, name_size);
2254*51ca58dcSMichael Halcrow 	}
2255*51ca58dcSMichael Halcrow out:
2256*51ca58dcSMichael Halcrow 	return rc;
2257*51ca58dcSMichael Halcrow }
2258*51ca58dcSMichael Halcrow 
2259*51ca58dcSMichael Halcrow /**
2260*51ca58dcSMichael Halcrow  * ecryptfs_decode_and_decrypt_filename - converts the encoded cipher text name to decoded plaintext
2261*51ca58dcSMichael Halcrow  * @plaintext_name: The plaintext name
2262*51ca58dcSMichael Halcrow  * @plaintext_name_size: The plaintext name size
2263*51ca58dcSMichael Halcrow  * @ecryptfs_dir_dentry: eCryptfs directory dentry
2264*51ca58dcSMichael Halcrow  * @name: The filename in cipher text
2265*51ca58dcSMichael Halcrow  * @name_size: The cipher text name size
2266*51ca58dcSMichael Halcrow  *
2267*51ca58dcSMichael Halcrow  * Decrypts and decodes the filename.
2268*51ca58dcSMichael Halcrow  *
2269*51ca58dcSMichael Halcrow  * Returns zero on error; non-zero otherwise
2270*51ca58dcSMichael Halcrow  */
2271*51ca58dcSMichael Halcrow int ecryptfs_decode_and_decrypt_filename(char **plaintext_name,
2272*51ca58dcSMichael Halcrow 					 size_t *plaintext_name_size,
2273*51ca58dcSMichael Halcrow 					 struct dentry *ecryptfs_dir_dentry,
2274*51ca58dcSMichael Halcrow 					 const char *name, size_t name_size)
2275*51ca58dcSMichael Halcrow {
2276*51ca58dcSMichael Halcrow 	char *decoded_name;
2277*51ca58dcSMichael Halcrow 	size_t decoded_name_size;
2278*51ca58dcSMichael Halcrow 	size_t packet_size;
2279*51ca58dcSMichael Halcrow 	int rc = 0;
2280*51ca58dcSMichael Halcrow 
2281*51ca58dcSMichael Halcrow 	if ((name_size > ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE)
2282*51ca58dcSMichael Halcrow 	    && (strncmp(name, ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2283*51ca58dcSMichael Halcrow 			ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE) == 0)) {
2284*51ca58dcSMichael Halcrow 		struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
2285*51ca58dcSMichael Halcrow 			&ecryptfs_superblock_to_private(
2286*51ca58dcSMichael Halcrow 				ecryptfs_dir_dentry->d_sb)->mount_crypt_stat;
2287*51ca58dcSMichael Halcrow 		const char *orig_name = name;
2288*51ca58dcSMichael Halcrow 		size_t orig_name_size = name_size;
2289*51ca58dcSMichael Halcrow 
2290*51ca58dcSMichael Halcrow 		name += ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2291*51ca58dcSMichael Halcrow 		name_size -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2292*51ca58dcSMichael Halcrow 		rc = ecryptfs_decode_from_filename(NULL, &decoded_name_size,
2293*51ca58dcSMichael Halcrow 						   name, name_size);
2294*51ca58dcSMichael Halcrow 		if (rc) {
2295*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to decode "
2296*51ca58dcSMichael Halcrow 			       "filename; rc = [%d]\n", __func__, rc);
2297*51ca58dcSMichael Halcrow 			rc = ecryptfs_copy_filename(plaintext_name,
2298*51ca58dcSMichael Halcrow 						    plaintext_name_size,
2299*51ca58dcSMichael Halcrow 						    orig_name, orig_name_size);
2300*51ca58dcSMichael Halcrow 			goto out;
2301*51ca58dcSMichael Halcrow 		}
2302*51ca58dcSMichael Halcrow 		decoded_name = kmalloc(decoded_name_size, GFP_KERNEL);
2303*51ca58dcSMichael Halcrow 		if (!decoded_name) {
2304*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Out of memory whilst attempting "
2305*51ca58dcSMichael Halcrow 			       "to kmalloc [%Zd] bytes\n", __func__,
2306*51ca58dcSMichael Halcrow 			       decoded_name_size);
2307*51ca58dcSMichael Halcrow 			rc = -ENOMEM;
2308*51ca58dcSMichael Halcrow 			goto out;
2309*51ca58dcSMichael Halcrow 		}
2310*51ca58dcSMichael Halcrow 		rc = ecryptfs_decode_from_filename(decoded_name,
2311*51ca58dcSMichael Halcrow 						   &decoded_name_size,
2312*51ca58dcSMichael Halcrow 						   name, name_size);
2313*51ca58dcSMichael Halcrow 		if (rc) {
2314*51ca58dcSMichael Halcrow 			printk(KERN_ERR "%s: Error attempting to decode "
2315*51ca58dcSMichael Halcrow 			       "filename; rc = [%d]\n", __func__, rc);
2316*51ca58dcSMichael Halcrow 			rc = ecryptfs_copy_filename(plaintext_name,
2317*51ca58dcSMichael Halcrow 						    plaintext_name_size,
2318*51ca58dcSMichael Halcrow 						    orig_name, orig_name_size);
2319*51ca58dcSMichael Halcrow 			goto out_free;
2320*51ca58dcSMichael Halcrow 		}
2321*51ca58dcSMichael Halcrow 		rc = ecryptfs_parse_tag_70_packet(plaintext_name,
2322*51ca58dcSMichael Halcrow 						  plaintext_name_size,
2323*51ca58dcSMichael Halcrow 						  &packet_size,
2324*51ca58dcSMichael Halcrow 						  mount_crypt_stat,
2325*51ca58dcSMichael Halcrow 						  decoded_name,
2326*51ca58dcSMichael Halcrow 						  decoded_name_size);
2327*51ca58dcSMichael Halcrow 		if (rc) {
2328*51ca58dcSMichael Halcrow 			printk(KERN_INFO "%s: Could not parse tag 70 packet "
2329*51ca58dcSMichael Halcrow 			       "from filename; copying through filename "
2330*51ca58dcSMichael Halcrow 			       "as-is\n", __func__);
2331*51ca58dcSMichael Halcrow 			rc = ecryptfs_copy_filename(plaintext_name,
2332*51ca58dcSMichael Halcrow 						    plaintext_name_size,
2333*51ca58dcSMichael Halcrow 						    orig_name, orig_name_size);
2334*51ca58dcSMichael Halcrow 			goto out_free;
2335*51ca58dcSMichael Halcrow 		}
2336*51ca58dcSMichael Halcrow 	} else {
2337*51ca58dcSMichael Halcrow 		rc = ecryptfs_copy_filename(plaintext_name,
2338*51ca58dcSMichael Halcrow 					    plaintext_name_size,
2339*51ca58dcSMichael Halcrow 					    name, name_size);
2340*51ca58dcSMichael Halcrow 		goto out;
2341*51ca58dcSMichael Halcrow 	}
2342*51ca58dcSMichael Halcrow out_free:
2343*51ca58dcSMichael Halcrow 	kfree(decoded_name);
2344*51ca58dcSMichael Halcrow out:
2345*51ca58dcSMichael Halcrow 	return rc;
2346*51ca58dcSMichael Halcrow }
2347