blob: cfa109a4d5a21ac6f784f1a4e8a16b534c9e8d0d [file] [log] [blame]
Michael Halcrow237fead2006-10-04 02:16:22 -07001/**
2 * eCryptfs: Linux filesystem encryption layer
3 *
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08006 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -07007 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8 * Michael C. Thompson <mcthomps@us.ibm.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 * 02111-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/mount.h>
28#include <linux/pagemap.h>
29#include <linux/random.h>
30#include <linux/compiler.h>
31#include <linux/key.h>
32#include <linux/namei.h>
33#include <linux/crypto.h>
34#include <linux/file.h>
35#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Harvey Harrison29335c62008-07-23 21:30:06 -070037#include <asm/unaligned.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070038#include "ecryptfs_kernel.h"
39
40static int
41ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
42 struct page *dst_page, int dst_offset,
43 struct page *src_page, int src_offset, int size,
44 unsigned char *iv);
45static int
46ecryptfs_encrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
47 struct page *dst_page, int dst_offset,
48 struct page *src_page, int src_offset, int size,
49 unsigned char *iv);
50
51/**
52 * ecryptfs_to_hex
53 * @dst: Buffer to take hex character representation of contents of
54 * src; must be at least of size (src_size * 2)
55 * @src: Buffer to be converted to a hex string respresentation
56 * @src_size: number of bytes to convert
57 */
58void ecryptfs_to_hex(char *dst, char *src, size_t src_size)
59{
60 int x;
61
62 for (x = 0; x < src_size; x++)
63 sprintf(&dst[x * 2], "%.2x", (unsigned char)src[x]);
64}
65
66/**
67 * ecryptfs_from_hex
68 * @dst: Buffer to take the bytes from src hex; must be at least of
69 * size (src_size / 2)
70 * @src: Buffer to be converted from a hex string respresentation to raw value
71 * @dst_size: size of dst buffer, or number of hex characters pairs to convert
72 */
73void ecryptfs_from_hex(char *dst, char *src, int dst_size)
74{
75 int x;
76 char tmp[3] = { 0, };
77
78 for (x = 0; x < dst_size; x++) {
79 tmp[0] = src[x * 2];
80 tmp[1] = src[x * 2 + 1];
81 dst[x] = (unsigned char)simple_strtol(tmp, NULL, 16);
82 }
83}
84
85/**
86 * ecryptfs_calculate_md5 - calculates the md5 of @src
87 * @dst: Pointer to 16 bytes of allocated memory
88 * @crypt_stat: Pointer to crypt_stat struct for the current inode
89 * @src: Data to be md5'd
90 * @len: Length of @src
91 *
92 * Uses the allocated crypto context that crypt_stat references to
93 * generate the MD5 sum of the contents of src.
94 */
95static int ecryptfs_calculate_md5(char *dst,
96 struct ecryptfs_crypt_stat *crypt_stat,
97 char *src, int len)
98{
Michael Halcrow237fead2006-10-04 02:16:22 -070099 struct scatterlist sg;
Michael Halcrow565d97242006-10-30 22:07:17 -0800100 struct hash_desc desc = {
101 .tfm = crypt_stat->hash_tfm,
102 .flags = CRYPTO_TFM_REQ_MAY_SLEEP
103 };
104 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700105
Michael Halcrow565d97242006-10-30 22:07:17 -0800106 mutex_lock(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700107 sg_init_one(&sg, (u8 *)src, len);
Michael Halcrow565d97242006-10-30 22:07:17 -0800108 if (!desc.tfm) {
109 desc.tfm = crypto_alloc_hash(ECRYPTFS_DEFAULT_HASH, 0,
110 CRYPTO_ALG_ASYNC);
111 if (IS_ERR(desc.tfm)) {
112 rc = PTR_ERR(desc.tfm);
Michael Halcrow237fead2006-10-04 02:16:22 -0700113 ecryptfs_printk(KERN_ERR, "Error attempting to "
Michael Halcrow565d97242006-10-30 22:07:17 -0800114 "allocate crypto context; rc = [%d]\n",
115 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700116 goto out;
117 }
Michael Halcrow565d97242006-10-30 22:07:17 -0800118 crypt_stat->hash_tfm = desc.tfm;
Michael Halcrow237fead2006-10-04 02:16:22 -0700119 }
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800120 rc = crypto_hash_init(&desc);
121 if (rc) {
122 printk(KERN_ERR
123 "%s: Error initializing crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700124 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800125 goto out;
126 }
127 rc = crypto_hash_update(&desc, &sg, len);
128 if (rc) {
129 printk(KERN_ERR
130 "%s: Error updating crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700131 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800132 goto out;
133 }
134 rc = crypto_hash_final(&desc, dst);
135 if (rc) {
136 printk(KERN_ERR
137 "%s: Error finalizing crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700138 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800139 goto out;
140 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700141out:
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800142 mutex_unlock(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700143 return rc;
144}
145
Michael Halcrowcd9d67d2007-10-16 01:28:04 -0700146static int ecryptfs_crypto_api_algify_cipher_name(char **algified_name,
147 char *cipher_name,
148 char *chaining_modifier)
Michael Halcrow8bba0662006-10-30 22:07:18 -0800149{
150 int cipher_name_len = strlen(cipher_name);
151 int chaining_modifier_len = strlen(chaining_modifier);
152 int algified_name_len;
153 int rc;
154
155 algified_name_len = (chaining_modifier_len + cipher_name_len + 3);
156 (*algified_name) = kmalloc(algified_name_len, GFP_KERNEL);
Michael Halcrow7bd473f2006-11-02 22:06:56 -0800157 if (!(*algified_name)) {
Michael Halcrow8bba0662006-10-30 22:07:18 -0800158 rc = -ENOMEM;
159 goto out;
160 }
161 snprintf((*algified_name), algified_name_len, "%s(%s)",
162 chaining_modifier, cipher_name);
163 rc = 0;
164out:
165 return rc;
166}
167
Michael Halcrow237fead2006-10-04 02:16:22 -0700168/**
169 * ecryptfs_derive_iv
170 * @iv: destination for the derived iv vale
171 * @crypt_stat: Pointer to crypt_stat struct for the current inode
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700172 * @offset: Offset of the extent whose IV we are to derive
Michael Halcrow237fead2006-10-04 02:16:22 -0700173 *
174 * Generate the initialization vector from the given root IV and page
175 * offset.
176 *
177 * Returns zero on success; non-zero on error.
178 */
Michael Halcrowa34f60f2009-01-06 14:41:58 -0800179int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat,
180 loff_t offset)
Michael Halcrow237fead2006-10-04 02:16:22 -0700181{
182 int rc = 0;
183 char dst[MD5_DIGEST_SIZE];
184 char src[ECRYPTFS_MAX_IV_BYTES + 16];
185
186 if (unlikely(ecryptfs_verbosity > 0)) {
187 ecryptfs_printk(KERN_DEBUG, "root iv:\n");
188 ecryptfs_dump_hex(crypt_stat->root_iv, crypt_stat->iv_bytes);
189 }
190 /* TODO: It is probably secure to just cast the least
191 * significant bits of the root IV into an unsigned long and
192 * add the offset to that rather than go through all this
193 * hashing business. -Halcrow */
194 memcpy(src, crypt_stat->root_iv, crypt_stat->iv_bytes);
195 memset((src + crypt_stat->iv_bytes), 0, 16);
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700196 snprintf((src + crypt_stat->iv_bytes), 16, "%lld", offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700197 if (unlikely(ecryptfs_verbosity > 0)) {
198 ecryptfs_printk(KERN_DEBUG, "source:\n");
199 ecryptfs_dump_hex(src, (crypt_stat->iv_bytes + 16));
200 }
201 rc = ecryptfs_calculate_md5(dst, crypt_stat, src,
202 (crypt_stat->iv_bytes + 16));
203 if (rc) {
204 ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
205 "MD5 while generating IV for a page\n");
206 goto out;
207 }
208 memcpy(iv, dst, crypt_stat->iv_bytes);
209 if (unlikely(ecryptfs_verbosity > 0)) {
210 ecryptfs_printk(KERN_DEBUG, "derived iv:\n");
211 ecryptfs_dump_hex(iv, crypt_stat->iv_bytes);
212 }
213out:
214 return rc;
215}
216
217/**
218 * ecryptfs_init_crypt_stat
219 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
220 *
221 * Initialize the crypt_stat structure.
222 */
223void
224ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
225{
226 memset((void *)crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
Michael Halcrowf4aad162007-10-16 01:27:53 -0700227 INIT_LIST_HEAD(&crypt_stat->keysig_list);
228 mutex_init(&crypt_stat->keysig_list_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700229 mutex_init(&crypt_stat->cs_mutex);
230 mutex_init(&crypt_stat->cs_tfm_mutex);
Michael Halcrow565d97242006-10-30 22:07:17 -0800231 mutex_init(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800232 crypt_stat->flags |= ECRYPTFS_STRUCT_INITIALIZED;
Michael Halcrow237fead2006-10-04 02:16:22 -0700233}
234
235/**
Michael Halcrowfcd12832007-10-16 01:28:01 -0700236 * ecryptfs_destroy_crypt_stat
Michael Halcrow237fead2006-10-04 02:16:22 -0700237 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
238 *
239 * Releases all memory associated with a crypt_stat struct.
240 */
Michael Halcrowfcd12832007-10-16 01:28:01 -0700241void ecryptfs_destroy_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
Michael Halcrow237fead2006-10-04 02:16:22 -0700242{
Michael Halcrowf4aad162007-10-16 01:27:53 -0700243 struct ecryptfs_key_sig *key_sig, *key_sig_tmp;
244
Michael Halcrow237fead2006-10-04 02:16:22 -0700245 if (crypt_stat->tfm)
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700246 crypto_free_ablkcipher(crypt_stat->tfm);
Michael Halcrow565d97242006-10-30 22:07:17 -0800247 if (crypt_stat->hash_tfm)
248 crypto_free_hash(crypt_stat->hash_tfm);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700249 list_for_each_entry_safe(key_sig, key_sig_tmp,
250 &crypt_stat->keysig_list, crypt_stat_list) {
251 list_del(&key_sig->crypt_stat_list);
252 kmem_cache_free(ecryptfs_key_sig_cache, key_sig);
253 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700254 memset(crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
255}
256
Michael Halcrowfcd12832007-10-16 01:28:01 -0700257void ecryptfs_destroy_mount_crypt_stat(
Michael Halcrow237fead2006-10-04 02:16:22 -0700258 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
259{
Michael Halcrowf4aad162007-10-16 01:27:53 -0700260 struct ecryptfs_global_auth_tok *auth_tok, *auth_tok_tmp;
261
262 if (!(mount_crypt_stat->flags & ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED))
263 return;
264 mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
265 list_for_each_entry_safe(auth_tok, auth_tok_tmp,
266 &mount_crypt_stat->global_auth_tok_list,
267 mount_crypt_stat_list) {
268 list_del(&auth_tok->mount_crypt_stat_list);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700269 if (auth_tok->global_auth_tok_key
270 && !(auth_tok->flags & ECRYPTFS_AUTH_TOK_INVALID))
271 key_put(auth_tok->global_auth_tok_key);
272 kmem_cache_free(ecryptfs_global_auth_tok_cache, auth_tok);
273 }
274 mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700275 memset(mount_crypt_stat, 0, sizeof(struct ecryptfs_mount_crypt_stat));
276}
277
278/**
279 * virt_to_scatterlist
280 * @addr: Virtual address
281 * @size: Size of data; should be an even multiple of the block size
282 * @sg: Pointer to scatterlist array; set to NULL to obtain only
283 * the number of scatterlist structs required in array
284 * @sg_size: Max array size
285 *
286 * Fills in a scatterlist array with page references for a passed
287 * virtual address.
288 *
289 * Returns the number of scatterlist structs in array used
290 */
291int virt_to_scatterlist(const void *addr, int size, struct scatterlist *sg,
292 int sg_size)
293{
294 int i = 0;
295 struct page *pg;
296 int offset;
297 int remainder_of_page;
298
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700299 sg_init_table(sg, sg_size);
300
Michael Halcrow237fead2006-10-04 02:16:22 -0700301 while (size > 0 && i < sg_size) {
302 pg = virt_to_page(addr);
303 offset = offset_in_page(addr);
Dan Carpentera07c48a2013-01-26 10:48:42 +0300304 sg_set_page(&sg[i], pg, 0, offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700305 remainder_of_page = PAGE_CACHE_SIZE - offset;
306 if (size >= remainder_of_page) {
Dan Carpentera07c48a2013-01-26 10:48:42 +0300307 sg[i].length = remainder_of_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700308 addr += remainder_of_page;
309 size -= remainder_of_page;
310 } else {
Dan Carpentera07c48a2013-01-26 10:48:42 +0300311 sg[i].length = size;
Michael Halcrow237fead2006-10-04 02:16:22 -0700312 addr += size;
313 size = 0;
314 }
315 i++;
316 }
317 if (size > 0)
318 return -ENOMEM;
319 return i;
320}
321
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700322struct extent_crypt_result {
323 struct completion completion;
324 int rc;
325};
326
327static void extent_crypt_complete(struct crypto_async_request *req, int rc)
328{
329 struct extent_crypt_result *ecr = req->data;
330
331 if (rc == -EINPROGRESS)
332 return;
333
334 ecr->rc = rc;
335 complete(&ecr->completion);
336}
337
Michael Halcrow237fead2006-10-04 02:16:22 -0700338/**
339 * encrypt_scatterlist
340 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
341 * @dest_sg: Destination of encrypted data
342 * @src_sg: Data to be encrypted
343 * @size: Length of data to be encrypted
344 * @iv: iv to use during encryption
345 *
346 * Returns the number of bytes encrypted; negative value on error
347 */
348static int encrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
349 struct scatterlist *dest_sg,
350 struct scatterlist *src_sg, int size,
351 unsigned char *iv)
352{
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700353 struct ablkcipher_request *req = NULL;
354 struct extent_crypt_result ecr;
Michael Halcrow237fead2006-10-04 02:16:22 -0700355 int rc = 0;
356
357 BUG_ON(!crypt_stat || !crypt_stat->tfm
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800358 || !(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED));
Michael Halcrow237fead2006-10-04 02:16:22 -0700359 if (unlikely(ecryptfs_verbosity > 0)) {
Tyler Hicksf24b3882010-11-15 17:36:38 -0600360 ecryptfs_printk(KERN_DEBUG, "Key size [%zd]; key:\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700361 crypt_stat->key_size);
362 ecryptfs_dump_hex(crypt_stat->key,
363 crypt_stat->key_size);
364 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700365
366 init_completion(&ecr.completion);
367
Michael Halcrow237fead2006-10-04 02:16:22 -0700368 mutex_lock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700369 req = ablkcipher_request_alloc(crypt_stat->tfm, GFP_NOFS);
370 if (!req) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700371 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700372 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700373 goto out;
374 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700375
376 ablkcipher_request_set_callback(req,
377 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
378 extent_crypt_complete, &ecr);
379 /* Consider doing this once, when the file is opened */
380 if (!(crypt_stat->flags & ECRYPTFS_KEY_SET)) {
381 rc = crypto_ablkcipher_setkey(crypt_stat->tfm, crypt_stat->key,
382 crypt_stat->key_size);
383 if (rc) {
384 ecryptfs_printk(KERN_ERR,
385 "Error setting key; rc = [%d]\n",
386 rc);
387 mutex_unlock(&crypt_stat->cs_tfm_mutex);
388 rc = -EINVAL;
389 goto out;
390 }
391 crypt_stat->flags |= ECRYPTFS_KEY_SET;
392 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700393 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700394 ecryptfs_printk(KERN_DEBUG, "Encrypting [%d] bytes.\n", size);
395 ablkcipher_request_set_crypt(req, src_sg, dest_sg, size, iv);
396 rc = crypto_ablkcipher_encrypt(req);
397 if (rc == -EINPROGRESS || rc == -EBUSY) {
398 struct extent_crypt_result *ecr = req->base.data;
399
400 wait_for_completion(&ecr->completion);
401 rc = ecr->rc;
402 INIT_COMPLETION(ecr->completion);
403 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700404out:
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700405 ablkcipher_request_free(req);
Michael Halcrow237fead2006-10-04 02:16:22 -0700406 return rc;
407}
408
Michael Halcrow237fead2006-10-04 02:16:22 -0700409/**
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700410 * ecryptfs_lower_offset_for_extent
411 *
412 * Convert an eCryptfs page index into a lower byte offset
413 */
Adrian Bunk7896b632008-02-06 01:38:32 -0800414static void ecryptfs_lower_offset_for_extent(loff_t *offset, loff_t extent_num,
415 struct ecryptfs_crypt_stat *crypt_stat)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700416{
Tyler Hicks157f1072010-02-11 07:10:38 -0600417 (*offset) = ecryptfs_lower_header_size(crypt_stat)
418 + (crypt_stat->extent_size * extent_num);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700419}
420
421/**
422 * ecryptfs_encrypt_extent
423 * @enc_extent_page: Allocated page into which to encrypt the data in
424 * @page
425 * @crypt_stat: crypt_stat containing cryptographic context for the
426 * encryption operation
427 * @page: Page containing plaintext data extent to encrypt
428 * @extent_offset: Page extent offset for use in generating IV
429 *
430 * Encrypts one extent of data.
431 *
432 * Return zero on success; non-zero otherwise
433 */
434static int ecryptfs_encrypt_extent(struct page *enc_extent_page,
435 struct ecryptfs_crypt_stat *crypt_stat,
436 struct page *page,
437 unsigned long extent_offset)
438{
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700439 loff_t extent_base;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700440 char extent_iv[ECRYPTFS_MAX_IV_BYTES];
441 int rc;
442
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700443 extent_base = (((loff_t)page->index)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700444 * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
445 rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
446 (extent_base + extent_offset));
447 if (rc) {
Joe Perches888d57b2010-11-10 15:46:16 -0800448 ecryptfs_printk(KERN_ERR, "Error attempting to derive IV for "
449 "extent [0x%.16llx]; rc = [%d]\n",
450 (unsigned long long)(extent_base + extent_offset), rc);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700451 goto out;
452 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700453 rc = ecryptfs_encrypt_page_offset(crypt_stat, enc_extent_page, 0,
454 page, (extent_offset
455 * crypt_stat->extent_size),
456 crypt_stat->extent_size, extent_iv);
457 if (rc < 0) {
458 printk(KERN_ERR "%s: Error attempting to encrypt page with "
459 "page->index = [%ld], extent_offset = [%ld]; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700460 "rc = [%d]\n", __func__, page->index, extent_offset,
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700461 rc);
462 goto out;
463 }
464 rc = 0;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700465out:
466 return rc;
467}
468
469/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700470 * ecryptfs_encrypt_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700471 * @page: Page mapped from the eCryptfs inode for the file; contains
472 * decrypted content that needs to be encrypted (to a temporary
473 * page; not in place) and written out to the lower file
Michael Halcrow237fead2006-10-04 02:16:22 -0700474 *
475 * Encrypt an eCryptfs page. This is done on a per-extent basis. Note
476 * that eCryptfs pages may straddle the lower pages -- for instance,
477 * if the file was created on a machine with an 8K page size
478 * (resulting in an 8K header), and then the file is copied onto a
479 * host with a 32K page size, then when reading page 0 of the eCryptfs
480 * file, 24K of page 0 of the lower file will be read and decrypted,
481 * and then 8K of page 1 of the lower file will be read and decrypted.
482 *
Michael Halcrow237fead2006-10-04 02:16:22 -0700483 * Returns zero on success; negative on error
484 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700485int ecryptfs_encrypt_page(struct page *page)
Michael Halcrow237fead2006-10-04 02:16:22 -0700486{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700487 struct inode *ecryptfs_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700488 struct ecryptfs_crypt_stat *crypt_stat;
Eric Sandeen7fcba052008-07-28 15:46:39 -0700489 char *enc_extent_virt;
490 struct page *enc_extent_page = NULL;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700491 loff_t extent_offset;
Michael Halcrow237fead2006-10-04 02:16:22 -0700492 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700493
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700494 ecryptfs_inode = page->mapping->host;
495 crypt_stat =
496 &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500497 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Eric Sandeen7fcba052008-07-28 15:46:39 -0700498 enc_extent_page = alloc_page(GFP_USER);
499 if (!enc_extent_page) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700500 rc = -ENOMEM;
501 ecryptfs_printk(KERN_ERR, "Error allocating memory for "
502 "encrypted extent\n");
503 goto out;
504 }
Eric Sandeen7fcba052008-07-28 15:46:39 -0700505 enc_extent_virt = kmap(enc_extent_page);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700506 for (extent_offset = 0;
507 extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
508 extent_offset++) {
509 loff_t offset;
510
511 rc = ecryptfs_encrypt_extent(enc_extent_page, crypt_stat, page,
512 extent_offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700513 if (rc) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700514 printk(KERN_ERR "%s: Error encrypting extent; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700515 "rc = [%d]\n", __func__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700516 goto out;
517 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700518 ecryptfs_lower_offset_for_extent(
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700519 &offset, ((((loff_t)page->index)
520 * (PAGE_CACHE_SIZE
521 / crypt_stat->extent_size))
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700522 + extent_offset), crypt_stat);
523 rc = ecryptfs_write_lower(ecryptfs_inode, enc_extent_virt,
524 offset, crypt_stat->extent_size);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500525 if (rc < 0) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700526 ecryptfs_printk(KERN_ERR, "Error attempting "
527 "to write lower page; rc = [%d]"
528 "\n", rc);
529 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700530 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700531 }
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500532 rc = 0;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700533out:
Eric Sandeen7fcba052008-07-28 15:46:39 -0700534 if (enc_extent_page) {
535 kunmap(enc_extent_page);
536 __free_page(enc_extent_page);
537 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700538 return rc;
539}
540
541static int ecryptfs_decrypt_extent(struct page *page,
542 struct ecryptfs_crypt_stat *crypt_stat,
543 struct page *enc_extent_page,
544 unsigned long extent_offset)
545{
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700546 loff_t extent_base;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700547 char extent_iv[ECRYPTFS_MAX_IV_BYTES];
548 int rc;
549
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700550 extent_base = (((loff_t)page->index)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700551 * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
552 rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
553 (extent_base + extent_offset));
Michael Halcrow237fead2006-10-04 02:16:22 -0700554 if (rc) {
Joe Perches888d57b2010-11-10 15:46:16 -0800555 ecryptfs_printk(KERN_ERR, "Error attempting to derive IV for "
556 "extent [0x%.16llx]; rc = [%d]\n",
557 (unsigned long long)(extent_base + extent_offset), rc);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700558 goto out;
559 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700560 rc = ecryptfs_decrypt_page_offset(crypt_stat, page,
561 (extent_offset
562 * crypt_stat->extent_size),
563 enc_extent_page, 0,
564 crypt_stat->extent_size, extent_iv);
565 if (rc < 0) {
566 printk(KERN_ERR "%s: Error attempting to decrypt to page with "
567 "page->index = [%ld], extent_offset = [%ld]; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700568 "rc = [%d]\n", __func__, page->index, extent_offset,
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700569 rc);
570 goto out;
571 }
572 rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700573out:
574 return rc;
575}
576
577/**
578 * ecryptfs_decrypt_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700579 * @page: Page mapped from the eCryptfs inode for the file; data read
580 * and decrypted from the lower file will be written into this
581 * page
Michael Halcrow237fead2006-10-04 02:16:22 -0700582 *
583 * Decrypt an eCryptfs page. This is done on a per-extent basis. Note
584 * that eCryptfs pages may straddle the lower pages -- for instance,
585 * if the file was created on a machine with an 8K page size
586 * (resulting in an 8K header), and then the file is copied onto a
587 * host with a 32K page size, then when reading page 0 of the eCryptfs
588 * file, 24K of page 0 of the lower file will be read and decrypted,
589 * and then 8K of page 1 of the lower file will be read and decrypted.
590 *
591 * Returns zero on success; negative on error
592 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700593int ecryptfs_decrypt_page(struct page *page)
Michael Halcrow237fead2006-10-04 02:16:22 -0700594{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700595 struct inode *ecryptfs_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700596 struct ecryptfs_crypt_stat *crypt_stat;
Eric Sandeen7fcba052008-07-28 15:46:39 -0700597 char *enc_extent_virt;
598 struct page *enc_extent_page = NULL;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700599 unsigned long extent_offset;
Michael Halcrow237fead2006-10-04 02:16:22 -0700600 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700601
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700602 ecryptfs_inode = page->mapping->host;
603 crypt_stat =
604 &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500605 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Eric Sandeen7fcba052008-07-28 15:46:39 -0700606 enc_extent_page = alloc_page(GFP_USER);
607 if (!enc_extent_page) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700608 rc = -ENOMEM;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700609 ecryptfs_printk(KERN_ERR, "Error allocating memory for "
610 "encrypted extent\n");
Michael Halcrow16a72c42007-10-16 01:28:14 -0700611 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700612 }
Eric Sandeen7fcba052008-07-28 15:46:39 -0700613 enc_extent_virt = kmap(enc_extent_page);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700614 for (extent_offset = 0;
615 extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
616 extent_offset++) {
617 loff_t offset;
618
619 ecryptfs_lower_offset_for_extent(
620 &offset, ((page->index * (PAGE_CACHE_SIZE
621 / crypt_stat->extent_size))
622 + extent_offset), crypt_stat);
623 rc = ecryptfs_read_lower(enc_extent_virt, offset,
624 crypt_stat->extent_size,
625 ecryptfs_inode);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500626 if (rc < 0) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700627 ecryptfs_printk(KERN_ERR, "Error attempting "
628 "to read lower page; rc = [%d]"
629 "\n", rc);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700630 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700631 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700632 rc = ecryptfs_decrypt_extent(page, crypt_stat, enc_extent_page,
633 extent_offset);
634 if (rc) {
635 printk(KERN_ERR "%s: Error encrypting extent; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700636 "rc = [%d]\n", __func__, rc);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700637 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700638 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700639 }
640out:
Eric Sandeen7fcba052008-07-28 15:46:39 -0700641 if (enc_extent_page) {
642 kunmap(enc_extent_page);
643 __free_page(enc_extent_page);
644 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700645 return rc;
646}
647
648/**
649 * decrypt_scatterlist
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700650 * @crypt_stat: Cryptographic context
651 * @dest_sg: The destination scatterlist to decrypt into
652 * @src_sg: The source scatterlist to decrypt from
653 * @size: The number of bytes to decrypt
654 * @iv: The initialization vector to use for the decryption
Michael Halcrow237fead2006-10-04 02:16:22 -0700655 *
656 * Returns the number of bytes decrypted; negative value on error
657 */
658static int decrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
659 struct scatterlist *dest_sg,
660 struct scatterlist *src_sg, int size,
661 unsigned char *iv)
662{
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700663 struct ablkcipher_request *req = NULL;
664 struct extent_crypt_result ecr;
Michael Halcrow237fead2006-10-04 02:16:22 -0700665 int rc = 0;
666
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700667 BUG_ON(!crypt_stat || !crypt_stat->tfm
668 || !(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED));
669 if (unlikely(ecryptfs_verbosity > 0)) {
670 ecryptfs_printk(KERN_DEBUG, "Key size [%zd]; key:\n",
671 crypt_stat->key_size);
672 ecryptfs_dump_hex(crypt_stat->key,
673 crypt_stat->key_size);
674 }
675
676 init_completion(&ecr.completion);
677
Michael Halcrow237fead2006-10-04 02:16:22 -0700678 mutex_lock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700679 req = ablkcipher_request_alloc(crypt_stat->tfm, GFP_NOFS);
680 if (!req) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700681 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700682 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700683 goto out;
684 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700685
686 ablkcipher_request_set_callback(req,
687 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
688 extent_crypt_complete, &ecr);
689 /* Consider doing this once, when the file is opened */
690 if (!(crypt_stat->flags & ECRYPTFS_KEY_SET)) {
691 rc = crypto_ablkcipher_setkey(crypt_stat->tfm, crypt_stat->key,
692 crypt_stat->key_size);
693 if (rc) {
694 ecryptfs_printk(KERN_ERR,
695 "Error setting key; rc = [%d]\n",
696 rc);
697 mutex_unlock(&crypt_stat->cs_tfm_mutex);
698 rc = -EINVAL;
699 goto out;
700 }
701 crypt_stat->flags |= ECRYPTFS_KEY_SET;
702 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700703 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700704 ecryptfs_printk(KERN_DEBUG, "Decrypting [%d] bytes.\n", size);
705 ablkcipher_request_set_crypt(req, src_sg, dest_sg, size, iv);
706 rc = crypto_ablkcipher_decrypt(req);
707 if (rc == -EINPROGRESS || rc == -EBUSY) {
708 struct extent_crypt_result *ecr = req->base.data;
709
710 wait_for_completion(&ecr->completion);
711 rc = ecr->rc;
712 INIT_COMPLETION(ecr->completion);
Michael Halcrow237fead2006-10-04 02:16:22 -0700713 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700714out:
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700715 ablkcipher_request_free(req);
Michael Halcrow237fead2006-10-04 02:16:22 -0700716 return rc;
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700717
Michael Halcrow237fead2006-10-04 02:16:22 -0700718}
719
720/**
721 * ecryptfs_encrypt_page_offset
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700722 * @crypt_stat: The cryptographic context
723 * @dst_page: The page to encrypt into
724 * @dst_offset: The offset in the page to encrypt into
725 * @src_page: The page to encrypt from
726 * @src_offset: The offset in the page to encrypt from
727 * @size: The number of bytes to encrypt
728 * @iv: The initialization vector to use for the encryption
Michael Halcrow237fead2006-10-04 02:16:22 -0700729 *
730 * Returns the number of bytes encrypted
731 */
732static int
733ecryptfs_encrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
734 struct page *dst_page, int dst_offset,
735 struct page *src_page, int src_offset, int size,
736 unsigned char *iv)
737{
738 struct scatterlist src_sg, dst_sg;
739
Jens Axboe60c74f82007-10-22 19:43:30 +0200740 sg_init_table(&src_sg, 1);
741 sg_init_table(&dst_sg, 1);
742
Jens Axboe642f1492007-10-24 11:20:47 +0200743 sg_set_page(&src_sg, src_page, size, src_offset);
744 sg_set_page(&dst_sg, dst_page, size, dst_offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700745 return encrypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv);
746}
747
748/**
749 * ecryptfs_decrypt_page_offset
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700750 * @crypt_stat: The cryptographic context
751 * @dst_page: The page to decrypt into
752 * @dst_offset: The offset in the page to decrypt into
753 * @src_page: The page to decrypt from
754 * @src_offset: The offset in the page to decrypt from
755 * @size: The number of bytes to decrypt
756 * @iv: The initialization vector to use for the decryption
Michael Halcrow237fead2006-10-04 02:16:22 -0700757 *
758 * Returns the number of bytes decrypted
759 */
760static int
761ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
762 struct page *dst_page, int dst_offset,
763 struct page *src_page, int src_offset, int size,
764 unsigned char *iv)
765{
766 struct scatterlist src_sg, dst_sg;
767
Jens Axboe60c74f82007-10-22 19:43:30 +0200768 sg_init_table(&src_sg, 1);
Jens Axboe642f1492007-10-24 11:20:47 +0200769 sg_set_page(&src_sg, src_page, size, src_offset);
Jens Axboe60c74f82007-10-22 19:43:30 +0200770
Jens Axboe642f1492007-10-24 11:20:47 +0200771 sg_init_table(&dst_sg, 1);
772 sg_set_page(&dst_sg, dst_page, size, dst_offset);
773
Michael Halcrow237fead2006-10-04 02:16:22 -0700774 return decrypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv);
775}
776
777#define ECRYPTFS_MAX_SCATTERLIST_LEN 4
778
779/**
780 * ecryptfs_init_crypt_ctx
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200781 * @crypt_stat: Uninitialized crypt stats structure
Michael Halcrow237fead2006-10-04 02:16:22 -0700782 *
783 * Initialize the crypto context.
784 *
785 * TODO: Performance: Keep a cache of initialized cipher contexts;
786 * only init if needed
787 */
788int ecryptfs_init_crypt_ctx(struct ecryptfs_crypt_stat *crypt_stat)
789{
Michael Halcrow8bba0662006-10-30 22:07:18 -0800790 char *full_alg_name;
Michael Halcrow237fead2006-10-04 02:16:22 -0700791 int rc = -EINVAL;
792
793 if (!crypt_stat->cipher) {
794 ecryptfs_printk(KERN_ERR, "No cipher specified\n");
795 goto out;
796 }
797 ecryptfs_printk(KERN_DEBUG,
798 "Initializing cipher [%s]; strlen = [%d]; "
Tyler Hicksf24b3882010-11-15 17:36:38 -0600799 "key_size_bits = [%zd]\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700800 crypt_stat->cipher, (int)strlen(crypt_stat->cipher),
801 crypt_stat->key_size << 3);
802 if (crypt_stat->tfm) {
803 rc = 0;
804 goto out;
805 }
806 mutex_lock(&crypt_stat->cs_tfm_mutex);
Michael Halcrow8bba0662006-10-30 22:07:18 -0800807 rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name,
808 crypt_stat->cipher, "cbc");
809 if (rc)
Eric Sandeenc8161f62007-12-22 14:03:26 -0800810 goto out_unlock;
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700811 crypt_stat->tfm = crypto_alloc_ablkcipher(full_alg_name, 0, 0);
Michael Halcrow8bba0662006-10-30 22:07:18 -0800812 kfree(full_alg_name);
Akinobu Mitade887772006-11-28 12:29:49 -0800813 if (IS_ERR(crypt_stat->tfm)) {
814 rc = PTR_ERR(crypt_stat->tfm);
Tyler Hicksb0105ea2009-08-11 00:36:32 -0500815 crypt_stat->tfm = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700816 ecryptfs_printk(KERN_ERR, "cryptfs: init_crypt_ctx(): "
817 "Error initializing cipher [%s]\n",
818 crypt_stat->cipher);
Eric Sandeenc8161f62007-12-22 14:03:26 -0800819 goto out_unlock;
Michael Halcrow237fead2006-10-04 02:16:22 -0700820 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700821 crypto_ablkcipher_set_flags(crypt_stat->tfm, CRYPTO_TFM_REQ_WEAK_KEY);
Michael Halcrow237fead2006-10-04 02:16:22 -0700822 rc = 0;
Eric Sandeenc8161f62007-12-22 14:03:26 -0800823out_unlock:
824 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700825out:
826 return rc;
827}
828
829static void set_extent_mask_and_shift(struct ecryptfs_crypt_stat *crypt_stat)
830{
831 int extent_size_tmp;
832
833 crypt_stat->extent_mask = 0xFFFFFFFF;
834 crypt_stat->extent_shift = 0;
835 if (crypt_stat->extent_size == 0)
836 return;
837 extent_size_tmp = crypt_stat->extent_size;
838 while ((extent_size_tmp & 0x01) == 0) {
839 extent_size_tmp >>= 1;
840 crypt_stat->extent_mask <<= 1;
841 crypt_stat->extent_shift++;
842 }
843}
844
845void ecryptfs_set_default_sizes(struct ecryptfs_crypt_stat *crypt_stat)
846{
847 /* Default values; may be overwritten as we are parsing the
848 * packets. */
849 crypt_stat->extent_size = ECRYPTFS_DEFAULT_EXTENT_SIZE;
850 set_extent_mask_and_shift(crypt_stat);
851 crypt_stat->iv_bytes = ECRYPTFS_DEFAULT_IV_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800852 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600853 crypt_stat->metadata_size = ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700854 else {
855 if (PAGE_CACHE_SIZE <= ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600856 crypt_stat->metadata_size =
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800857 ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700858 else
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600859 crypt_stat->metadata_size = PAGE_CACHE_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700860 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700861}
862
863/**
864 * ecryptfs_compute_root_iv
865 * @crypt_stats
866 *
867 * On error, sets the root IV to all 0's.
868 */
869int ecryptfs_compute_root_iv(struct ecryptfs_crypt_stat *crypt_stat)
870{
871 int rc = 0;
872 char dst[MD5_DIGEST_SIZE];
873
874 BUG_ON(crypt_stat->iv_bytes > MD5_DIGEST_SIZE);
875 BUG_ON(crypt_stat->iv_bytes <= 0);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800876 if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700877 rc = -EINVAL;
878 ecryptfs_printk(KERN_WARNING, "Session key not valid; "
879 "cannot generate root IV\n");
880 goto out;
881 }
882 rc = ecryptfs_calculate_md5(dst, crypt_stat, crypt_stat->key,
883 crypt_stat->key_size);
884 if (rc) {
885 ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
886 "MD5 while generating root IV\n");
887 goto out;
888 }
889 memcpy(crypt_stat->root_iv, dst, crypt_stat->iv_bytes);
890out:
891 if (rc) {
892 memset(crypt_stat->root_iv, 0, crypt_stat->iv_bytes);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800893 crypt_stat->flags |= ECRYPTFS_SECURITY_WARNING;
Michael Halcrow237fead2006-10-04 02:16:22 -0700894 }
895 return rc;
896}
897
898static void ecryptfs_generate_new_key(struct ecryptfs_crypt_stat *crypt_stat)
899{
900 get_random_bytes(crypt_stat->key, crypt_stat->key_size);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800901 crypt_stat->flags |= ECRYPTFS_KEY_VALID;
Michael Halcrow237fead2006-10-04 02:16:22 -0700902 ecryptfs_compute_root_iv(crypt_stat);
903 if (unlikely(ecryptfs_verbosity > 0)) {
904 ecryptfs_printk(KERN_DEBUG, "Generated new session key:\n");
905 ecryptfs_dump_hex(crypt_stat->key,
906 crypt_stat->key_size);
907 }
908}
909
910/**
Michael Halcrow17398952007-02-12 00:53:45 -0800911 * ecryptfs_copy_mount_wide_flags_to_inode_flags
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700912 * @crypt_stat: The inode's cryptographic context
913 * @mount_crypt_stat: The mount point's cryptographic context
Michael Halcrow17398952007-02-12 00:53:45 -0800914 *
915 * This function propagates the mount-wide flags to individual inode
916 * flags.
917 */
918static void ecryptfs_copy_mount_wide_flags_to_inode_flags(
919 struct ecryptfs_crypt_stat *crypt_stat,
920 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
921{
922 if (mount_crypt_stat->flags & ECRYPTFS_XATTR_METADATA_ENABLED)
923 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
924 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
925 crypt_stat->flags |= ECRYPTFS_VIEW_AS_ENCRYPTED;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800926 if (mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) {
927 crypt_stat->flags |= ECRYPTFS_ENCRYPT_FILENAMES;
928 if (mount_crypt_stat->flags
929 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)
930 crypt_stat->flags |= ECRYPTFS_ENCFN_USE_MOUNT_FNEK;
931 else if (mount_crypt_stat->flags
932 & ECRYPTFS_GLOBAL_ENCFN_USE_FEK)
933 crypt_stat->flags |= ECRYPTFS_ENCFN_USE_FEK;
934 }
Michael Halcrow17398952007-02-12 00:53:45 -0800935}
936
Michael Halcrowf4aad162007-10-16 01:27:53 -0700937static int ecryptfs_copy_mount_wide_sigs_to_inode_sigs(
938 struct ecryptfs_crypt_stat *crypt_stat,
939 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
940{
941 struct ecryptfs_global_auth_tok *global_auth_tok;
942 int rc = 0;
943
Roland Dreieraa061172009-07-01 15:48:18 -0700944 mutex_lock(&crypt_stat->keysig_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700945 mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
Roland Dreieraa061172009-07-01 15:48:18 -0700946
Michael Halcrowf4aad162007-10-16 01:27:53 -0700947 list_for_each_entry(global_auth_tok,
948 &mount_crypt_stat->global_auth_tok_list,
949 mount_crypt_stat_list) {
Tyler Hicks84814d62009-03-13 13:51:59 -0700950 if (global_auth_tok->flags & ECRYPTFS_AUTH_TOK_FNEK)
951 continue;
Michael Halcrowf4aad162007-10-16 01:27:53 -0700952 rc = ecryptfs_add_keysig(crypt_stat, global_auth_tok->sig);
953 if (rc) {
954 printk(KERN_ERR "Error adding keysig; rc = [%d]\n", rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700955 goto out;
956 }
957 }
Roland Dreieraa061172009-07-01 15:48:18 -0700958
Michael Halcrowf4aad162007-10-16 01:27:53 -0700959out:
Roland Dreieraa061172009-07-01 15:48:18 -0700960 mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
961 mutex_unlock(&crypt_stat->keysig_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700962 return rc;
963}
964
Michael Halcrow17398952007-02-12 00:53:45 -0800965/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700966 * ecryptfs_set_default_crypt_stat_vals
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700967 * @crypt_stat: The inode's cryptographic context
968 * @mount_crypt_stat: The mount point's cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -0700969 *
970 * Default values in the event that policy does not override them.
971 */
972static void ecryptfs_set_default_crypt_stat_vals(
973 struct ecryptfs_crypt_stat *crypt_stat,
974 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
975{
Michael Halcrow17398952007-02-12 00:53:45 -0800976 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
977 mount_crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700978 ecryptfs_set_default_sizes(crypt_stat);
979 strcpy(crypt_stat->cipher, ECRYPTFS_DEFAULT_CIPHER);
980 crypt_stat->key_size = ECRYPTFS_DEFAULT_KEY_BYTES;
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800981 crypt_stat->flags &= ~(ECRYPTFS_KEY_VALID);
Michael Halcrow237fead2006-10-04 02:16:22 -0700982 crypt_stat->file_version = ECRYPTFS_FILE_VERSION;
983 crypt_stat->mount_crypt_stat = mount_crypt_stat;
984}
985
986/**
987 * ecryptfs_new_file_context
Tyler Hicksb59db432011-11-21 17:31:02 -0600988 * @ecryptfs_inode: The eCryptfs inode
Michael Halcrow237fead2006-10-04 02:16:22 -0700989 *
990 * If the crypto context for the file has not yet been established,
991 * this is where we do that. Establishing a new crypto context
992 * involves the following decisions:
993 * - What cipher to use?
994 * - What set of authentication tokens to use?
995 * Here we just worry about getting enough information into the
996 * authentication tokens so that we know that they are available.
997 * We associate the available authentication tokens with the new file
998 * via the set of signatures in the crypt_stat struct. Later, when
999 * the headers are actually written out, we may again defer to
1000 * userspace to perform the encryption of the session key; for the
1001 * foreseeable future, this will be the case with public key packets.
1002 *
1003 * Returns zero on success; non-zero otherwise
1004 */
Tyler Hicksb59db432011-11-21 17:31:02 -06001005int ecryptfs_new_file_context(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -07001006{
Michael Halcrow237fead2006-10-04 02:16:22 -07001007 struct ecryptfs_crypt_stat *crypt_stat =
Tyler Hicksb59db432011-11-21 17:31:02 -06001008 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -07001009 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
1010 &ecryptfs_superblock_to_private(
Tyler Hicksb59db432011-11-21 17:31:02 -06001011 ecryptfs_inode->i_sb)->mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -07001012 int cipher_name_len;
Michael Halcrowf4aad162007-10-16 01:27:53 -07001013 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001014
1015 ecryptfs_set_default_crypt_stat_vals(crypt_stat, mount_crypt_stat);
Michael Halcrowaf655dc2007-10-16 01:28:00 -07001016 crypt_stat->flags |= (ECRYPTFS_ENCRYPTED | ECRYPTFS_KEY_VALID);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001017 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
1018 mount_crypt_stat);
1019 rc = ecryptfs_copy_mount_wide_sigs_to_inode_sigs(crypt_stat,
1020 mount_crypt_stat);
1021 if (rc) {
1022 printk(KERN_ERR "Error attempting to copy mount-wide key sigs "
1023 "to the inode key sigs; rc = [%d]\n", rc);
1024 goto out;
1025 }
1026 cipher_name_len =
1027 strlen(mount_crypt_stat->global_default_cipher_name);
1028 memcpy(crypt_stat->cipher,
1029 mount_crypt_stat->global_default_cipher_name,
1030 cipher_name_len);
1031 crypt_stat->cipher[cipher_name_len] = '\0';
1032 crypt_stat->key_size =
1033 mount_crypt_stat->global_default_cipher_key_size;
1034 ecryptfs_generate_new_key(crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -07001035 rc = ecryptfs_init_crypt_ctx(crypt_stat);
1036 if (rc)
1037 ecryptfs_printk(KERN_ERR, "Error initializing cryptographic "
1038 "context for cipher [%s]: rc = [%d]\n",
1039 crypt_stat->cipher, rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001040out:
Michael Halcrow237fead2006-10-04 02:16:22 -07001041 return rc;
1042}
1043
1044/**
Tyler Hicks7a866172011-05-02 00:39:54 -05001045 * ecryptfs_validate_marker - check for the ecryptfs marker
Michael Halcrow237fead2006-10-04 02:16:22 -07001046 * @data: The data block in which to check
1047 *
Tyler Hicks7a866172011-05-02 00:39:54 -05001048 * Returns zero if marker found; -EINVAL if not found
Michael Halcrow237fead2006-10-04 02:16:22 -07001049 */
Tyler Hicks7a866172011-05-02 00:39:54 -05001050static int ecryptfs_validate_marker(char *data)
Michael Halcrow237fead2006-10-04 02:16:22 -07001051{
1052 u32 m_1, m_2;
1053
Harvey Harrison29335c62008-07-23 21:30:06 -07001054 m_1 = get_unaligned_be32(data);
1055 m_2 = get_unaligned_be32(data + 4);
Michael Halcrow237fead2006-10-04 02:16:22 -07001056 if ((m_1 ^ MAGIC_ECRYPTFS_MARKER) == m_2)
Tyler Hicks7a866172011-05-02 00:39:54 -05001057 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001058 ecryptfs_printk(KERN_DEBUG, "m_1 = [0x%.8x]; m_2 = [0x%.8x]; "
1059 "MAGIC_ECRYPTFS_MARKER = [0x%.8x]\n", m_1, m_2,
1060 MAGIC_ECRYPTFS_MARKER);
1061 ecryptfs_printk(KERN_DEBUG, "(m_1 ^ MAGIC_ECRYPTFS_MARKER) = "
1062 "[0x%.8x]\n", (m_1 ^ MAGIC_ECRYPTFS_MARKER));
Tyler Hicks7a866172011-05-02 00:39:54 -05001063 return -EINVAL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001064}
1065
1066struct ecryptfs_flag_map_elem {
1067 u32 file_flag;
1068 u32 local_flag;
1069};
1070
1071/* Add support for additional flags by adding elements here. */
1072static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = {
1073 {0x00000001, ECRYPTFS_ENABLE_HMAC},
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001074 {0x00000002, ECRYPTFS_ENCRYPTED},
Michael Halcrowaddd65ad2009-01-06 14:42:00 -08001075 {0x00000004, ECRYPTFS_METADATA_IN_XATTR},
1076 {0x00000008, ECRYPTFS_ENCRYPT_FILENAMES}
Michael Halcrow237fead2006-10-04 02:16:22 -07001077};
1078
1079/**
1080 * ecryptfs_process_flags
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001081 * @crypt_stat: The cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -07001082 * @page_virt: Source data to be parsed
1083 * @bytes_read: Updated with the number of bytes read
1084 *
1085 * Returns zero on success; non-zero if the flag set is invalid
1086 */
1087static int ecryptfs_process_flags(struct ecryptfs_crypt_stat *crypt_stat,
1088 char *page_virt, int *bytes_read)
1089{
1090 int rc = 0;
1091 int i;
1092 u32 flags;
1093
Harvey Harrison29335c62008-07-23 21:30:06 -07001094 flags = get_unaligned_be32(page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001095 for (i = 0; i < ((sizeof(ecryptfs_flag_map)
1096 / sizeof(struct ecryptfs_flag_map_elem))); i++)
1097 if (flags & ecryptfs_flag_map[i].file_flag) {
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001098 crypt_stat->flags |= ecryptfs_flag_map[i].local_flag;
Michael Halcrow237fead2006-10-04 02:16:22 -07001099 } else
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001100 crypt_stat->flags &= ~(ecryptfs_flag_map[i].local_flag);
Michael Halcrow237fead2006-10-04 02:16:22 -07001101 /* Version is in top 8 bits of the 32-bit flag vector */
1102 crypt_stat->file_version = ((flags >> 24) & 0xFF);
1103 (*bytes_read) = 4;
1104 return rc;
1105}
1106
1107/**
1108 * write_ecryptfs_marker
1109 * @page_virt: The pointer to in a page to begin writing the marker
1110 * @written: Number of bytes written
1111 *
1112 * Marker = 0x3c81b7f5
1113 */
1114static void write_ecryptfs_marker(char *page_virt, size_t *written)
1115{
1116 u32 m_1, m_2;
1117
1118 get_random_bytes(&m_1, (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2));
1119 m_2 = (m_1 ^ MAGIC_ECRYPTFS_MARKER);
Harvey Harrison29335c62008-07-23 21:30:06 -07001120 put_unaligned_be32(m_1, page_virt);
1121 page_virt += (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2);
1122 put_unaligned_be32(m_2, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001123 (*written) = MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
1124}
1125
Tyler Hicksf4e60e62010-02-11 00:02:32 -06001126void ecryptfs_write_crypt_stat_flags(char *page_virt,
1127 struct ecryptfs_crypt_stat *crypt_stat,
1128 size_t *written)
Michael Halcrow237fead2006-10-04 02:16:22 -07001129{
1130 u32 flags = 0;
1131 int i;
1132
1133 for (i = 0; i < ((sizeof(ecryptfs_flag_map)
1134 / sizeof(struct ecryptfs_flag_map_elem))); i++)
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001135 if (crypt_stat->flags & ecryptfs_flag_map[i].local_flag)
Michael Halcrow237fead2006-10-04 02:16:22 -07001136 flags |= ecryptfs_flag_map[i].file_flag;
1137 /* Version is in top 8 bits of the 32-bit flag vector */
1138 flags |= ((((u8)crypt_stat->file_version) << 24) & 0xFF000000);
Harvey Harrison29335c62008-07-23 21:30:06 -07001139 put_unaligned_be32(flags, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001140 (*written) = 4;
1141}
1142
1143struct ecryptfs_cipher_code_str_map_elem {
1144 char cipher_str[16];
Trevor Highland19e66a62008-02-06 01:38:36 -08001145 u8 cipher_code;
Michael Halcrow237fead2006-10-04 02:16:22 -07001146};
1147
1148/* Add support for additional ciphers by adding elements here. The
1149 * cipher_code is whatever OpenPGP applicatoins use to identify the
1150 * ciphers. List in order of probability. */
1151static struct ecryptfs_cipher_code_str_map_elem
1152ecryptfs_cipher_code_str_map[] = {
1153 {"aes",RFC2440_CIPHER_AES_128 },
1154 {"blowfish", RFC2440_CIPHER_BLOWFISH},
1155 {"des3_ede", RFC2440_CIPHER_DES3_EDE},
1156 {"cast5", RFC2440_CIPHER_CAST_5},
1157 {"twofish", RFC2440_CIPHER_TWOFISH},
1158 {"cast6", RFC2440_CIPHER_CAST_6},
1159 {"aes", RFC2440_CIPHER_AES_192},
1160 {"aes", RFC2440_CIPHER_AES_256}
1161};
1162
1163/**
1164 * ecryptfs_code_for_cipher_string
Michael Halcrow9c79f342009-01-06 14:41:57 -08001165 * @cipher_name: The string alias for the cipher
1166 * @key_bytes: Length of key in bytes; used for AES code selection
Michael Halcrow237fead2006-10-04 02:16:22 -07001167 *
1168 * Returns zero on no match, or the cipher code on match
1169 */
Michael Halcrow9c79f342009-01-06 14:41:57 -08001170u8 ecryptfs_code_for_cipher_string(char *cipher_name, size_t key_bytes)
Michael Halcrow237fead2006-10-04 02:16:22 -07001171{
1172 int i;
Trevor Highland19e66a62008-02-06 01:38:36 -08001173 u8 code = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001174 struct ecryptfs_cipher_code_str_map_elem *map =
1175 ecryptfs_cipher_code_str_map;
1176
Michael Halcrow9c79f342009-01-06 14:41:57 -08001177 if (strcmp(cipher_name, "aes") == 0) {
1178 switch (key_bytes) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001179 case 16:
1180 code = RFC2440_CIPHER_AES_128;
1181 break;
1182 case 24:
1183 code = RFC2440_CIPHER_AES_192;
1184 break;
1185 case 32:
1186 code = RFC2440_CIPHER_AES_256;
1187 }
1188 } else {
1189 for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
Michael Halcrow9c79f342009-01-06 14:41:57 -08001190 if (strcmp(cipher_name, map[i].cipher_str) == 0) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001191 code = map[i].cipher_code;
1192 break;
1193 }
1194 }
1195 return code;
1196}
1197
1198/**
1199 * ecryptfs_cipher_code_to_string
1200 * @str: Destination to write out the cipher name
1201 * @cipher_code: The code to convert to cipher name string
1202 *
1203 * Returns zero on success
1204 */
Trevor Highland19e66a62008-02-06 01:38:36 -08001205int ecryptfs_cipher_code_to_string(char *str, u8 cipher_code)
Michael Halcrow237fead2006-10-04 02:16:22 -07001206{
1207 int rc = 0;
1208 int i;
1209
1210 str[0] = '\0';
1211 for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
1212 if (cipher_code == ecryptfs_cipher_code_str_map[i].cipher_code)
1213 strcpy(str, ecryptfs_cipher_code_str_map[i].cipher_str);
1214 if (str[0] == '\0') {
1215 ecryptfs_printk(KERN_WARNING, "Cipher code not recognized: "
1216 "[%d]\n", cipher_code);
1217 rc = -EINVAL;
1218 }
1219 return rc;
1220}
1221
Tyler Hicks778aeb42011-05-24 04:56:23 -05001222int ecryptfs_read_and_validate_header_region(struct inode *inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001223{
Tyler Hicks778aeb42011-05-24 04:56:23 -05001224 u8 file_size[ECRYPTFS_SIZE_AND_MARKER_BYTES];
1225 u8 *marker = file_size + ECRYPTFS_FILE_SIZE_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001226 int rc;
1227
Tyler Hicks778aeb42011-05-24 04:56:23 -05001228 rc = ecryptfs_read_lower(file_size, 0, ECRYPTFS_SIZE_AND_MARKER_BYTES,
1229 inode);
1230 if (rc < ECRYPTFS_SIZE_AND_MARKER_BYTES)
1231 return rc >= 0 ? -EINVAL : rc;
1232 rc = ecryptfs_validate_marker(marker);
1233 if (!rc)
1234 ecryptfs_i_size_init(file_size, inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001235 return rc;
1236}
1237
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001238void
1239ecryptfs_write_header_metadata(char *virt,
1240 struct ecryptfs_crypt_stat *crypt_stat,
1241 size_t *written)
Michael Halcrow237fead2006-10-04 02:16:22 -07001242{
1243 u32 header_extent_size;
1244 u16 num_header_extents_at_front;
1245
Michael Halcrow45eaab72007-10-16 01:28:05 -07001246 header_extent_size = (u32)crypt_stat->extent_size;
Michael Halcrow237fead2006-10-04 02:16:22 -07001247 num_header_extents_at_front =
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001248 (u16)(crypt_stat->metadata_size / crypt_stat->extent_size);
Harvey Harrison29335c62008-07-23 21:30:06 -07001249 put_unaligned_be32(header_extent_size, virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001250 virt += 4;
Harvey Harrison29335c62008-07-23 21:30:06 -07001251 put_unaligned_be16(num_header_extents_at_front, virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001252 (*written) = 6;
1253}
1254
Tyler Hicks30632872011-05-24 05:11:12 -05001255struct kmem_cache *ecryptfs_header_cache;
Michael Halcrow237fead2006-10-04 02:16:22 -07001256
1257/**
1258 * ecryptfs_write_headers_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001259 * @page_virt: The virtual address to write the headers to
Eric Sandeen87b811c2008-10-29 14:01:08 -07001260 * @max: The size of memory allocated at page_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001261 * @size: Set to the number of bytes written by this function
1262 * @crypt_stat: The cryptographic context
1263 * @ecryptfs_dentry: The eCryptfs dentry
Michael Halcrow237fead2006-10-04 02:16:22 -07001264 *
1265 * Format version: 1
1266 *
1267 * Header Extent:
1268 * Octets 0-7: Unencrypted file size (big-endian)
1269 * Octets 8-15: eCryptfs special marker
1270 * Octets 16-19: Flags
1271 * Octet 16: File format version number (between 0 and 255)
1272 * Octets 17-18: Reserved
1273 * Octet 19: Bit 1 (lsb): Reserved
1274 * Bit 2: Encrypted?
1275 * Bits 3-8: Reserved
1276 * Octets 20-23: Header extent size (big-endian)
1277 * Octets 24-25: Number of header extents at front of file
1278 * (big-endian)
1279 * Octet 26: Begin RFC 2440 authentication token packet set
1280 * Data Extent 0:
1281 * Lower data (CBC encrypted)
1282 * Data Extent 1:
1283 * Lower data (CBC encrypted)
1284 * ...
1285 *
1286 * Returns zero on success
1287 */
Eric Sandeen87b811c2008-10-29 14:01:08 -07001288static int ecryptfs_write_headers_virt(char *page_virt, size_t max,
1289 size_t *size,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001290 struct ecryptfs_crypt_stat *crypt_stat,
1291 struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -07001292{
1293 int rc;
1294 size_t written;
1295 size_t offset;
1296
1297 offset = ECRYPTFS_FILE_SIZE_BYTES;
1298 write_ecryptfs_marker((page_virt + offset), &written);
1299 offset += written;
Tyler Hicksf4e60e62010-02-11 00:02:32 -06001300 ecryptfs_write_crypt_stat_flags((page_virt + offset), crypt_stat,
1301 &written);
Michael Halcrow237fead2006-10-04 02:16:22 -07001302 offset += written;
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001303 ecryptfs_write_header_metadata((page_virt + offset), crypt_stat,
1304 &written);
Michael Halcrow237fead2006-10-04 02:16:22 -07001305 offset += written;
1306 rc = ecryptfs_generate_key_packet_set((page_virt + offset), crypt_stat,
1307 ecryptfs_dentry, &written,
Eric Sandeen87b811c2008-10-29 14:01:08 -07001308 max - offset);
Michael Halcrow237fead2006-10-04 02:16:22 -07001309 if (rc)
1310 ecryptfs_printk(KERN_WARNING, "Error generating key packet "
1311 "set; rc = [%d]\n", rc);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001312 if (size) {
1313 offset += written;
1314 *size = offset;
1315 }
1316 return rc;
1317}
1318
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001319static int
Tyler Hicksb59db432011-11-21 17:31:02 -06001320ecryptfs_write_metadata_to_contents(struct inode *ecryptfs_inode,
Tyler Hicks8faece52009-03-20 01:25:09 -05001321 char *virt, size_t virt_len)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001322{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001323 int rc;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001324
Tyler Hicksb59db432011-11-21 17:31:02 -06001325 rc = ecryptfs_write_lower(ecryptfs_inode, virt,
Tyler Hicks8faece52009-03-20 01:25:09 -05001326 0, virt_len);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001327 if (rc < 0)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001328 printk(KERN_ERR "%s: Error attempting to write header "
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001329 "information to lower file; rc = [%d]\n", __func__, rc);
1330 else
1331 rc = 0;
Michael Halcrow70456602007-02-12 00:53:48 -08001332 return rc;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001333}
1334
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001335static int
1336ecryptfs_write_metadata_to_xattr(struct dentry *ecryptfs_dentry,
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001337 char *page_virt, size_t size)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001338{
1339 int rc;
1340
1341 rc = ecryptfs_setxattr(ecryptfs_dentry, ECRYPTFS_XATTR_NAME, page_virt,
1342 size, 0);
Michael Halcrow237fead2006-10-04 02:16:22 -07001343 return rc;
1344}
1345
Tyler Hicks8faece52009-03-20 01:25:09 -05001346static unsigned long ecryptfs_get_zeroed_pages(gfp_t gfp_mask,
1347 unsigned int order)
1348{
1349 struct page *page;
1350
1351 page = alloc_pages(gfp_mask | __GFP_ZERO, order);
1352 if (page)
1353 return (unsigned long) page_address(page);
1354 return 0;
1355}
1356
Michael Halcrow237fead2006-10-04 02:16:22 -07001357/**
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001358 * ecryptfs_write_metadata
Tyler Hicksb59db432011-11-21 17:31:02 -06001359 * @ecryptfs_dentry: The eCryptfs dentry, which should be negative
1360 * @ecryptfs_inode: The newly created eCryptfs inode
Michael Halcrow237fead2006-10-04 02:16:22 -07001361 *
1362 * Write the file headers out. This will likely involve a userspace
1363 * callout, in which the session key is encrypted with one or more
1364 * public keys and/or the passphrase necessary to do the encryption is
1365 * retrieved via a prompt. Exactly what happens at this point should
1366 * be policy-dependent.
1367 *
1368 * Returns zero on success; non-zero on error
1369 */
Tyler Hicksb59db432011-11-21 17:31:02 -06001370int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry,
1371 struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -07001372{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001373 struct ecryptfs_crypt_stat *crypt_stat =
Tyler Hicksb59db432011-11-21 17:31:02 -06001374 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Tyler Hicks8faece52009-03-20 01:25:09 -05001375 unsigned int order;
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001376 char *virt;
Tyler Hicks8faece52009-03-20 01:25:09 -05001377 size_t virt_len;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001378 size_t size = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001379 int rc = 0;
1380
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001381 if (likely(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
1382 if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001383 printk(KERN_ERR "Key is invalid; bailing out\n");
Michael Halcrow237fead2006-10-04 02:16:22 -07001384 rc = -EINVAL;
1385 goto out;
1386 }
1387 } else {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001388 printk(KERN_WARNING "%s: Encrypted flag not set\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001389 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001390 rc = -EINVAL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001391 goto out;
1392 }
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001393 virt_len = crypt_stat->metadata_size;
Tyler Hicks8faece52009-03-20 01:25:09 -05001394 order = get_order(virt_len);
Michael Halcrow237fead2006-10-04 02:16:22 -07001395 /* Released in this function */
Tyler Hicks8faece52009-03-20 01:25:09 -05001396 virt = (char *)ecryptfs_get_zeroed_pages(GFP_KERNEL, order);
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001397 if (!virt) {
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001398 printk(KERN_ERR "%s: Out of memory\n", __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001399 rc = -ENOMEM;
1400 goto out;
1401 }
Tyler Hicksbd4f0fe2011-02-23 00:14:19 -06001402 /* Zeroed page ensures the in-header unencrypted i_size is set to 0 */
Tyler Hicks8faece52009-03-20 01:25:09 -05001403 rc = ecryptfs_write_headers_virt(virt, virt_len, &size, crypt_stat,
1404 ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -07001405 if (unlikely(rc)) {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001406 printk(KERN_ERR "%s: Error whilst writing headers; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001407 __func__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001408 goto out_free;
1409 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001410 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Tyler Hicks8faece52009-03-20 01:25:09 -05001411 rc = ecryptfs_write_metadata_to_xattr(ecryptfs_dentry, virt,
1412 size);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001413 else
Tyler Hicksb59db432011-11-21 17:31:02 -06001414 rc = ecryptfs_write_metadata_to_contents(ecryptfs_inode, virt,
Tyler Hicks8faece52009-03-20 01:25:09 -05001415 virt_len);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001416 if (rc) {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001417 printk(KERN_ERR "%s: Error writing metadata out to lower file; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001418 "rc = [%d]\n", __func__, rc);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001419 goto out_free;
Michael Halcrow237fead2006-10-04 02:16:22 -07001420 }
Michael Halcrow237fead2006-10-04 02:16:22 -07001421out_free:
Tyler Hicks8faece52009-03-20 01:25:09 -05001422 free_pages((unsigned long)virt, order);
Michael Halcrow237fead2006-10-04 02:16:22 -07001423out:
1424 return rc;
1425}
1426
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001427#define ECRYPTFS_DONT_VALIDATE_HEADER_SIZE 0
1428#define ECRYPTFS_VALIDATE_HEADER_SIZE 1
Michael Halcrow237fead2006-10-04 02:16:22 -07001429static int parse_header_metadata(struct ecryptfs_crypt_stat *crypt_stat,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001430 char *virt, int *bytes_read,
1431 int validate_header_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001432{
1433 int rc = 0;
1434 u32 header_extent_size;
1435 u16 num_header_extents_at_front;
1436
Harvey Harrison29335c62008-07-23 21:30:06 -07001437 header_extent_size = get_unaligned_be32(virt);
1438 virt += sizeof(__be32);
1439 num_header_extents_at_front = get_unaligned_be16(virt);
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001440 crypt_stat->metadata_size = (((size_t)num_header_extents_at_front
1441 * (size_t)header_extent_size));
Harvey Harrison29335c62008-07-23 21:30:06 -07001442 (*bytes_read) = (sizeof(__be32) + sizeof(__be16));
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001443 if ((validate_header_size == ECRYPTFS_VALIDATE_HEADER_SIZE)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001444 && (crypt_stat->metadata_size
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001445 < ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001446 rc = -EINVAL;
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001447 printk(KERN_WARNING "Invalid header size: [%zd]\n",
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001448 crypt_stat->metadata_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001449 }
1450 return rc;
1451}
1452
1453/**
1454 * set_default_header_data
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001455 * @crypt_stat: The cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -07001456 *
1457 * For version 0 file format; this function is only for backwards
1458 * compatibility for files created with the prior versions of
1459 * eCryptfs.
1460 */
1461static void set_default_header_data(struct ecryptfs_crypt_stat *crypt_stat)
1462{
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001463 crypt_stat->metadata_size = ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow237fead2006-10-04 02:16:22 -07001464}
1465
Tyler Hicks3aeb86e2011-03-15 14:54:00 -05001466void ecryptfs_i_size_init(const char *page_virt, struct inode *inode)
1467{
1468 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
1469 struct ecryptfs_crypt_stat *crypt_stat;
1470 u64 file_size;
1471
1472 crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
1473 mount_crypt_stat =
1474 &ecryptfs_superblock_to_private(inode->i_sb)->mount_crypt_stat;
1475 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) {
1476 file_size = i_size_read(ecryptfs_inode_to_lower(inode));
1477 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
1478 file_size += crypt_stat->metadata_size;
1479 } else
1480 file_size = get_unaligned_be64(page_virt);
1481 i_size_write(inode, (loff_t)file_size);
1482 crypt_stat->flags |= ECRYPTFS_I_SIZE_INITIALIZED;
1483}
1484
Michael Halcrow237fead2006-10-04 02:16:22 -07001485/**
1486 * ecryptfs_read_headers_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001487 * @page_virt: The virtual address into which to read the headers
1488 * @crypt_stat: The cryptographic context
1489 * @ecryptfs_dentry: The eCryptfs dentry
1490 * @validate_header_size: Whether to validate the header size while reading
Michael Halcrow237fead2006-10-04 02:16:22 -07001491 *
1492 * Read/parse the header data. The header format is detailed in the
1493 * comment block for the ecryptfs_write_headers_virt() function.
1494 *
1495 * Returns zero on success
1496 */
1497static int ecryptfs_read_headers_virt(char *page_virt,
1498 struct ecryptfs_crypt_stat *crypt_stat,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001499 struct dentry *ecryptfs_dentry,
1500 int validate_header_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001501{
1502 int rc = 0;
1503 int offset;
1504 int bytes_read;
1505
1506 ecryptfs_set_default_sizes(crypt_stat);
1507 crypt_stat->mount_crypt_stat = &ecryptfs_superblock_to_private(
1508 ecryptfs_dentry->d_sb)->mount_crypt_stat;
1509 offset = ECRYPTFS_FILE_SIZE_BYTES;
Tyler Hicks7a866172011-05-02 00:39:54 -05001510 rc = ecryptfs_validate_marker(page_virt + offset);
1511 if (rc)
Michael Halcrow237fead2006-10-04 02:16:22 -07001512 goto out;
Tyler Hicks3aeb86e2011-03-15 14:54:00 -05001513 if (!(crypt_stat->flags & ECRYPTFS_I_SIZE_INITIALIZED))
1514 ecryptfs_i_size_init(page_virt, ecryptfs_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -07001515 offset += MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
1516 rc = ecryptfs_process_flags(crypt_stat, (page_virt + offset),
1517 &bytes_read);
1518 if (rc) {
1519 ecryptfs_printk(KERN_WARNING, "Error processing flags\n");
1520 goto out;
1521 }
1522 if (crypt_stat->file_version > ECRYPTFS_SUPPORTED_FILE_VERSION) {
1523 ecryptfs_printk(KERN_WARNING, "File version is [%d]; only "
1524 "file version [%d] is supported by this "
1525 "version of eCryptfs\n",
1526 crypt_stat->file_version,
1527 ECRYPTFS_SUPPORTED_FILE_VERSION);
1528 rc = -EINVAL;
1529 goto out;
1530 }
1531 offset += bytes_read;
1532 if (crypt_stat->file_version >= 1) {
1533 rc = parse_header_metadata(crypt_stat, (page_virt + offset),
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001534 &bytes_read, validate_header_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001535 if (rc) {
1536 ecryptfs_printk(KERN_WARNING, "Error reading header "
1537 "metadata; rc = [%d]\n", rc);
1538 }
1539 offset += bytes_read;
1540 } else
1541 set_default_header_data(crypt_stat);
1542 rc = ecryptfs_parse_packet_set(crypt_stat, (page_virt + offset),
1543 ecryptfs_dentry);
1544out:
1545 return rc;
1546}
1547
1548/**
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001549 * ecryptfs_read_xattr_region
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001550 * @page_virt: The vitual address into which to read the xattr data
Michael Halcrow2ed92552007-10-16 01:28:10 -07001551 * @ecryptfs_inode: The eCryptfs inode
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001552 *
1553 * Attempts to read the crypto metadata from the extended attribute
1554 * region of the lower file.
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001555 *
1556 * Returns zero on success; non-zero on error
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001557 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001558int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001559{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001560 struct dentry *lower_dentry =
1561 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001562 ssize_t size;
1563 int rc = 0;
1564
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001565 size = ecryptfs_getxattr_lower(lower_dentry, ECRYPTFS_XATTR_NAME,
1566 page_virt, ECRYPTFS_DEFAULT_EXTENT_SIZE);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001567 if (size < 0) {
Michael Halcrow25bd8172008-02-06 01:38:35 -08001568 if (unlikely(ecryptfs_verbosity > 0))
1569 printk(KERN_INFO "Error attempting to read the [%s] "
1570 "xattr from the lower file; return value = "
1571 "[%zd]\n", ECRYPTFS_XATTR_NAME, size);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001572 rc = -EINVAL;
1573 goto out;
1574 }
1575out:
1576 return rc;
1577}
1578
Tyler Hicks778aeb42011-05-24 04:56:23 -05001579int ecryptfs_read_and_validate_xattr_region(struct dentry *dentry,
Tyler Hicks3b06b3e2011-05-24 03:49:02 -05001580 struct inode *inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001581{
Tyler Hicks778aeb42011-05-24 04:56:23 -05001582 u8 file_size[ECRYPTFS_SIZE_AND_MARKER_BYTES];
1583 u8 *marker = file_size + ECRYPTFS_FILE_SIZE_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001584 int rc;
1585
Tyler Hicks778aeb42011-05-24 04:56:23 -05001586 rc = ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry),
1587 ECRYPTFS_XATTR_NAME, file_size,
1588 ECRYPTFS_SIZE_AND_MARKER_BYTES);
1589 if (rc < ECRYPTFS_SIZE_AND_MARKER_BYTES)
1590 return rc >= 0 ? -EINVAL : rc;
1591 rc = ecryptfs_validate_marker(marker);
1592 if (!rc)
1593 ecryptfs_i_size_init(file_size, inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001594 return rc;
1595}
1596
1597/**
1598 * ecryptfs_read_metadata
1599 *
1600 * Common entry point for reading file metadata. From here, we could
1601 * retrieve the header information from the header region of the file,
1602 * the xattr region of the file, or some other repostory that is
1603 * stored separately from the file itself. The current implementation
1604 * supports retrieving the metadata information from the file contents
1605 * and from the xattr region.
Michael Halcrow237fead2006-10-04 02:16:22 -07001606 *
1607 * Returns zero if valid headers found and parsed; non-zero otherwise
1608 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001609int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -07001610{
Tim Gardnerbb450362012-01-12 16:31:55 +01001611 int rc;
1612 char *page_virt;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001613 struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -07001614 struct ecryptfs_crypt_stat *crypt_stat =
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001615 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001616 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
1617 &ecryptfs_superblock_to_private(
1618 ecryptfs_dentry->d_sb)->mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -07001619
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001620 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
1621 mount_crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -07001622 /* Read the first page from the underlying file */
Tyler Hicks30632872011-05-24 05:11:12 -05001623 page_virt = kmem_cache_alloc(ecryptfs_header_cache, GFP_USER);
Michael Halcrow237fead2006-10-04 02:16:22 -07001624 if (!page_virt) {
1625 rc = -ENOMEM;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001626 printk(KERN_ERR "%s: Unable to allocate page_virt\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001627 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001628 goto out;
1629 }
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001630 rc = ecryptfs_read_lower(page_virt, 0, crypt_stat->extent_size,
1631 ecryptfs_inode);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001632 if (rc >= 0)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001633 rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1634 ecryptfs_dentry,
1635 ECRYPTFS_VALIDATE_HEADER_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -07001636 if (rc) {
Tim Gardnerbb450362012-01-12 16:31:55 +01001637 /* metadata is not in the file header, so try xattrs */
Tyler Hicks1984c232010-02-10 23:17:44 -06001638 memset(page_virt, 0, PAGE_CACHE_SIZE);
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001639 rc = ecryptfs_read_xattr_region(page_virt, ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001640 if (rc) {
1641 printk(KERN_DEBUG "Valid eCryptfs headers not found in "
Tim Gardner30373dc2012-01-12 16:31:55 +01001642 "file header region or xattr region, inode %lu\n",
1643 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001644 rc = -EINVAL;
1645 goto out;
1646 }
1647 rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1648 ecryptfs_dentry,
1649 ECRYPTFS_DONT_VALIDATE_HEADER_SIZE);
1650 if (rc) {
1651 printk(KERN_DEBUG "Valid eCryptfs headers not found in "
Tim Gardner30373dc2012-01-12 16:31:55 +01001652 "file xattr region either, inode %lu\n",
1653 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001654 rc = -EINVAL;
1655 }
1656 if (crypt_stat->mount_crypt_stat->flags
1657 & ECRYPTFS_XATTR_METADATA_ENABLED) {
1658 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
1659 } else {
1660 printk(KERN_WARNING "Attempt to access file with "
1661 "crypto metadata only in the extended attribute "
1662 "region, but eCryptfs was mounted without "
1663 "xattr support enabled. eCryptfs will not treat "
Tim Gardner30373dc2012-01-12 16:31:55 +01001664 "this like an encrypted file, inode %lu\n",
1665 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001666 rc = -EINVAL;
1667 }
Michael Halcrow237fead2006-10-04 02:16:22 -07001668 }
1669out:
1670 if (page_virt) {
1671 memset(page_virt, 0, PAGE_CACHE_SIZE);
Tyler Hicks30632872011-05-24 05:11:12 -05001672 kmem_cache_free(ecryptfs_header_cache, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001673 }
1674 return rc;
1675}
1676
1677/**
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001678 * ecryptfs_encrypt_filename - encrypt filename
1679 *
1680 * CBC-encrypts the filename. We do not want to encrypt the same
1681 * filename with the same key and IV, which may happen with hard
1682 * links, so we prepend random bits to each filename.
1683 *
1684 * Returns zero on success; non-zero otherwise
1685 */
1686static int
1687ecryptfs_encrypt_filename(struct ecryptfs_filename *filename,
1688 struct ecryptfs_crypt_stat *crypt_stat,
1689 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
1690{
1691 int rc = 0;
1692
1693 filename->encrypted_filename = NULL;
1694 filename->encrypted_filename_size = 0;
1695 if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
1696 || (mount_crypt_stat && (mount_crypt_stat->flags
1697 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
1698 size_t packet_size;
1699 size_t remaining_bytes;
1700
1701 rc = ecryptfs_write_tag_70_packet(
1702 NULL, NULL,
1703 &filename->encrypted_filename_size,
1704 mount_crypt_stat, NULL,
1705 filename->filename_size);
1706 if (rc) {
1707 printk(KERN_ERR "%s: Error attempting to get packet "
1708 "size for tag 72; rc = [%d]\n", __func__,
1709 rc);
1710 filename->encrypted_filename_size = 0;
1711 goto out;
1712 }
1713 filename->encrypted_filename =
1714 kmalloc(filename->encrypted_filename_size, GFP_KERNEL);
1715 if (!filename->encrypted_filename) {
1716 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowdf261c52009-01-06 14:42:02 -08001717 "to kmalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001718 filename->encrypted_filename_size);
1719 rc = -ENOMEM;
1720 goto out;
1721 }
1722 remaining_bytes = filename->encrypted_filename_size;
1723 rc = ecryptfs_write_tag_70_packet(filename->encrypted_filename,
1724 &remaining_bytes,
1725 &packet_size,
1726 mount_crypt_stat,
1727 filename->filename,
1728 filename->filename_size);
1729 if (rc) {
1730 printk(KERN_ERR "%s: Error attempting to generate "
1731 "tag 70 packet; rc = [%d]\n", __func__,
1732 rc);
1733 kfree(filename->encrypted_filename);
1734 filename->encrypted_filename = NULL;
1735 filename->encrypted_filename_size = 0;
1736 goto out;
1737 }
1738 filename->encrypted_filename_size = packet_size;
1739 } else {
1740 printk(KERN_ERR "%s: No support for requested filename "
1741 "encryption method in this release\n", __func__);
Tyler Hicksdf6ad332009-08-21 04:27:46 -05001742 rc = -EOPNOTSUPP;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001743 goto out;
1744 }
1745out:
1746 return rc;
1747}
1748
1749static int ecryptfs_copy_filename(char **copied_name, size_t *copied_name_size,
1750 const char *name, size_t name_size)
1751{
1752 int rc = 0;
1753
Tyler Hicksfd9fc842009-02-06 18:06:51 -06001754 (*copied_name) = kmalloc((name_size + 1), GFP_KERNEL);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001755 if (!(*copied_name)) {
1756 rc = -ENOMEM;
1757 goto out;
1758 }
1759 memcpy((void *)(*copied_name), (void *)name, name_size);
1760 (*copied_name)[(name_size)] = '\0'; /* Only for convenience
1761 * in printing out the
1762 * string in debug
1763 * messages */
Tyler Hicksfd9fc842009-02-06 18:06:51 -06001764 (*copied_name_size) = name_size;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001765out:
1766 return rc;
1767}
1768
1769/**
Michael Halcrowf4aad162007-10-16 01:27:53 -07001770 * ecryptfs_process_key_cipher - Perform key cipher initialization.
Michael Halcrow237fead2006-10-04 02:16:22 -07001771 * @key_tfm: Crypto context for key material, set by this function
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001772 * @cipher_name: Name of the cipher
1773 * @key_size: Size of the key in bytes
Michael Halcrow237fead2006-10-04 02:16:22 -07001774 *
1775 * Returns zero on success. Any crypto_tfm structs allocated here
1776 * should be released by other functions, such as on a superblock put
1777 * event, regardless of whether this function succeeds for fails.
1778 */
Michael Halcrowcd9d67d2007-10-16 01:28:04 -07001779static int
Michael Halcrowf4aad162007-10-16 01:27:53 -07001780ecryptfs_process_key_cipher(struct crypto_blkcipher **key_tfm,
1781 char *cipher_name, size_t *key_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001782{
1783 char dummy_key[ECRYPTFS_MAX_KEY_BYTES];
Dan Carpenterece550f2010-01-19 12:34:32 +03001784 char *full_alg_name = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001785 int rc;
1786
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001787 *key_tfm = NULL;
1788 if (*key_size > ECRYPTFS_MAX_KEY_BYTES) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001789 rc = -EINVAL;
Michael Halcrowdf261c52009-01-06 14:42:02 -08001790 printk(KERN_ERR "Requested key size is [%zd] bytes; maximum "
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001791 "allowable is [%d]\n", *key_size, ECRYPTFS_MAX_KEY_BYTES);
Michael Halcrow237fead2006-10-04 02:16:22 -07001792 goto out;
1793 }
Michael Halcrow8bba0662006-10-30 22:07:18 -08001794 rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name, cipher_name,
1795 "ecb");
1796 if (rc)
1797 goto out;
1798 *key_tfm = crypto_alloc_blkcipher(full_alg_name, 0, CRYPTO_ALG_ASYNC);
Michael Halcrow8bba0662006-10-30 22:07:18 -08001799 if (IS_ERR(*key_tfm)) {
1800 rc = PTR_ERR(*key_tfm);
Michael Halcrow237fead2006-10-04 02:16:22 -07001801 printk(KERN_ERR "Unable to allocate crypto cipher with name "
Dave Hansen38268492009-08-27 09:47:07 -07001802 "[%s]; rc = [%d]\n", full_alg_name, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001803 goto out;
1804 }
Michael Halcrow8bba0662006-10-30 22:07:18 -08001805 crypto_blkcipher_set_flags(*key_tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1806 if (*key_size == 0) {
1807 struct blkcipher_alg *alg = crypto_blkcipher_alg(*key_tfm);
1808
1809 *key_size = alg->max_keysize;
1810 }
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001811 get_random_bytes(dummy_key, *key_size);
Michael Halcrow8bba0662006-10-30 22:07:18 -08001812 rc = crypto_blkcipher_setkey(*key_tfm, dummy_key, *key_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001813 if (rc) {
Michael Halcrowdf261c52009-01-06 14:42:02 -08001814 printk(KERN_ERR "Error attempting to set key of size [%zd] for "
Dave Hansen38268492009-08-27 09:47:07 -07001815 "cipher [%s]; rc = [%d]\n", *key_size, full_alg_name,
1816 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001817 rc = -EINVAL;
1818 goto out;
1819 }
1820out:
Dan Carpenterece550f2010-01-19 12:34:32 +03001821 kfree(full_alg_name);
Michael Halcrow237fead2006-10-04 02:16:22 -07001822 return rc;
1823}
Michael Halcrowf4aad162007-10-16 01:27:53 -07001824
1825struct kmem_cache *ecryptfs_key_tfm_cache;
Adrian Bunk7896b632008-02-06 01:38:32 -08001826static struct list_head key_tfm_list;
Eric Sandeenaf440f52008-02-06 01:38:37 -08001827struct mutex key_tfm_list_mutex;
Michael Halcrowf4aad162007-10-16 01:27:53 -07001828
Jerome Marchand7371a382010-08-17 17:24:05 +02001829int __init ecryptfs_init_crypto(void)
Michael Halcrowf4aad162007-10-16 01:27:53 -07001830{
1831 mutex_init(&key_tfm_list_mutex);
1832 INIT_LIST_HEAD(&key_tfm_list);
1833 return 0;
1834}
1835
Eric Sandeenaf440f52008-02-06 01:38:37 -08001836/**
1837 * ecryptfs_destroy_crypto - free all cached key_tfms on key_tfm_list
1838 *
1839 * Called only at module unload time
1840 */
Michael Halcrowfcd12832007-10-16 01:28:01 -07001841int ecryptfs_destroy_crypto(void)
Michael Halcrowf4aad162007-10-16 01:27:53 -07001842{
1843 struct ecryptfs_key_tfm *key_tfm, *key_tfm_tmp;
1844
1845 mutex_lock(&key_tfm_list_mutex);
1846 list_for_each_entry_safe(key_tfm, key_tfm_tmp, &key_tfm_list,
1847 key_tfm_list) {
1848 list_del(&key_tfm->key_tfm_list);
1849 if (key_tfm->key_tfm)
1850 crypto_free_blkcipher(key_tfm->key_tfm);
1851 kmem_cache_free(ecryptfs_key_tfm_cache, key_tfm);
1852 }
1853 mutex_unlock(&key_tfm_list_mutex);
1854 return 0;
1855}
1856
1857int
1858ecryptfs_add_new_key_tfm(struct ecryptfs_key_tfm **key_tfm, char *cipher_name,
1859 size_t key_size)
1860{
1861 struct ecryptfs_key_tfm *tmp_tfm;
1862 int rc = 0;
1863
Eric Sandeenaf440f52008-02-06 01:38:37 -08001864 BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1865
Michael Halcrowf4aad162007-10-16 01:27:53 -07001866 tmp_tfm = kmem_cache_alloc(ecryptfs_key_tfm_cache, GFP_KERNEL);
1867 if (key_tfm != NULL)
1868 (*key_tfm) = tmp_tfm;
1869 if (!tmp_tfm) {
1870 rc = -ENOMEM;
1871 printk(KERN_ERR "Error attempting to allocate from "
1872 "ecryptfs_key_tfm_cache\n");
1873 goto out;
1874 }
1875 mutex_init(&tmp_tfm->key_tfm_mutex);
1876 strncpy(tmp_tfm->cipher_name, cipher_name,
1877 ECRYPTFS_MAX_CIPHER_NAME_SIZE);
Eric Sandeenb8862902007-12-22 14:03:24 -08001878 tmp_tfm->cipher_name[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
Michael Halcrowf4aad162007-10-16 01:27:53 -07001879 tmp_tfm->key_size = key_size;
Michael Halcrow5dda6992007-10-16 01:28:06 -07001880 rc = ecryptfs_process_key_cipher(&tmp_tfm->key_tfm,
1881 tmp_tfm->cipher_name,
1882 &tmp_tfm->key_size);
1883 if (rc) {
Michael Halcrowf4aad162007-10-16 01:27:53 -07001884 printk(KERN_ERR "Error attempting to initialize key TFM "
1885 "cipher with name = [%s]; rc = [%d]\n",
1886 tmp_tfm->cipher_name, rc);
1887 kmem_cache_free(ecryptfs_key_tfm_cache, tmp_tfm);
1888 if (key_tfm != NULL)
1889 (*key_tfm) = NULL;
1890 goto out;
1891 }
Michael Halcrowf4aad162007-10-16 01:27:53 -07001892 list_add(&tmp_tfm->key_tfm_list, &key_tfm_list);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001893out:
1894 return rc;
1895}
1896
Eric Sandeenaf440f52008-02-06 01:38:37 -08001897/**
1898 * ecryptfs_tfm_exists - Search for existing tfm for cipher_name.
1899 * @cipher_name: the name of the cipher to search for
1900 * @key_tfm: set to corresponding tfm if found
1901 *
1902 * Searches for cached key_tfm matching @cipher_name
1903 * Must be called with &key_tfm_list_mutex held
1904 * Returns 1 if found, with @key_tfm set
1905 * Returns 0 if not found, with @key_tfm set to NULL
1906 */
1907int ecryptfs_tfm_exists(char *cipher_name, struct ecryptfs_key_tfm **key_tfm)
1908{
1909 struct ecryptfs_key_tfm *tmp_key_tfm;
1910
1911 BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1912
1913 list_for_each_entry(tmp_key_tfm, &key_tfm_list, key_tfm_list) {
1914 if (strcmp(tmp_key_tfm->cipher_name, cipher_name) == 0) {
1915 if (key_tfm)
1916 (*key_tfm) = tmp_key_tfm;
1917 return 1;
1918 }
1919 }
1920 if (key_tfm)
1921 (*key_tfm) = NULL;
1922 return 0;
1923}
1924
1925/**
1926 * ecryptfs_get_tfm_and_mutex_for_cipher_name
1927 *
1928 * @tfm: set to cached tfm found, or new tfm created
1929 * @tfm_mutex: set to mutex for cached tfm found, or new tfm created
1930 * @cipher_name: the name of the cipher to search for and/or add
1931 *
1932 * Sets pointers to @tfm & @tfm_mutex matching @cipher_name.
1933 * Searches for cached item first, and creates new if not found.
1934 * Returns 0 on success, non-zero if adding new cipher failed
1935 */
Michael Halcrowf4aad162007-10-16 01:27:53 -07001936int ecryptfs_get_tfm_and_mutex_for_cipher_name(struct crypto_blkcipher **tfm,
1937 struct mutex **tfm_mutex,
1938 char *cipher_name)
1939{
1940 struct ecryptfs_key_tfm *key_tfm;
1941 int rc = 0;
1942
1943 (*tfm) = NULL;
1944 (*tfm_mutex) = NULL;
Eric Sandeenaf440f52008-02-06 01:38:37 -08001945
Michael Halcrowf4aad162007-10-16 01:27:53 -07001946 mutex_lock(&key_tfm_list_mutex);
Eric Sandeenaf440f52008-02-06 01:38:37 -08001947 if (!ecryptfs_tfm_exists(cipher_name, &key_tfm)) {
1948 rc = ecryptfs_add_new_key_tfm(&key_tfm, cipher_name, 0);
1949 if (rc) {
1950 printk(KERN_ERR "Error adding new key_tfm to list; "
1951 "rc = [%d]\n", rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001952 goto out;
1953 }
1954 }
Michael Halcrowf4aad162007-10-16 01:27:53 -07001955 (*tfm) = key_tfm->key_tfm;
1956 (*tfm_mutex) = &key_tfm->key_tfm_mutex;
1957out:
Cyrill Gorcunov71fd5172008-05-23 13:04:20 -07001958 mutex_unlock(&key_tfm_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001959 return rc;
1960}
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001961
1962/* 64 characters forming a 6-bit target field */
1963static unsigned char *portable_filename_chars = ("-.0123456789ABCD"
1964 "EFGHIJKLMNOPQRST"
1965 "UVWXYZabcdefghij"
1966 "klmnopqrstuvwxyz");
1967
1968/* We could either offset on every reverse map or just pad some 0x00's
1969 * at the front here */
Tyler Hicks0f751e62011-11-23 11:31:24 -06001970static const unsigned char filename_rev_map[256] = {
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001971 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 7 */
1972 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 15 */
1973 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 23 */
1974 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 31 */
1975 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 39 */
1976 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, /* 47 */
1977 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, /* 55 */
1978 0x0A, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 63 */
1979 0x00, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, /* 71 */
1980 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, /* 79 */
1981 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, /* 87 */
1982 0x23, 0x24, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, /* 95 */
1983 0x00, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, /* 103 */
1984 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, /* 111 */
1985 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, /* 119 */
Tyler Hicks0f751e62011-11-23 11:31:24 -06001986 0x3D, 0x3E, 0x3F /* 123 - 255 initialized to 0x00 */
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001987};
1988
1989/**
1990 * ecryptfs_encode_for_filename
1991 * @dst: Destination location for encoded filename
1992 * @dst_size: Size of the encoded filename in bytes
1993 * @src: Source location for the filename to encode
1994 * @src_size: Size of the source in bytes
1995 */
Cong Ding37028752012-12-07 22:21:56 +00001996static void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001997 unsigned char *src, size_t src_size)
1998{
1999 size_t num_blocks;
2000 size_t block_num = 0;
2001 size_t dst_offset = 0;
2002 unsigned char last_block[3];
2003
2004 if (src_size == 0) {
2005 (*dst_size) = 0;
2006 goto out;
2007 }
2008 num_blocks = (src_size / 3);
2009 if ((src_size % 3) == 0) {
2010 memcpy(last_block, (&src[src_size - 3]), 3);
2011 } else {
2012 num_blocks++;
2013 last_block[2] = 0x00;
2014 switch (src_size % 3) {
2015 case 1:
2016 last_block[0] = src[src_size - 1];
2017 last_block[1] = 0x00;
2018 break;
2019 case 2:
2020 last_block[0] = src[src_size - 2];
2021 last_block[1] = src[src_size - 1];
2022 }
2023 }
2024 (*dst_size) = (num_blocks * 4);
2025 if (!dst)
2026 goto out;
2027 while (block_num < num_blocks) {
2028 unsigned char *src_block;
2029 unsigned char dst_block[4];
2030
2031 if (block_num == (num_blocks - 1))
2032 src_block = last_block;
2033 else
2034 src_block = &src[block_num * 3];
2035 dst_block[0] = ((src_block[0] >> 2) & 0x3F);
2036 dst_block[1] = (((src_block[0] << 4) & 0x30)
2037 | ((src_block[1] >> 4) & 0x0F));
2038 dst_block[2] = (((src_block[1] << 2) & 0x3C)
2039 | ((src_block[2] >> 6) & 0x03));
2040 dst_block[3] = (src_block[2] & 0x3F);
2041 dst[dst_offset++] = portable_filename_chars[dst_block[0]];
2042 dst[dst_offset++] = portable_filename_chars[dst_block[1]];
2043 dst[dst_offset++] = portable_filename_chars[dst_block[2]];
2044 dst[dst_offset++] = portable_filename_chars[dst_block[3]];
2045 block_num++;
2046 }
2047out:
2048 return;
2049}
2050
Tyler Hicks4a266202011-11-05 13:45:08 -04002051static size_t ecryptfs_max_decoded_size(size_t encoded_size)
2052{
2053 /* Not exact; conservatively long. Every block of 4
2054 * encoded characters decodes into a block of 3
2055 * decoded characters. This segment of code provides
2056 * the caller with the maximum amount of allocated
2057 * space that @dst will need to point to in a
2058 * subsequent call. */
2059 return ((encoded_size + 1) * 3) / 4;
2060}
2061
Michael Halcrow71c11c32009-01-06 14:42:05 -08002062/**
2063 * ecryptfs_decode_from_filename
2064 * @dst: If NULL, this function only sets @dst_size and returns. If
2065 * non-NULL, this function decodes the encoded octets in @src
2066 * into the memory that @dst points to.
2067 * @dst_size: Set to the size of the decoded string.
2068 * @src: The encoded set of octets to decode.
2069 * @src_size: The size of the encoded set of octets to decode.
2070 */
2071static void
2072ecryptfs_decode_from_filename(unsigned char *dst, size_t *dst_size,
2073 const unsigned char *src, size_t src_size)
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002074{
2075 u8 current_bit_offset = 0;
2076 size_t src_byte_offset = 0;
2077 size_t dst_byte_offset = 0;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002078
2079 if (dst == NULL) {
Tyler Hicks4a266202011-11-05 13:45:08 -04002080 (*dst_size) = ecryptfs_max_decoded_size(src_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002081 goto out;
2082 }
2083 while (src_byte_offset < src_size) {
2084 unsigned char src_byte =
2085 filename_rev_map[(int)src[src_byte_offset]];
2086
2087 switch (current_bit_offset) {
2088 case 0:
2089 dst[dst_byte_offset] = (src_byte << 2);
2090 current_bit_offset = 6;
2091 break;
2092 case 6:
2093 dst[dst_byte_offset++] |= (src_byte >> 4);
2094 dst[dst_byte_offset] = ((src_byte & 0xF)
2095 << 4);
2096 current_bit_offset = 4;
2097 break;
2098 case 4:
2099 dst[dst_byte_offset++] |= (src_byte >> 2);
2100 dst[dst_byte_offset] = (src_byte << 6);
2101 current_bit_offset = 2;
2102 break;
2103 case 2:
2104 dst[dst_byte_offset++] |= (src_byte);
2105 dst[dst_byte_offset] = 0;
2106 current_bit_offset = 0;
2107 break;
2108 }
2109 src_byte_offset++;
2110 }
2111 (*dst_size) = dst_byte_offset;
2112out:
Michael Halcrow71c11c32009-01-06 14:42:05 -08002113 return;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002114}
2115
2116/**
2117 * ecryptfs_encrypt_and_encode_filename - converts a plaintext file name to cipher text
2118 * @crypt_stat: The crypt_stat struct associated with the file anem to encode
2119 * @name: The plaintext name
2120 * @length: The length of the plaintext
2121 * @encoded_name: The encypted name
2122 *
2123 * Encrypts and encodes a filename into something that constitutes a
2124 * valid filename for a filesystem, with printable characters.
2125 *
2126 * We assume that we have a properly initialized crypto context,
2127 * pointed to by crypt_stat->tfm.
2128 *
2129 * Returns zero on success; non-zero on otherwise
2130 */
2131int ecryptfs_encrypt_and_encode_filename(
2132 char **encoded_name,
2133 size_t *encoded_name_size,
2134 struct ecryptfs_crypt_stat *crypt_stat,
2135 struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
2136 const char *name, size_t name_size)
2137{
2138 size_t encoded_name_no_prefix_size;
2139 int rc = 0;
2140
2141 (*encoded_name) = NULL;
2142 (*encoded_name_size) = 0;
2143 if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCRYPT_FILENAMES))
2144 || (mount_crypt_stat && (mount_crypt_stat->flags
2145 & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES))) {
2146 struct ecryptfs_filename *filename;
2147
2148 filename = kzalloc(sizeof(*filename), GFP_KERNEL);
2149 if (!filename) {
2150 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowa8f12862009-01-06 14:42:03 -08002151 "to kzalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002152 sizeof(*filename));
2153 rc = -ENOMEM;
2154 goto out;
2155 }
2156 filename->filename = (char *)name;
2157 filename->filename_size = name_size;
2158 rc = ecryptfs_encrypt_filename(filename, crypt_stat,
2159 mount_crypt_stat);
2160 if (rc) {
2161 printk(KERN_ERR "%s: Error attempting to encrypt "
2162 "filename; rc = [%d]\n", __func__, rc);
2163 kfree(filename);
2164 goto out;
2165 }
2166 ecryptfs_encode_for_filename(
2167 NULL, &encoded_name_no_prefix_size,
2168 filename->encrypted_filename,
2169 filename->encrypted_filename_size);
2170 if ((crypt_stat && (crypt_stat->flags
2171 & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2172 || (mount_crypt_stat
2173 && (mount_crypt_stat->flags
2174 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)))
2175 (*encoded_name_size) =
2176 (ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2177 + encoded_name_no_prefix_size);
2178 else
2179 (*encoded_name_size) =
2180 (ECRYPTFS_FEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2181 + encoded_name_no_prefix_size);
2182 (*encoded_name) = kmalloc((*encoded_name_size) + 1, GFP_KERNEL);
2183 if (!(*encoded_name)) {
2184 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowa8f12862009-01-06 14:42:03 -08002185 "to kzalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002186 (*encoded_name_size));
2187 rc = -ENOMEM;
2188 kfree(filename->encrypted_filename);
2189 kfree(filename);
2190 goto out;
2191 }
2192 if ((crypt_stat && (crypt_stat->flags
2193 & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2194 || (mount_crypt_stat
2195 && (mount_crypt_stat->flags
2196 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
2197 memcpy((*encoded_name),
2198 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2199 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE);
2200 ecryptfs_encode_for_filename(
2201 ((*encoded_name)
2202 + ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE),
2203 &encoded_name_no_prefix_size,
2204 filename->encrypted_filename,
2205 filename->encrypted_filename_size);
2206 (*encoded_name_size) =
2207 (ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2208 + encoded_name_no_prefix_size);
2209 (*encoded_name)[(*encoded_name_size)] = '\0';
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002210 } else {
Tyler Hicksdf6ad332009-08-21 04:27:46 -05002211 rc = -EOPNOTSUPP;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002212 }
2213 if (rc) {
2214 printk(KERN_ERR "%s: Error attempting to encode "
2215 "encrypted filename; rc = [%d]\n", __func__,
2216 rc);
2217 kfree((*encoded_name));
2218 (*encoded_name) = NULL;
2219 (*encoded_name_size) = 0;
2220 }
2221 kfree(filename->encrypted_filename);
2222 kfree(filename);
2223 } else {
2224 rc = ecryptfs_copy_filename(encoded_name,
2225 encoded_name_size,
2226 name, name_size);
2227 }
2228out:
2229 return rc;
2230}
2231
2232/**
2233 * ecryptfs_decode_and_decrypt_filename - converts the encoded cipher text name to decoded plaintext
2234 * @plaintext_name: The plaintext name
2235 * @plaintext_name_size: The plaintext name size
2236 * @ecryptfs_dir_dentry: eCryptfs directory dentry
2237 * @name: The filename in cipher text
2238 * @name_size: The cipher text name size
2239 *
2240 * Decrypts and decodes the filename.
2241 *
2242 * Returns zero on error; non-zero otherwise
2243 */
2244int ecryptfs_decode_and_decrypt_filename(char **plaintext_name,
2245 size_t *plaintext_name_size,
Al Viro0747fdb2013-06-16 20:05:38 +04002246 struct super_block *sb,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002247 const char *name, size_t name_size)
2248{
Tyler Hicks2aac0cf2009-03-20 02:23:57 -05002249 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
Al Viro0747fdb2013-06-16 20:05:38 +04002250 &ecryptfs_superblock_to_private(sb)->mount_crypt_stat;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002251 char *decoded_name;
2252 size_t decoded_name_size;
2253 size_t packet_size;
2254 int rc = 0;
2255
Tyler Hicks2aac0cf2009-03-20 02:23:57 -05002256 if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
2257 && !(mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
2258 && (name_size > ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE)
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002259 && (strncmp(name, ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2260 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE) == 0)) {
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002261 const char *orig_name = name;
2262 size_t orig_name_size = name_size;
2263
2264 name += ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2265 name_size -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
Michael Halcrow71c11c32009-01-06 14:42:05 -08002266 ecryptfs_decode_from_filename(NULL, &decoded_name_size,
2267 name, name_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002268 decoded_name = kmalloc(decoded_name_size, GFP_KERNEL);
2269 if (!decoded_name) {
2270 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowdf261c52009-01-06 14:42:02 -08002271 "to kmalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002272 decoded_name_size);
2273 rc = -ENOMEM;
2274 goto out;
2275 }
Michael Halcrow71c11c32009-01-06 14:42:05 -08002276 ecryptfs_decode_from_filename(decoded_name, &decoded_name_size,
2277 name, name_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002278 rc = ecryptfs_parse_tag_70_packet(plaintext_name,
2279 plaintext_name_size,
2280 &packet_size,
2281 mount_crypt_stat,
2282 decoded_name,
2283 decoded_name_size);
2284 if (rc) {
2285 printk(KERN_INFO "%s: Could not parse tag 70 packet "
2286 "from filename; copying through filename "
2287 "as-is\n", __func__);
2288 rc = ecryptfs_copy_filename(plaintext_name,
2289 plaintext_name_size,
2290 orig_name, orig_name_size);
2291 goto out_free;
2292 }
2293 } else {
2294 rc = ecryptfs_copy_filename(plaintext_name,
2295 plaintext_name_size,
2296 name, name_size);
2297 goto out;
2298 }
2299out_free:
2300 kfree(decoded_name);
2301out:
2302 return rc;
2303}
Tyler Hicks4a266202011-11-05 13:45:08 -04002304
2305#define ENC_NAME_MAX_BLOCKLEN_8_OR_16 143
2306
2307int ecryptfs_set_f_namelen(long *namelen, long lower_namelen,
2308 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
2309{
2310 struct blkcipher_desc desc;
2311 struct mutex *tfm_mutex;
2312 size_t cipher_blocksize;
2313 int rc;
2314
2315 if (!(mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)) {
2316 (*namelen) = lower_namelen;
2317 return 0;
2318 }
2319
2320 rc = ecryptfs_get_tfm_and_mutex_for_cipher_name(&desc.tfm, &tfm_mutex,
2321 mount_crypt_stat->global_default_fn_cipher_name);
2322 if (unlikely(rc)) {
2323 (*namelen) = 0;
2324 return rc;
2325 }
2326
2327 mutex_lock(tfm_mutex);
2328 cipher_blocksize = crypto_blkcipher_blocksize(desc.tfm);
2329 mutex_unlock(tfm_mutex);
2330
2331 /* Return an exact amount for the common cases */
2332 if (lower_namelen == NAME_MAX
2333 && (cipher_blocksize == 8 || cipher_blocksize == 16)) {
2334 (*namelen) = ENC_NAME_MAX_BLOCKLEN_8_OR_16;
2335 return 0;
2336 }
2337
2338 /* Return a safe estimate for the uncommon cases */
2339 (*namelen) = lower_namelen;
2340 (*namelen) -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2341 /* Since this is the max decoded size, subtract 1 "decoded block" len */
2342 (*namelen) = ecryptfs_max_decoded_size(*namelen) - 3;
2343 (*namelen) -= ECRYPTFS_TAG_70_MAX_METADATA_SIZE;
2344 (*namelen) -= ECRYPTFS_FILENAME_MIN_RANDOM_PREPEND_BYTES;
2345 /* Worst case is that the filename is padded nearly a full block size */
2346 (*namelen) -= cipher_blocksize - 1;
2347
2348 if ((*namelen) < 0)
2349 (*namelen) = 0;
2350
2351 return 0;
2352}