blob: 609efc01d5c206915a4e62c9daef458adc1aecbc [file] [log] [blame]
Michael Halcrow237fead2006-10-04 02:16:22 -07001/**
2 * eCryptfs: Linux filesystem encryption layer
3 *
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08006 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -07007 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8 * Michael C. Thompson <mcthomps@us.ibm.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 * 02111-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/mount.h>
28#include <linux/pagemap.h>
29#include <linux/random.h>
30#include <linux/compiler.h>
31#include <linux/key.h>
32#include <linux/namei.h>
33#include <linux/crypto.h>
34#include <linux/file.h>
35#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Harvey Harrison29335c62008-07-23 21:30:06 -070037#include <asm/unaligned.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070038#include "ecryptfs_kernel.h"
39
Tyler Hicks00a69942013-04-05 23:26:22 -070040#define DECRYPT 0
41#define ENCRYPT 1
42
Tyler Hicksa8ca90e2013-04-05 23:37:51 -070043static int crypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
Tyler Hicks28916d12013-04-15 16:37:27 -070044 struct page *dst_page, struct page *src_page,
Tyler Hicksa8ca90e2013-04-05 23:37:51 -070045 int offset, int size, unsigned char *iv, int op);
Michael Halcrow237fead2006-10-04 02:16:22 -070046
47/**
48 * ecryptfs_to_hex
49 * @dst: Buffer to take hex character representation of contents of
50 * src; must be at least of size (src_size * 2)
51 * @src: Buffer to be converted to a hex string respresentation
52 * @src_size: number of bytes to convert
53 */
54void ecryptfs_to_hex(char *dst, char *src, size_t src_size)
55{
56 int x;
57
58 for (x = 0; x < src_size; x++)
59 sprintf(&dst[x * 2], "%.2x", (unsigned char)src[x]);
60}
61
62/**
63 * ecryptfs_from_hex
64 * @dst: Buffer to take the bytes from src hex; must be at least of
65 * size (src_size / 2)
66 * @src: Buffer to be converted from a hex string respresentation to raw value
67 * @dst_size: size of dst buffer, or number of hex characters pairs to convert
68 */
69void ecryptfs_from_hex(char *dst, char *src, int dst_size)
70{
71 int x;
72 char tmp[3] = { 0, };
73
74 for (x = 0; x < dst_size; x++) {
75 tmp[0] = src[x * 2];
76 tmp[1] = src[x * 2 + 1];
77 dst[x] = (unsigned char)simple_strtol(tmp, NULL, 16);
78 }
79}
80
81/**
82 * ecryptfs_calculate_md5 - calculates the md5 of @src
83 * @dst: Pointer to 16 bytes of allocated memory
84 * @crypt_stat: Pointer to crypt_stat struct for the current inode
85 * @src: Data to be md5'd
86 * @len: Length of @src
87 *
88 * Uses the allocated crypto context that crypt_stat references to
89 * generate the MD5 sum of the contents of src.
90 */
91static int ecryptfs_calculate_md5(char *dst,
92 struct ecryptfs_crypt_stat *crypt_stat,
93 char *src, int len)
94{
Michael Halcrow237fead2006-10-04 02:16:22 -070095 struct scatterlist sg;
Michael Halcrow565d9722006-10-30 22:07:17 -080096 struct hash_desc desc = {
97 .tfm = crypt_stat->hash_tfm,
98 .flags = CRYPTO_TFM_REQ_MAY_SLEEP
99 };
100 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700101
Michael Halcrow565d9722006-10-30 22:07:17 -0800102 mutex_lock(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700103 sg_init_one(&sg, (u8 *)src, len);
Michael Halcrow565d9722006-10-30 22:07:17 -0800104 if (!desc.tfm) {
105 desc.tfm = crypto_alloc_hash(ECRYPTFS_DEFAULT_HASH, 0,
106 CRYPTO_ALG_ASYNC);
107 if (IS_ERR(desc.tfm)) {
108 rc = PTR_ERR(desc.tfm);
Michael Halcrow237fead2006-10-04 02:16:22 -0700109 ecryptfs_printk(KERN_ERR, "Error attempting to "
Michael Halcrow565d9722006-10-30 22:07:17 -0800110 "allocate crypto context; rc = [%d]\n",
111 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700112 goto out;
113 }
Michael Halcrow565d9722006-10-30 22:07:17 -0800114 crypt_stat->hash_tfm = desc.tfm;
Michael Halcrow237fead2006-10-04 02:16:22 -0700115 }
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800116 rc = crypto_hash_init(&desc);
117 if (rc) {
118 printk(KERN_ERR
119 "%s: Error initializing crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700120 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800121 goto out;
122 }
123 rc = crypto_hash_update(&desc, &sg, len);
124 if (rc) {
125 printk(KERN_ERR
126 "%s: Error updating crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700127 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800128 goto out;
129 }
130 rc = crypto_hash_final(&desc, dst);
131 if (rc) {
132 printk(KERN_ERR
133 "%s: Error finalizing crypto hash; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700134 __func__, rc);
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800135 goto out;
136 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700137out:
Michael Halcrow8a29f2b2007-11-05 14:51:04 -0800138 mutex_unlock(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700139 return rc;
140}
141
Michael Halcrowcd9d67d2007-10-16 01:28:04 -0700142static int ecryptfs_crypto_api_algify_cipher_name(char **algified_name,
143 char *cipher_name,
144 char *chaining_modifier)
Michael Halcrow8bba0662006-10-30 22:07:18 -0800145{
146 int cipher_name_len = strlen(cipher_name);
147 int chaining_modifier_len = strlen(chaining_modifier);
148 int algified_name_len;
149 int rc;
150
151 algified_name_len = (chaining_modifier_len + cipher_name_len + 3);
152 (*algified_name) = kmalloc(algified_name_len, GFP_KERNEL);
Michael Halcrow7bd473f2006-11-02 22:06:56 -0800153 if (!(*algified_name)) {
Michael Halcrow8bba0662006-10-30 22:07:18 -0800154 rc = -ENOMEM;
155 goto out;
156 }
157 snprintf((*algified_name), algified_name_len, "%s(%s)",
158 chaining_modifier, cipher_name);
159 rc = 0;
160out:
161 return rc;
162}
163
Michael Halcrow237fead2006-10-04 02:16:22 -0700164/**
165 * ecryptfs_derive_iv
166 * @iv: destination for the derived iv vale
167 * @crypt_stat: Pointer to crypt_stat struct for the current inode
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700168 * @offset: Offset of the extent whose IV we are to derive
Michael Halcrow237fead2006-10-04 02:16:22 -0700169 *
170 * Generate the initialization vector from the given root IV and page
171 * offset.
172 *
173 * Returns zero on success; non-zero on error.
174 */
Michael Halcrowa34f60f2009-01-06 14:41:58 -0800175int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat,
176 loff_t offset)
Michael Halcrow237fead2006-10-04 02:16:22 -0700177{
178 int rc = 0;
179 char dst[MD5_DIGEST_SIZE];
180 char src[ECRYPTFS_MAX_IV_BYTES + 16];
181
182 if (unlikely(ecryptfs_verbosity > 0)) {
183 ecryptfs_printk(KERN_DEBUG, "root iv:\n");
184 ecryptfs_dump_hex(crypt_stat->root_iv, crypt_stat->iv_bytes);
185 }
186 /* TODO: It is probably secure to just cast the least
187 * significant bits of the root IV into an unsigned long and
188 * add the offset to that rather than go through all this
189 * hashing business. -Halcrow */
190 memcpy(src, crypt_stat->root_iv, crypt_stat->iv_bytes);
191 memset((src + crypt_stat->iv_bytes), 0, 16);
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700192 snprintf((src + crypt_stat->iv_bytes), 16, "%lld", offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700193 if (unlikely(ecryptfs_verbosity > 0)) {
194 ecryptfs_printk(KERN_DEBUG, "source:\n");
195 ecryptfs_dump_hex(src, (crypt_stat->iv_bytes + 16));
196 }
197 rc = ecryptfs_calculate_md5(dst, crypt_stat, src,
198 (crypt_stat->iv_bytes + 16));
199 if (rc) {
200 ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
201 "MD5 while generating IV for a page\n");
202 goto out;
203 }
204 memcpy(iv, dst, crypt_stat->iv_bytes);
205 if (unlikely(ecryptfs_verbosity > 0)) {
206 ecryptfs_printk(KERN_DEBUG, "derived iv:\n");
207 ecryptfs_dump_hex(iv, crypt_stat->iv_bytes);
208 }
209out:
210 return rc;
211}
212
213/**
214 * ecryptfs_init_crypt_stat
215 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
216 *
217 * Initialize the crypt_stat structure.
218 */
219void
220ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
221{
222 memset((void *)crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
Michael Halcrowf4aad162007-10-16 01:27:53 -0700223 INIT_LIST_HEAD(&crypt_stat->keysig_list);
224 mutex_init(&crypt_stat->keysig_list_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700225 mutex_init(&crypt_stat->cs_mutex);
226 mutex_init(&crypt_stat->cs_tfm_mutex);
Michael Halcrow565d9722006-10-30 22:07:17 -0800227 mutex_init(&crypt_stat->cs_hash_tfm_mutex);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800228 crypt_stat->flags |= ECRYPTFS_STRUCT_INITIALIZED;
Michael Halcrow237fead2006-10-04 02:16:22 -0700229}
230
231/**
Michael Halcrowfcd12832007-10-16 01:28:01 -0700232 * ecryptfs_destroy_crypt_stat
Michael Halcrow237fead2006-10-04 02:16:22 -0700233 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
234 *
235 * Releases all memory associated with a crypt_stat struct.
236 */
Michael Halcrowfcd12832007-10-16 01:28:01 -0700237void ecryptfs_destroy_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat)
Michael Halcrow237fead2006-10-04 02:16:22 -0700238{
Michael Halcrowf4aad162007-10-16 01:27:53 -0700239 struct ecryptfs_key_sig *key_sig, *key_sig_tmp;
240
Michael Halcrow237fead2006-10-04 02:16:22 -0700241 if (crypt_stat->tfm)
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700242 crypto_free_ablkcipher(crypt_stat->tfm);
Michael Halcrow565d9722006-10-30 22:07:17 -0800243 if (crypt_stat->hash_tfm)
244 crypto_free_hash(crypt_stat->hash_tfm);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700245 list_for_each_entry_safe(key_sig, key_sig_tmp,
246 &crypt_stat->keysig_list, crypt_stat_list) {
247 list_del(&key_sig->crypt_stat_list);
248 kmem_cache_free(ecryptfs_key_sig_cache, key_sig);
249 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700250 memset(crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat));
251}
252
Michael Halcrowfcd12832007-10-16 01:28:01 -0700253void ecryptfs_destroy_mount_crypt_stat(
Michael Halcrow237fead2006-10-04 02:16:22 -0700254 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
255{
Michael Halcrowf4aad162007-10-16 01:27:53 -0700256 struct ecryptfs_global_auth_tok *auth_tok, *auth_tok_tmp;
257
258 if (!(mount_crypt_stat->flags & ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED))
259 return;
260 mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
261 list_for_each_entry_safe(auth_tok, auth_tok_tmp,
262 &mount_crypt_stat->global_auth_tok_list,
263 mount_crypt_stat_list) {
264 list_del(&auth_tok->mount_crypt_stat_list);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700265 if (auth_tok->global_auth_tok_key
266 && !(auth_tok->flags & ECRYPTFS_AUTH_TOK_INVALID))
267 key_put(auth_tok->global_auth_tok_key);
268 kmem_cache_free(ecryptfs_global_auth_tok_cache, auth_tok);
269 }
270 mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700271 memset(mount_crypt_stat, 0, sizeof(struct ecryptfs_mount_crypt_stat));
272}
273
274/**
275 * virt_to_scatterlist
276 * @addr: Virtual address
277 * @size: Size of data; should be an even multiple of the block size
278 * @sg: Pointer to scatterlist array; set to NULL to obtain only
279 * the number of scatterlist structs required in array
280 * @sg_size: Max array size
281 *
282 * Fills in a scatterlist array with page references for a passed
283 * virtual address.
284 *
285 * Returns the number of scatterlist structs in array used
286 */
287int virt_to_scatterlist(const void *addr, int size, struct scatterlist *sg,
288 int sg_size)
289{
290 int i = 0;
291 struct page *pg;
292 int offset;
293 int remainder_of_page;
294
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700295 sg_init_table(sg, sg_size);
296
Michael Halcrow237fead2006-10-04 02:16:22 -0700297 while (size > 0 && i < sg_size) {
298 pg = virt_to_page(addr);
299 offset = offset_in_page(addr);
Dan Carpentera07c48a2013-01-26 10:48:42 +0300300 sg_set_page(&sg[i], pg, 0, offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700301 remainder_of_page = PAGE_CACHE_SIZE - offset;
302 if (size >= remainder_of_page) {
Dan Carpentera07c48a2013-01-26 10:48:42 +0300303 sg[i].length = remainder_of_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700304 addr += remainder_of_page;
305 size -= remainder_of_page;
306 } else {
Dan Carpentera07c48a2013-01-26 10:48:42 +0300307 sg[i].length = size;
Michael Halcrow237fead2006-10-04 02:16:22 -0700308 addr += size;
309 size = 0;
310 }
311 i++;
312 }
313 if (size > 0)
314 return -ENOMEM;
315 return i;
316}
317
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700318struct extent_crypt_result {
319 struct completion completion;
320 int rc;
321};
322
323static void extent_crypt_complete(struct crypto_async_request *req, int rc)
324{
325 struct extent_crypt_result *ecr = req->data;
326
327 if (rc == -EINPROGRESS)
328 return;
329
330 ecr->rc = rc;
331 complete(&ecr->completion);
332}
333
Michael Halcrow237fead2006-10-04 02:16:22 -0700334/**
Tyler Hicks00a69942013-04-05 23:26:22 -0700335 * crypt_scatterlist
Michael Halcrow237fead2006-10-04 02:16:22 -0700336 * @crypt_stat: Pointer to the crypt_stat struct to initialize.
Tyler Hicks00a69942013-04-05 23:26:22 -0700337 * @dest_sg: Destination of the data after performing the crypto operation
338 * @src_sg: Data to be encrypted or decrypted
339 * @size: Length of data
340 * @iv: IV to use
341 * @op: ENCRYPT or DECRYPT to indicate the desired operation
Michael Halcrow237fead2006-10-04 02:16:22 -0700342 *
Tyler Hicks00a69942013-04-05 23:26:22 -0700343 * Returns the number of bytes encrypted or decrypted; negative value on error
Michael Halcrow237fead2006-10-04 02:16:22 -0700344 */
Tyler Hicks00a69942013-04-05 23:26:22 -0700345static int crypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
346 struct scatterlist *dest_sg,
347 struct scatterlist *src_sg, int size,
348 unsigned char *iv, int op)
Michael Halcrow237fead2006-10-04 02:16:22 -0700349{
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700350 struct ablkcipher_request *req = NULL;
351 struct extent_crypt_result ecr;
Michael Halcrow237fead2006-10-04 02:16:22 -0700352 int rc = 0;
353
354 BUG_ON(!crypt_stat || !crypt_stat->tfm
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800355 || !(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED));
Michael Halcrow237fead2006-10-04 02:16:22 -0700356 if (unlikely(ecryptfs_verbosity > 0)) {
Tyler Hicksf24b3882010-11-15 17:36:38 -0600357 ecryptfs_printk(KERN_DEBUG, "Key size [%zd]; key:\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700358 crypt_stat->key_size);
359 ecryptfs_dump_hex(crypt_stat->key,
360 crypt_stat->key_size);
361 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700362
363 init_completion(&ecr.completion);
364
Michael Halcrow237fead2006-10-04 02:16:22 -0700365 mutex_lock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700366 req = ablkcipher_request_alloc(crypt_stat->tfm, GFP_NOFS);
367 if (!req) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700368 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700369 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700370 goto out;
371 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700372
373 ablkcipher_request_set_callback(req,
374 CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP,
375 extent_crypt_complete, &ecr);
376 /* Consider doing this once, when the file is opened */
377 if (!(crypt_stat->flags & ECRYPTFS_KEY_SET)) {
378 rc = crypto_ablkcipher_setkey(crypt_stat->tfm, crypt_stat->key,
379 crypt_stat->key_size);
380 if (rc) {
381 ecryptfs_printk(KERN_ERR,
382 "Error setting key; rc = [%d]\n",
383 rc);
384 mutex_unlock(&crypt_stat->cs_tfm_mutex);
385 rc = -EINVAL;
386 goto out;
387 }
388 crypt_stat->flags |= ECRYPTFS_KEY_SET;
389 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700390 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700391 ablkcipher_request_set_crypt(req, src_sg, dest_sg, size, iv);
Tyler Hicks00a69942013-04-05 23:26:22 -0700392 rc = op == ENCRYPT ? crypto_ablkcipher_encrypt(req) :
393 crypto_ablkcipher_decrypt(req);
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700394 if (rc == -EINPROGRESS || rc == -EBUSY) {
395 struct extent_crypt_result *ecr = req->base.data;
396
397 wait_for_completion(&ecr->completion);
398 rc = ecr->rc;
399 INIT_COMPLETION(ecr->completion);
400 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700401out:
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700402 ablkcipher_request_free(req);
Michael Halcrow237fead2006-10-04 02:16:22 -0700403 return rc;
404}
405
Michael Halcrow237fead2006-10-04 02:16:22 -0700406/**
Tyler Hicks24d15262013-04-15 17:28:09 -0700407 * lower_offset_for_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700408 *
409 * Convert an eCryptfs page index into a lower byte offset
410 */
Tyler Hicks24d15262013-04-15 17:28:09 -0700411static loff_t lower_offset_for_page(struct ecryptfs_crypt_stat *crypt_stat,
412 struct page *page)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700413{
Tyler Hicks24d15262013-04-15 17:28:09 -0700414 return ecryptfs_lower_header_size(crypt_stat) +
415 (page->index << PAGE_CACHE_SHIFT);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700416}
417
418/**
419 * ecryptfs_encrypt_extent
420 * @enc_extent_page: Allocated page into which to encrypt the data in
421 * @page
422 * @crypt_stat: crypt_stat containing cryptographic context for the
423 * encryption operation
424 * @page: Page containing plaintext data extent to encrypt
425 * @extent_offset: Page extent offset for use in generating IV
426 *
427 * Encrypts one extent of data.
428 *
429 * Return zero on success; non-zero otherwise
430 */
431static int ecryptfs_encrypt_extent(struct page *enc_extent_page,
432 struct ecryptfs_crypt_stat *crypt_stat,
433 struct page *page,
434 unsigned long extent_offset)
435{
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700436 loff_t extent_base;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700437 char extent_iv[ECRYPTFS_MAX_IV_BYTES];
438 int rc;
439
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700440 extent_base = (((loff_t)page->index)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700441 * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
442 rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
443 (extent_base + extent_offset));
444 if (rc) {
Joe Perches888d57b2010-11-10 15:46:16 -0800445 ecryptfs_printk(KERN_ERR, "Error attempting to derive IV for "
446 "extent [0x%.16llx]; rc = [%d]\n",
447 (unsigned long long)(extent_base + extent_offset), rc);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700448 goto out;
449 }
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700450 rc = crypt_page_offset(crypt_stat, enc_extent_page, page,
451 (extent_offset * crypt_stat->extent_size),
452 crypt_stat->extent_size, extent_iv, ENCRYPT);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700453 if (rc < 0) {
454 printk(KERN_ERR "%s: Error attempting to encrypt page with "
455 "page->index = [%ld], extent_offset = [%ld]; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700456 "rc = [%d]\n", __func__, page->index, extent_offset,
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700457 rc);
458 goto out;
459 }
460 rc = 0;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700461out:
462 return rc;
463}
464
465/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700466 * ecryptfs_encrypt_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700467 * @page: Page mapped from the eCryptfs inode for the file; contains
468 * decrypted content that needs to be encrypted (to a temporary
469 * page; not in place) and written out to the lower file
Michael Halcrow237fead2006-10-04 02:16:22 -0700470 *
471 * Encrypt an eCryptfs page. This is done on a per-extent basis. Note
472 * that eCryptfs pages may straddle the lower pages -- for instance,
473 * if the file was created on a machine with an 8K page size
474 * (resulting in an 8K header), and then the file is copied onto a
475 * host with a 32K page size, then when reading page 0 of the eCryptfs
476 * file, 24K of page 0 of the lower file will be read and decrypted,
477 * and then 8K of page 1 of the lower file will be read and decrypted.
478 *
Michael Halcrow237fead2006-10-04 02:16:22 -0700479 * Returns zero on success; negative on error
480 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700481int ecryptfs_encrypt_page(struct page *page)
Michael Halcrow237fead2006-10-04 02:16:22 -0700482{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700483 struct inode *ecryptfs_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700484 struct ecryptfs_crypt_stat *crypt_stat;
Eric Sandeen7fcba052008-07-28 15:46:39 -0700485 char *enc_extent_virt;
486 struct page *enc_extent_page = NULL;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700487 loff_t extent_offset;
Tyler Hicks0f896172013-04-15 16:16:24 -0700488 loff_t lower_offset;
Michael Halcrow237fead2006-10-04 02:16:22 -0700489 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700490
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700491 ecryptfs_inode = page->mapping->host;
492 crypt_stat =
493 &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500494 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Eric Sandeen7fcba052008-07-28 15:46:39 -0700495 enc_extent_page = alloc_page(GFP_USER);
496 if (!enc_extent_page) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700497 rc = -ENOMEM;
498 ecryptfs_printk(KERN_ERR, "Error allocating memory for "
499 "encrypted extent\n");
500 goto out;
501 }
Tyler Hicks0f896172013-04-15 16:16:24 -0700502
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700503 for (extent_offset = 0;
504 extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
505 extent_offset++) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700506 rc = ecryptfs_encrypt_extent(enc_extent_page, crypt_stat, page,
507 extent_offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700508 if (rc) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700509 printk(KERN_ERR "%s: Error encrypting extent; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700510 "rc = [%d]\n", __func__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700511 goto out;
512 }
Tyler Hicks0f896172013-04-15 16:16:24 -0700513 }
514
Tyler Hicks24d15262013-04-15 17:28:09 -0700515 lower_offset = lower_offset_for_page(crypt_stat, page);
Tyler Hicks0f896172013-04-15 16:16:24 -0700516 enc_extent_virt = kmap(enc_extent_page);
517 rc = ecryptfs_write_lower(ecryptfs_inode, enc_extent_virt, lower_offset,
518 PAGE_CACHE_SIZE);
519 kunmap(enc_extent_page);
520 if (rc < 0) {
521 ecryptfs_printk(KERN_ERR,
522 "Error attempting to write lower page; rc = [%d]\n",
523 rc);
524 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700525 }
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500526 rc = 0;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700527out:
Eric Sandeen7fcba052008-07-28 15:46:39 -0700528 if (enc_extent_page) {
Eric Sandeen7fcba052008-07-28 15:46:39 -0700529 __free_page(enc_extent_page);
530 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700531 return rc;
532}
533
534static int ecryptfs_decrypt_extent(struct page *page,
535 struct ecryptfs_crypt_stat *crypt_stat,
536 struct page *enc_extent_page,
537 unsigned long extent_offset)
538{
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700539 loff_t extent_base;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700540 char extent_iv[ECRYPTFS_MAX_IV_BYTES];
541 int rc;
542
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700543 extent_base = (((loff_t)page->index)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700544 * (PAGE_CACHE_SIZE / crypt_stat->extent_size));
545 rc = ecryptfs_derive_iv(extent_iv, crypt_stat,
546 (extent_base + extent_offset));
Michael Halcrow237fead2006-10-04 02:16:22 -0700547 if (rc) {
Joe Perches888d57b2010-11-10 15:46:16 -0800548 ecryptfs_printk(KERN_ERR, "Error attempting to derive IV for "
549 "extent [0x%.16llx]; rc = [%d]\n",
550 (unsigned long long)(extent_base + extent_offset), rc);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700551 goto out;
552 }
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700553 rc = crypt_page_offset(crypt_stat, page, enc_extent_page,
554 (extent_offset * crypt_stat->extent_size),
555 crypt_stat->extent_size, extent_iv, DECRYPT);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700556 if (rc < 0) {
557 printk(KERN_ERR "%s: Error attempting to decrypt to page with "
558 "page->index = [%ld], extent_offset = [%ld]; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700559 "rc = [%d]\n", __func__, page->index, extent_offset,
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700560 rc);
561 goto out;
562 }
563 rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700564out:
565 return rc;
566}
567
568/**
569 * ecryptfs_decrypt_page
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700570 * @page: Page mapped from the eCryptfs inode for the file; data read
571 * and decrypted from the lower file will be written into this
572 * page
Michael Halcrow237fead2006-10-04 02:16:22 -0700573 *
574 * Decrypt an eCryptfs page. This is done on a per-extent basis. Note
575 * that eCryptfs pages may straddle the lower pages -- for instance,
576 * if the file was created on a machine with an 8K page size
577 * (resulting in an 8K header), and then the file is copied onto a
578 * host with a 32K page size, then when reading page 0 of the eCryptfs
579 * file, 24K of page 0 of the lower file will be read and decrypted,
580 * and then 8K of page 1 of the lower file will be read and decrypted.
581 *
582 * Returns zero on success; negative on error
583 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700584int ecryptfs_decrypt_page(struct page *page)
Michael Halcrow237fead2006-10-04 02:16:22 -0700585{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700586 struct inode *ecryptfs_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700587 struct ecryptfs_crypt_stat *crypt_stat;
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700588 char *page_virt;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700589 unsigned long extent_offset;
Tyler Hicks0f896172013-04-15 16:16:24 -0700590 loff_t lower_offset;
Michael Halcrow237fead2006-10-04 02:16:22 -0700591 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700592
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700593 ecryptfs_inode = page->mapping->host;
594 crypt_stat =
595 &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500596 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Tyler Hicks0f896172013-04-15 16:16:24 -0700597
Tyler Hicks24d15262013-04-15 17:28:09 -0700598 lower_offset = lower_offset_for_page(crypt_stat, page);
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700599 page_virt = kmap(page);
600 rc = ecryptfs_read_lower(page_virt, lower_offset, PAGE_CACHE_SIZE,
Tyler Hicks0f896172013-04-15 16:16:24 -0700601 ecryptfs_inode);
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700602 kunmap(page);
Tyler Hicks0f896172013-04-15 16:16:24 -0700603 if (rc < 0) {
604 ecryptfs_printk(KERN_ERR,
605 "Error attempting to read lower page; rc = [%d]\n",
606 rc);
607 goto out;
608 }
609
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700610 for (extent_offset = 0;
611 extent_offset < (PAGE_CACHE_SIZE / crypt_stat->extent_size);
612 extent_offset++) {
Tyler Hicks9c6043f2013-04-06 00:41:48 -0700613 rc = ecryptfs_decrypt_extent(page, crypt_stat, page,
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700614 extent_offset);
615 if (rc) {
616 printk(KERN_ERR "%s: Error encrypting extent; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700617 "rc = [%d]\n", __func__, rc);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700618 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700619 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700620 }
621out:
Michael Halcrow237fead2006-10-04 02:16:22 -0700622 return rc;
623}
624
625/**
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700626 * crypt_page_offset
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700627 * @crypt_stat: The cryptographic context
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700628 * @dst_page: The page to write the result into
629 * @src_page: The page to read from
Tyler Hicks28916d12013-04-15 16:37:27 -0700630 * @offset: The byte offset into the dst_page and src_page
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700631 * @size: The number of bytes of data
632 * @iv: The initialization vector to use for the crypto operation
633 * @op: ENCRYPT or DECRYPT to indicate the desired operation
Michael Halcrow237fead2006-10-04 02:16:22 -0700634 *
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700635 * Returns the number of bytes encrypted or decrypted
Michael Halcrow237fead2006-10-04 02:16:22 -0700636 */
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700637static int crypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat,
Tyler Hicks28916d12013-04-15 16:37:27 -0700638 struct page *dst_page, struct page *src_page,
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700639 int offset, int size, unsigned char *iv, int op)
Michael Halcrow237fead2006-10-04 02:16:22 -0700640{
641 struct scatterlist src_sg, dst_sg;
642
Jens Axboe60c74f82007-10-22 19:43:30 +0200643 sg_init_table(&src_sg, 1);
644 sg_init_table(&dst_sg, 1);
645
Tyler Hicks28916d12013-04-15 16:37:27 -0700646 sg_set_page(&src_sg, src_page, size, offset);
647 sg_set_page(&dst_sg, dst_page, size, offset);
Michael Halcrow237fead2006-10-04 02:16:22 -0700648
Tyler Hicksa8ca90e2013-04-05 23:37:51 -0700649 return crypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv, op);
Michael Halcrow237fead2006-10-04 02:16:22 -0700650}
651
652#define ECRYPTFS_MAX_SCATTERLIST_LEN 4
653
654/**
655 * ecryptfs_init_crypt_ctx
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200656 * @crypt_stat: Uninitialized crypt stats structure
Michael Halcrow237fead2006-10-04 02:16:22 -0700657 *
658 * Initialize the crypto context.
659 *
660 * TODO: Performance: Keep a cache of initialized cipher contexts;
661 * only init if needed
662 */
663int ecryptfs_init_crypt_ctx(struct ecryptfs_crypt_stat *crypt_stat)
664{
Michael Halcrow8bba0662006-10-30 22:07:18 -0800665 char *full_alg_name;
Michael Halcrow237fead2006-10-04 02:16:22 -0700666 int rc = -EINVAL;
667
668 if (!crypt_stat->cipher) {
669 ecryptfs_printk(KERN_ERR, "No cipher specified\n");
670 goto out;
671 }
672 ecryptfs_printk(KERN_DEBUG,
673 "Initializing cipher [%s]; strlen = [%d]; "
Tyler Hicksf24b3882010-11-15 17:36:38 -0600674 "key_size_bits = [%zd]\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700675 crypt_stat->cipher, (int)strlen(crypt_stat->cipher),
676 crypt_stat->key_size << 3);
677 if (crypt_stat->tfm) {
678 rc = 0;
679 goto out;
680 }
681 mutex_lock(&crypt_stat->cs_tfm_mutex);
Michael Halcrow8bba0662006-10-30 22:07:18 -0800682 rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name,
683 crypt_stat->cipher, "cbc");
684 if (rc)
Eric Sandeenc8161f62007-12-22 14:03:26 -0800685 goto out_unlock;
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700686 crypt_stat->tfm = crypto_alloc_ablkcipher(full_alg_name, 0, 0);
Michael Halcrow8bba0662006-10-30 22:07:18 -0800687 kfree(full_alg_name);
Akinobu Mitade887772006-11-28 12:29:49 -0800688 if (IS_ERR(crypt_stat->tfm)) {
689 rc = PTR_ERR(crypt_stat->tfm);
Tyler Hicksb0105ea2009-08-11 00:36:32 -0500690 crypt_stat->tfm = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700691 ecryptfs_printk(KERN_ERR, "cryptfs: init_crypt_ctx(): "
692 "Error initializing cipher [%s]\n",
693 crypt_stat->cipher);
Eric Sandeenc8161f62007-12-22 14:03:26 -0800694 goto out_unlock;
Michael Halcrow237fead2006-10-04 02:16:22 -0700695 }
Tyler Hicks4dfea4f2013-05-09 16:55:07 -0700696 crypto_ablkcipher_set_flags(crypt_stat->tfm, CRYPTO_TFM_REQ_WEAK_KEY);
Michael Halcrow237fead2006-10-04 02:16:22 -0700697 rc = 0;
Eric Sandeenc8161f62007-12-22 14:03:26 -0800698out_unlock:
699 mutex_unlock(&crypt_stat->cs_tfm_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700700out:
701 return rc;
702}
703
704static void set_extent_mask_and_shift(struct ecryptfs_crypt_stat *crypt_stat)
705{
706 int extent_size_tmp;
707
708 crypt_stat->extent_mask = 0xFFFFFFFF;
709 crypt_stat->extent_shift = 0;
710 if (crypt_stat->extent_size == 0)
711 return;
712 extent_size_tmp = crypt_stat->extent_size;
713 while ((extent_size_tmp & 0x01) == 0) {
714 extent_size_tmp >>= 1;
715 crypt_stat->extent_mask <<= 1;
716 crypt_stat->extent_shift++;
717 }
718}
719
720void ecryptfs_set_default_sizes(struct ecryptfs_crypt_stat *crypt_stat)
721{
722 /* Default values; may be overwritten as we are parsing the
723 * packets. */
724 crypt_stat->extent_size = ECRYPTFS_DEFAULT_EXTENT_SIZE;
725 set_extent_mask_and_shift(crypt_stat);
726 crypt_stat->iv_bytes = ECRYPTFS_DEFAULT_IV_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800727 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600728 crypt_stat->metadata_size = ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700729 else {
730 if (PAGE_CACHE_SIZE <= ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600731 crypt_stat->metadata_size =
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800732 ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700733 else
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600734 crypt_stat->metadata_size = PAGE_CACHE_SIZE;
Michael Halcrow45eaab72007-10-16 01:28:05 -0700735 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700736}
737
738/**
739 * ecryptfs_compute_root_iv
740 * @crypt_stats
741 *
742 * On error, sets the root IV to all 0's.
743 */
744int ecryptfs_compute_root_iv(struct ecryptfs_crypt_stat *crypt_stat)
745{
746 int rc = 0;
747 char dst[MD5_DIGEST_SIZE];
748
749 BUG_ON(crypt_stat->iv_bytes > MD5_DIGEST_SIZE);
750 BUG_ON(crypt_stat->iv_bytes <= 0);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800751 if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700752 rc = -EINVAL;
753 ecryptfs_printk(KERN_WARNING, "Session key not valid; "
754 "cannot generate root IV\n");
755 goto out;
756 }
757 rc = ecryptfs_calculate_md5(dst, crypt_stat, crypt_stat->key,
758 crypt_stat->key_size);
759 if (rc) {
760 ecryptfs_printk(KERN_WARNING, "Error attempting to compute "
761 "MD5 while generating root IV\n");
762 goto out;
763 }
764 memcpy(crypt_stat->root_iv, dst, crypt_stat->iv_bytes);
765out:
766 if (rc) {
767 memset(crypt_stat->root_iv, 0, crypt_stat->iv_bytes);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800768 crypt_stat->flags |= ECRYPTFS_SECURITY_WARNING;
Michael Halcrow237fead2006-10-04 02:16:22 -0700769 }
770 return rc;
771}
772
773static void ecryptfs_generate_new_key(struct ecryptfs_crypt_stat *crypt_stat)
774{
775 get_random_bytes(crypt_stat->key, crypt_stat->key_size);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800776 crypt_stat->flags |= ECRYPTFS_KEY_VALID;
Michael Halcrow237fead2006-10-04 02:16:22 -0700777 ecryptfs_compute_root_iv(crypt_stat);
778 if (unlikely(ecryptfs_verbosity > 0)) {
779 ecryptfs_printk(KERN_DEBUG, "Generated new session key:\n");
780 ecryptfs_dump_hex(crypt_stat->key,
781 crypt_stat->key_size);
782 }
783}
784
785/**
Michael Halcrow17398952007-02-12 00:53:45 -0800786 * ecryptfs_copy_mount_wide_flags_to_inode_flags
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700787 * @crypt_stat: The inode's cryptographic context
788 * @mount_crypt_stat: The mount point's cryptographic context
Michael Halcrow17398952007-02-12 00:53:45 -0800789 *
790 * This function propagates the mount-wide flags to individual inode
791 * flags.
792 */
793static void ecryptfs_copy_mount_wide_flags_to_inode_flags(
794 struct ecryptfs_crypt_stat *crypt_stat,
795 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
796{
797 if (mount_crypt_stat->flags & ECRYPTFS_XATTR_METADATA_ENABLED)
798 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
799 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
800 crypt_stat->flags |= ECRYPTFS_VIEW_AS_ENCRYPTED;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800801 if (mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) {
802 crypt_stat->flags |= ECRYPTFS_ENCRYPT_FILENAMES;
803 if (mount_crypt_stat->flags
804 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)
805 crypt_stat->flags |= ECRYPTFS_ENCFN_USE_MOUNT_FNEK;
806 else if (mount_crypt_stat->flags
807 & ECRYPTFS_GLOBAL_ENCFN_USE_FEK)
808 crypt_stat->flags |= ECRYPTFS_ENCFN_USE_FEK;
809 }
Michael Halcrow17398952007-02-12 00:53:45 -0800810}
811
Michael Halcrowf4aad162007-10-16 01:27:53 -0700812static int ecryptfs_copy_mount_wide_sigs_to_inode_sigs(
813 struct ecryptfs_crypt_stat *crypt_stat,
814 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
815{
816 struct ecryptfs_global_auth_tok *global_auth_tok;
817 int rc = 0;
818
Roland Dreieraa061172009-07-01 15:48:18 -0700819 mutex_lock(&crypt_stat->keysig_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700820 mutex_lock(&mount_crypt_stat->global_auth_tok_list_mutex);
Roland Dreieraa061172009-07-01 15:48:18 -0700821
Michael Halcrowf4aad162007-10-16 01:27:53 -0700822 list_for_each_entry(global_auth_tok,
823 &mount_crypt_stat->global_auth_tok_list,
824 mount_crypt_stat_list) {
Tyler Hicks84814d62009-03-13 13:51:59 -0700825 if (global_auth_tok->flags & ECRYPTFS_AUTH_TOK_FNEK)
826 continue;
Michael Halcrowf4aad162007-10-16 01:27:53 -0700827 rc = ecryptfs_add_keysig(crypt_stat, global_auth_tok->sig);
828 if (rc) {
829 printk(KERN_ERR "Error adding keysig; rc = [%d]\n", rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700830 goto out;
831 }
832 }
Roland Dreieraa061172009-07-01 15:48:18 -0700833
Michael Halcrowf4aad162007-10-16 01:27:53 -0700834out:
Roland Dreieraa061172009-07-01 15:48:18 -0700835 mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex);
836 mutex_unlock(&crypt_stat->keysig_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700837 return rc;
838}
839
Michael Halcrow17398952007-02-12 00:53:45 -0800840/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700841 * ecryptfs_set_default_crypt_stat_vals
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700842 * @crypt_stat: The inode's cryptographic context
843 * @mount_crypt_stat: The mount point's cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -0700844 *
845 * Default values in the event that policy does not override them.
846 */
847static void ecryptfs_set_default_crypt_stat_vals(
848 struct ecryptfs_crypt_stat *crypt_stat,
849 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
850{
Michael Halcrow17398952007-02-12 00:53:45 -0800851 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
852 mount_crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700853 ecryptfs_set_default_sizes(crypt_stat);
854 strcpy(crypt_stat->cipher, ECRYPTFS_DEFAULT_CIPHER);
855 crypt_stat->key_size = ECRYPTFS_DEFAULT_KEY_BYTES;
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800856 crypt_stat->flags &= ~(ECRYPTFS_KEY_VALID);
Michael Halcrow237fead2006-10-04 02:16:22 -0700857 crypt_stat->file_version = ECRYPTFS_FILE_VERSION;
858 crypt_stat->mount_crypt_stat = mount_crypt_stat;
859}
860
861/**
862 * ecryptfs_new_file_context
Tyler Hicksb59db432011-11-21 17:31:02 -0600863 * @ecryptfs_inode: The eCryptfs inode
Michael Halcrow237fead2006-10-04 02:16:22 -0700864 *
865 * If the crypto context for the file has not yet been established,
866 * this is where we do that. Establishing a new crypto context
867 * involves the following decisions:
868 * - What cipher to use?
869 * - What set of authentication tokens to use?
870 * Here we just worry about getting enough information into the
871 * authentication tokens so that we know that they are available.
872 * We associate the available authentication tokens with the new file
873 * via the set of signatures in the crypt_stat struct. Later, when
874 * the headers are actually written out, we may again defer to
875 * userspace to perform the encryption of the session key; for the
876 * foreseeable future, this will be the case with public key packets.
877 *
878 * Returns zero on success; non-zero otherwise
879 */
Tyler Hicksb59db432011-11-21 17:31:02 -0600880int ecryptfs_new_file_context(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -0700881{
Michael Halcrow237fead2006-10-04 02:16:22 -0700882 struct ecryptfs_crypt_stat *crypt_stat =
Tyler Hicksb59db432011-11-21 17:31:02 -0600883 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700884 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
885 &ecryptfs_superblock_to_private(
Tyler Hicksb59db432011-11-21 17:31:02 -0600886 ecryptfs_inode->i_sb)->mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700887 int cipher_name_len;
Michael Halcrowf4aad162007-10-16 01:27:53 -0700888 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700889
890 ecryptfs_set_default_crypt_stat_vals(crypt_stat, mount_crypt_stat);
Michael Halcrowaf655dc2007-10-16 01:28:00 -0700891 crypt_stat->flags |= (ECRYPTFS_ENCRYPTED | ECRYPTFS_KEY_VALID);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700892 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
893 mount_crypt_stat);
894 rc = ecryptfs_copy_mount_wide_sigs_to_inode_sigs(crypt_stat,
895 mount_crypt_stat);
896 if (rc) {
897 printk(KERN_ERR "Error attempting to copy mount-wide key sigs "
898 "to the inode key sigs; rc = [%d]\n", rc);
899 goto out;
900 }
901 cipher_name_len =
902 strlen(mount_crypt_stat->global_default_cipher_name);
903 memcpy(crypt_stat->cipher,
904 mount_crypt_stat->global_default_cipher_name,
905 cipher_name_len);
906 crypt_stat->cipher[cipher_name_len] = '\0';
907 crypt_stat->key_size =
908 mount_crypt_stat->global_default_cipher_key_size;
909 ecryptfs_generate_new_key(crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700910 rc = ecryptfs_init_crypt_ctx(crypt_stat);
911 if (rc)
912 ecryptfs_printk(KERN_ERR, "Error initializing cryptographic "
913 "context for cipher [%s]: rc = [%d]\n",
914 crypt_stat->cipher, rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -0700915out:
Michael Halcrow237fead2006-10-04 02:16:22 -0700916 return rc;
917}
918
919/**
Tyler Hicks7a866172011-05-02 00:39:54 -0500920 * ecryptfs_validate_marker - check for the ecryptfs marker
Michael Halcrow237fead2006-10-04 02:16:22 -0700921 * @data: The data block in which to check
922 *
Tyler Hicks7a866172011-05-02 00:39:54 -0500923 * Returns zero if marker found; -EINVAL if not found
Michael Halcrow237fead2006-10-04 02:16:22 -0700924 */
Tyler Hicks7a866172011-05-02 00:39:54 -0500925static int ecryptfs_validate_marker(char *data)
Michael Halcrow237fead2006-10-04 02:16:22 -0700926{
927 u32 m_1, m_2;
928
Harvey Harrison29335c62008-07-23 21:30:06 -0700929 m_1 = get_unaligned_be32(data);
930 m_2 = get_unaligned_be32(data + 4);
Michael Halcrow237fead2006-10-04 02:16:22 -0700931 if ((m_1 ^ MAGIC_ECRYPTFS_MARKER) == m_2)
Tyler Hicks7a866172011-05-02 00:39:54 -0500932 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700933 ecryptfs_printk(KERN_DEBUG, "m_1 = [0x%.8x]; m_2 = [0x%.8x]; "
934 "MAGIC_ECRYPTFS_MARKER = [0x%.8x]\n", m_1, m_2,
935 MAGIC_ECRYPTFS_MARKER);
936 ecryptfs_printk(KERN_DEBUG, "(m_1 ^ MAGIC_ECRYPTFS_MARKER) = "
937 "[0x%.8x]\n", (m_1 ^ MAGIC_ECRYPTFS_MARKER));
Tyler Hicks7a866172011-05-02 00:39:54 -0500938 return -EINVAL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700939}
940
941struct ecryptfs_flag_map_elem {
942 u32 file_flag;
943 u32 local_flag;
944};
945
946/* Add support for additional flags by adding elements here. */
947static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = {
948 {0x00000001, ECRYPTFS_ENABLE_HMAC},
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800949 {0x00000002, ECRYPTFS_ENCRYPTED},
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800950 {0x00000004, ECRYPTFS_METADATA_IN_XATTR},
951 {0x00000008, ECRYPTFS_ENCRYPT_FILENAMES}
Michael Halcrow237fead2006-10-04 02:16:22 -0700952};
953
954/**
955 * ecryptfs_process_flags
Michael Halcrow22e78fa2007-10-16 01:28:02 -0700956 * @crypt_stat: The cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -0700957 * @page_virt: Source data to be parsed
958 * @bytes_read: Updated with the number of bytes read
959 *
960 * Returns zero on success; non-zero if the flag set is invalid
961 */
962static int ecryptfs_process_flags(struct ecryptfs_crypt_stat *crypt_stat,
963 char *page_virt, int *bytes_read)
964{
965 int rc = 0;
966 int i;
967 u32 flags;
968
Harvey Harrison29335c62008-07-23 21:30:06 -0700969 flags = get_unaligned_be32(page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700970 for (i = 0; i < ((sizeof(ecryptfs_flag_map)
971 / sizeof(struct ecryptfs_flag_map_elem))); i++)
972 if (flags & ecryptfs_flag_map[i].file_flag) {
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800973 crypt_stat->flags |= ecryptfs_flag_map[i].local_flag;
Michael Halcrow237fead2006-10-04 02:16:22 -0700974 } else
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800975 crypt_stat->flags &= ~(ecryptfs_flag_map[i].local_flag);
Michael Halcrow237fead2006-10-04 02:16:22 -0700976 /* Version is in top 8 bits of the 32-bit flag vector */
977 crypt_stat->file_version = ((flags >> 24) & 0xFF);
978 (*bytes_read) = 4;
979 return rc;
980}
981
982/**
983 * write_ecryptfs_marker
984 * @page_virt: The pointer to in a page to begin writing the marker
985 * @written: Number of bytes written
986 *
987 * Marker = 0x3c81b7f5
988 */
989static void write_ecryptfs_marker(char *page_virt, size_t *written)
990{
991 u32 m_1, m_2;
992
993 get_random_bytes(&m_1, (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2));
994 m_2 = (m_1 ^ MAGIC_ECRYPTFS_MARKER);
Harvey Harrison29335c62008-07-23 21:30:06 -0700995 put_unaligned_be32(m_1, page_virt);
996 page_virt += (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2);
997 put_unaligned_be32(m_2, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700998 (*written) = MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
999}
1000
Tyler Hicksf4e60e62010-02-11 00:02:32 -06001001void ecryptfs_write_crypt_stat_flags(char *page_virt,
1002 struct ecryptfs_crypt_stat *crypt_stat,
1003 size_t *written)
Michael Halcrow237fead2006-10-04 02:16:22 -07001004{
1005 u32 flags = 0;
1006 int i;
1007
1008 for (i = 0; i < ((sizeof(ecryptfs_flag_map)
1009 / sizeof(struct ecryptfs_flag_map_elem))); i++)
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001010 if (crypt_stat->flags & ecryptfs_flag_map[i].local_flag)
Michael Halcrow237fead2006-10-04 02:16:22 -07001011 flags |= ecryptfs_flag_map[i].file_flag;
1012 /* Version is in top 8 bits of the 32-bit flag vector */
1013 flags |= ((((u8)crypt_stat->file_version) << 24) & 0xFF000000);
Harvey Harrison29335c62008-07-23 21:30:06 -07001014 put_unaligned_be32(flags, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001015 (*written) = 4;
1016}
1017
1018struct ecryptfs_cipher_code_str_map_elem {
1019 char cipher_str[16];
Trevor Highland19e66a62008-02-06 01:38:36 -08001020 u8 cipher_code;
Michael Halcrow237fead2006-10-04 02:16:22 -07001021};
1022
1023/* Add support for additional ciphers by adding elements here. The
1024 * cipher_code is whatever OpenPGP applicatoins use to identify the
1025 * ciphers. List in order of probability. */
1026static struct ecryptfs_cipher_code_str_map_elem
1027ecryptfs_cipher_code_str_map[] = {
1028 {"aes",RFC2440_CIPHER_AES_128 },
1029 {"blowfish", RFC2440_CIPHER_BLOWFISH},
1030 {"des3_ede", RFC2440_CIPHER_DES3_EDE},
1031 {"cast5", RFC2440_CIPHER_CAST_5},
1032 {"twofish", RFC2440_CIPHER_TWOFISH},
1033 {"cast6", RFC2440_CIPHER_CAST_6},
1034 {"aes", RFC2440_CIPHER_AES_192},
1035 {"aes", RFC2440_CIPHER_AES_256}
1036};
1037
1038/**
1039 * ecryptfs_code_for_cipher_string
Michael Halcrow9c79f342009-01-06 14:41:57 -08001040 * @cipher_name: The string alias for the cipher
1041 * @key_bytes: Length of key in bytes; used for AES code selection
Michael Halcrow237fead2006-10-04 02:16:22 -07001042 *
1043 * Returns zero on no match, or the cipher code on match
1044 */
Michael Halcrow9c79f342009-01-06 14:41:57 -08001045u8 ecryptfs_code_for_cipher_string(char *cipher_name, size_t key_bytes)
Michael Halcrow237fead2006-10-04 02:16:22 -07001046{
1047 int i;
Trevor Highland19e66a62008-02-06 01:38:36 -08001048 u8 code = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001049 struct ecryptfs_cipher_code_str_map_elem *map =
1050 ecryptfs_cipher_code_str_map;
1051
Michael Halcrow9c79f342009-01-06 14:41:57 -08001052 if (strcmp(cipher_name, "aes") == 0) {
1053 switch (key_bytes) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001054 case 16:
1055 code = RFC2440_CIPHER_AES_128;
1056 break;
1057 case 24:
1058 code = RFC2440_CIPHER_AES_192;
1059 break;
1060 case 32:
1061 code = RFC2440_CIPHER_AES_256;
1062 }
1063 } else {
1064 for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
Michael Halcrow9c79f342009-01-06 14:41:57 -08001065 if (strcmp(cipher_name, map[i].cipher_str) == 0) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001066 code = map[i].cipher_code;
1067 break;
1068 }
1069 }
1070 return code;
1071}
1072
1073/**
1074 * ecryptfs_cipher_code_to_string
1075 * @str: Destination to write out the cipher name
1076 * @cipher_code: The code to convert to cipher name string
1077 *
1078 * Returns zero on success
1079 */
Trevor Highland19e66a62008-02-06 01:38:36 -08001080int ecryptfs_cipher_code_to_string(char *str, u8 cipher_code)
Michael Halcrow237fead2006-10-04 02:16:22 -07001081{
1082 int rc = 0;
1083 int i;
1084
1085 str[0] = '\0';
1086 for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++)
1087 if (cipher_code == ecryptfs_cipher_code_str_map[i].cipher_code)
1088 strcpy(str, ecryptfs_cipher_code_str_map[i].cipher_str);
1089 if (str[0] == '\0') {
1090 ecryptfs_printk(KERN_WARNING, "Cipher code not recognized: "
1091 "[%d]\n", cipher_code);
1092 rc = -EINVAL;
1093 }
1094 return rc;
1095}
1096
Tyler Hicks778aeb42011-05-24 04:56:23 -05001097int ecryptfs_read_and_validate_header_region(struct inode *inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001098{
Tyler Hicks778aeb42011-05-24 04:56:23 -05001099 u8 file_size[ECRYPTFS_SIZE_AND_MARKER_BYTES];
1100 u8 *marker = file_size + ECRYPTFS_FILE_SIZE_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001101 int rc;
1102
Tyler Hicks778aeb42011-05-24 04:56:23 -05001103 rc = ecryptfs_read_lower(file_size, 0, ECRYPTFS_SIZE_AND_MARKER_BYTES,
1104 inode);
1105 if (rc < ECRYPTFS_SIZE_AND_MARKER_BYTES)
1106 return rc >= 0 ? -EINVAL : rc;
1107 rc = ecryptfs_validate_marker(marker);
1108 if (!rc)
1109 ecryptfs_i_size_init(file_size, inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001110 return rc;
1111}
1112
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001113void
1114ecryptfs_write_header_metadata(char *virt,
1115 struct ecryptfs_crypt_stat *crypt_stat,
1116 size_t *written)
Michael Halcrow237fead2006-10-04 02:16:22 -07001117{
1118 u32 header_extent_size;
1119 u16 num_header_extents_at_front;
1120
Michael Halcrow45eaab72007-10-16 01:28:05 -07001121 header_extent_size = (u32)crypt_stat->extent_size;
Michael Halcrow237fead2006-10-04 02:16:22 -07001122 num_header_extents_at_front =
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001123 (u16)(crypt_stat->metadata_size / crypt_stat->extent_size);
Harvey Harrison29335c62008-07-23 21:30:06 -07001124 put_unaligned_be32(header_extent_size, virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001125 virt += 4;
Harvey Harrison29335c62008-07-23 21:30:06 -07001126 put_unaligned_be16(num_header_extents_at_front, virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001127 (*written) = 6;
1128}
1129
Tyler Hicks30632872011-05-24 05:11:12 -05001130struct kmem_cache *ecryptfs_header_cache;
Michael Halcrow237fead2006-10-04 02:16:22 -07001131
1132/**
1133 * ecryptfs_write_headers_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001134 * @page_virt: The virtual address to write the headers to
Eric Sandeen87b811c2008-10-29 14:01:08 -07001135 * @max: The size of memory allocated at page_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001136 * @size: Set to the number of bytes written by this function
1137 * @crypt_stat: The cryptographic context
1138 * @ecryptfs_dentry: The eCryptfs dentry
Michael Halcrow237fead2006-10-04 02:16:22 -07001139 *
1140 * Format version: 1
1141 *
1142 * Header Extent:
1143 * Octets 0-7: Unencrypted file size (big-endian)
1144 * Octets 8-15: eCryptfs special marker
1145 * Octets 16-19: Flags
1146 * Octet 16: File format version number (between 0 and 255)
1147 * Octets 17-18: Reserved
1148 * Octet 19: Bit 1 (lsb): Reserved
1149 * Bit 2: Encrypted?
1150 * Bits 3-8: Reserved
1151 * Octets 20-23: Header extent size (big-endian)
1152 * Octets 24-25: Number of header extents at front of file
1153 * (big-endian)
1154 * Octet 26: Begin RFC 2440 authentication token packet set
1155 * Data Extent 0:
1156 * Lower data (CBC encrypted)
1157 * Data Extent 1:
1158 * Lower data (CBC encrypted)
1159 * ...
1160 *
1161 * Returns zero on success
1162 */
Eric Sandeen87b811c2008-10-29 14:01:08 -07001163static int ecryptfs_write_headers_virt(char *page_virt, size_t max,
1164 size_t *size,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001165 struct ecryptfs_crypt_stat *crypt_stat,
1166 struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -07001167{
1168 int rc;
1169 size_t written;
1170 size_t offset;
1171
1172 offset = ECRYPTFS_FILE_SIZE_BYTES;
1173 write_ecryptfs_marker((page_virt + offset), &written);
1174 offset += written;
Tyler Hicksf4e60e62010-02-11 00:02:32 -06001175 ecryptfs_write_crypt_stat_flags((page_virt + offset), crypt_stat,
1176 &written);
Michael Halcrow237fead2006-10-04 02:16:22 -07001177 offset += written;
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001178 ecryptfs_write_header_metadata((page_virt + offset), crypt_stat,
1179 &written);
Michael Halcrow237fead2006-10-04 02:16:22 -07001180 offset += written;
1181 rc = ecryptfs_generate_key_packet_set((page_virt + offset), crypt_stat,
1182 ecryptfs_dentry, &written,
Eric Sandeen87b811c2008-10-29 14:01:08 -07001183 max - offset);
Michael Halcrow237fead2006-10-04 02:16:22 -07001184 if (rc)
1185 ecryptfs_printk(KERN_WARNING, "Error generating key packet "
1186 "set; rc = [%d]\n", rc);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001187 if (size) {
1188 offset += written;
1189 *size = offset;
1190 }
1191 return rc;
1192}
1193
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001194static int
Tyler Hicksb59db432011-11-21 17:31:02 -06001195ecryptfs_write_metadata_to_contents(struct inode *ecryptfs_inode,
Tyler Hicks8faece52009-03-20 01:25:09 -05001196 char *virt, size_t virt_len)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001197{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001198 int rc;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001199
Tyler Hicksb59db432011-11-21 17:31:02 -06001200 rc = ecryptfs_write_lower(ecryptfs_inode, virt,
Tyler Hicks8faece52009-03-20 01:25:09 -05001201 0, virt_len);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001202 if (rc < 0)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001203 printk(KERN_ERR "%s: Error attempting to write header "
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001204 "information to lower file; rc = [%d]\n", __func__, rc);
1205 else
1206 rc = 0;
Michael Halcrow70456602007-02-12 00:53:48 -08001207 return rc;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001208}
1209
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001210static int
1211ecryptfs_write_metadata_to_xattr(struct dentry *ecryptfs_dentry,
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001212 char *page_virt, size_t size)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001213{
1214 int rc;
1215
1216 rc = ecryptfs_setxattr(ecryptfs_dentry, ECRYPTFS_XATTR_NAME, page_virt,
1217 size, 0);
Michael Halcrow237fead2006-10-04 02:16:22 -07001218 return rc;
1219}
1220
Tyler Hicks8faece52009-03-20 01:25:09 -05001221static unsigned long ecryptfs_get_zeroed_pages(gfp_t gfp_mask,
1222 unsigned int order)
1223{
1224 struct page *page;
1225
1226 page = alloc_pages(gfp_mask | __GFP_ZERO, order);
1227 if (page)
1228 return (unsigned long) page_address(page);
1229 return 0;
1230}
1231
Michael Halcrow237fead2006-10-04 02:16:22 -07001232/**
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001233 * ecryptfs_write_metadata
Tyler Hicksb59db432011-11-21 17:31:02 -06001234 * @ecryptfs_dentry: The eCryptfs dentry, which should be negative
1235 * @ecryptfs_inode: The newly created eCryptfs inode
Michael Halcrow237fead2006-10-04 02:16:22 -07001236 *
1237 * Write the file headers out. This will likely involve a userspace
1238 * callout, in which the session key is encrypted with one or more
1239 * public keys and/or the passphrase necessary to do the encryption is
1240 * retrieved via a prompt. Exactly what happens at this point should
1241 * be policy-dependent.
1242 *
1243 * Returns zero on success; non-zero on error
1244 */
Tyler Hicksb59db432011-11-21 17:31:02 -06001245int ecryptfs_write_metadata(struct dentry *ecryptfs_dentry,
1246 struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -07001247{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001248 struct ecryptfs_crypt_stat *crypt_stat =
Tyler Hicksb59db432011-11-21 17:31:02 -06001249 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Tyler Hicks8faece52009-03-20 01:25:09 -05001250 unsigned int order;
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001251 char *virt;
Tyler Hicks8faece52009-03-20 01:25:09 -05001252 size_t virt_len;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001253 size_t size = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -07001254 int rc = 0;
1255
Michael Halcrowe2bd99e2007-02-12 00:53:49 -08001256 if (likely(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
1257 if (!(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001258 printk(KERN_ERR "Key is invalid; bailing out\n");
Michael Halcrow237fead2006-10-04 02:16:22 -07001259 rc = -EINVAL;
1260 goto out;
1261 }
1262 } else {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001263 printk(KERN_WARNING "%s: Encrypted flag not set\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001264 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001265 rc = -EINVAL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001266 goto out;
1267 }
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001268 virt_len = crypt_stat->metadata_size;
Tyler Hicks8faece52009-03-20 01:25:09 -05001269 order = get_order(virt_len);
Michael Halcrow237fead2006-10-04 02:16:22 -07001270 /* Released in this function */
Tyler Hicks8faece52009-03-20 01:25:09 -05001271 virt = (char *)ecryptfs_get_zeroed_pages(GFP_KERNEL, order);
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001272 if (!virt) {
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001273 printk(KERN_ERR "%s: Out of memory\n", __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001274 rc = -ENOMEM;
1275 goto out;
1276 }
Tyler Hicksbd4f0fe2011-02-23 00:14:19 -06001277 /* Zeroed page ensures the in-header unencrypted i_size is set to 0 */
Tyler Hicks8faece52009-03-20 01:25:09 -05001278 rc = ecryptfs_write_headers_virt(virt, virt_len, &size, crypt_stat,
1279 ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -07001280 if (unlikely(rc)) {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001281 printk(KERN_ERR "%s: Error whilst writing headers; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001282 __func__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001283 goto out_free;
1284 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001285 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Tyler Hicks8faece52009-03-20 01:25:09 -05001286 rc = ecryptfs_write_metadata_to_xattr(ecryptfs_dentry, virt,
1287 size);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001288 else
Tyler Hicksb59db432011-11-21 17:31:02 -06001289 rc = ecryptfs_write_metadata_to_contents(ecryptfs_inode, virt,
Tyler Hicks8faece52009-03-20 01:25:09 -05001290 virt_len);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001291 if (rc) {
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001292 printk(KERN_ERR "%s: Error writing metadata out to lower file; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001293 "rc = [%d]\n", __func__, rc);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001294 goto out_free;
Michael Halcrow237fead2006-10-04 02:16:22 -07001295 }
Michael Halcrow237fead2006-10-04 02:16:22 -07001296out_free:
Tyler Hicks8faece52009-03-20 01:25:09 -05001297 free_pages((unsigned long)virt, order);
Michael Halcrow237fead2006-10-04 02:16:22 -07001298out:
1299 return rc;
1300}
1301
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001302#define ECRYPTFS_DONT_VALIDATE_HEADER_SIZE 0
1303#define ECRYPTFS_VALIDATE_HEADER_SIZE 1
Michael Halcrow237fead2006-10-04 02:16:22 -07001304static int parse_header_metadata(struct ecryptfs_crypt_stat *crypt_stat,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001305 char *virt, int *bytes_read,
1306 int validate_header_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001307{
1308 int rc = 0;
1309 u32 header_extent_size;
1310 u16 num_header_extents_at_front;
1311
Harvey Harrison29335c62008-07-23 21:30:06 -07001312 header_extent_size = get_unaligned_be32(virt);
1313 virt += sizeof(__be32);
1314 num_header_extents_at_front = get_unaligned_be16(virt);
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001315 crypt_stat->metadata_size = (((size_t)num_header_extents_at_front
1316 * (size_t)header_extent_size));
Harvey Harrison29335c62008-07-23 21:30:06 -07001317 (*bytes_read) = (sizeof(__be32) + sizeof(__be16));
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001318 if ((validate_header_size == ECRYPTFS_VALIDATE_HEADER_SIZE)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001319 && (crypt_stat->metadata_size
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001320 < ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001321 rc = -EINVAL;
Michael Halcrowcc11bef2008-02-06 01:38:32 -08001322 printk(KERN_WARNING "Invalid header size: [%zd]\n",
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001323 crypt_stat->metadata_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001324 }
1325 return rc;
1326}
1327
1328/**
1329 * set_default_header_data
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001330 * @crypt_stat: The cryptographic context
Michael Halcrow237fead2006-10-04 02:16:22 -07001331 *
1332 * For version 0 file format; this function is only for backwards
1333 * compatibility for files created with the prior versions of
1334 * eCryptfs.
1335 */
1336static void set_default_header_data(struct ecryptfs_crypt_stat *crypt_stat)
1337{
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -06001338 crypt_stat->metadata_size = ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE;
Michael Halcrow237fead2006-10-04 02:16:22 -07001339}
1340
Tyler Hicks3aeb86e2011-03-15 14:54:00 -05001341void ecryptfs_i_size_init(const char *page_virt, struct inode *inode)
1342{
1343 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
1344 struct ecryptfs_crypt_stat *crypt_stat;
1345 u64 file_size;
1346
1347 crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
1348 mount_crypt_stat =
1349 &ecryptfs_superblock_to_private(inode->i_sb)->mount_crypt_stat;
1350 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) {
1351 file_size = i_size_read(ecryptfs_inode_to_lower(inode));
1352 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
1353 file_size += crypt_stat->metadata_size;
1354 } else
1355 file_size = get_unaligned_be64(page_virt);
1356 i_size_write(inode, (loff_t)file_size);
1357 crypt_stat->flags |= ECRYPTFS_I_SIZE_INITIALIZED;
1358}
1359
Michael Halcrow237fead2006-10-04 02:16:22 -07001360/**
1361 * ecryptfs_read_headers_virt
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001362 * @page_virt: The virtual address into which to read the headers
1363 * @crypt_stat: The cryptographic context
1364 * @ecryptfs_dentry: The eCryptfs dentry
1365 * @validate_header_size: Whether to validate the header size while reading
Michael Halcrow237fead2006-10-04 02:16:22 -07001366 *
1367 * Read/parse the header data. The header format is detailed in the
1368 * comment block for the ecryptfs_write_headers_virt() function.
1369 *
1370 * Returns zero on success
1371 */
1372static int ecryptfs_read_headers_virt(char *page_virt,
1373 struct ecryptfs_crypt_stat *crypt_stat,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001374 struct dentry *ecryptfs_dentry,
1375 int validate_header_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001376{
1377 int rc = 0;
1378 int offset;
1379 int bytes_read;
1380
1381 ecryptfs_set_default_sizes(crypt_stat);
1382 crypt_stat->mount_crypt_stat = &ecryptfs_superblock_to_private(
1383 ecryptfs_dentry->d_sb)->mount_crypt_stat;
1384 offset = ECRYPTFS_FILE_SIZE_BYTES;
Tyler Hicks7a866172011-05-02 00:39:54 -05001385 rc = ecryptfs_validate_marker(page_virt + offset);
1386 if (rc)
Michael Halcrow237fead2006-10-04 02:16:22 -07001387 goto out;
Tyler Hicks3aeb86e2011-03-15 14:54:00 -05001388 if (!(crypt_stat->flags & ECRYPTFS_I_SIZE_INITIALIZED))
1389 ecryptfs_i_size_init(page_virt, ecryptfs_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -07001390 offset += MAGIC_ECRYPTFS_MARKER_SIZE_BYTES;
1391 rc = ecryptfs_process_flags(crypt_stat, (page_virt + offset),
1392 &bytes_read);
1393 if (rc) {
1394 ecryptfs_printk(KERN_WARNING, "Error processing flags\n");
1395 goto out;
1396 }
1397 if (crypt_stat->file_version > ECRYPTFS_SUPPORTED_FILE_VERSION) {
1398 ecryptfs_printk(KERN_WARNING, "File version is [%d]; only "
1399 "file version [%d] is supported by this "
1400 "version of eCryptfs\n",
1401 crypt_stat->file_version,
1402 ECRYPTFS_SUPPORTED_FILE_VERSION);
1403 rc = -EINVAL;
1404 goto out;
1405 }
1406 offset += bytes_read;
1407 if (crypt_stat->file_version >= 1) {
1408 rc = parse_header_metadata(crypt_stat, (page_virt + offset),
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001409 &bytes_read, validate_header_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001410 if (rc) {
1411 ecryptfs_printk(KERN_WARNING, "Error reading header "
1412 "metadata; rc = [%d]\n", rc);
1413 }
1414 offset += bytes_read;
1415 } else
1416 set_default_header_data(crypt_stat);
1417 rc = ecryptfs_parse_packet_set(crypt_stat, (page_virt + offset),
1418 ecryptfs_dentry);
1419out:
1420 return rc;
1421}
1422
1423/**
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001424 * ecryptfs_read_xattr_region
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001425 * @page_virt: The vitual address into which to read the xattr data
Michael Halcrow2ed92552007-10-16 01:28:10 -07001426 * @ecryptfs_inode: The eCryptfs inode
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001427 *
1428 * Attempts to read the crypto metadata from the extended attribute
1429 * region of the lower file.
Michael Halcrow22e78fa2007-10-16 01:28:02 -07001430 *
1431 * Returns zero on success; non-zero on error
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001432 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001433int ecryptfs_read_xattr_region(char *page_virt, struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001434{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001435 struct dentry *lower_dentry =
1436 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001437 ssize_t size;
1438 int rc = 0;
1439
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001440 size = ecryptfs_getxattr_lower(lower_dentry, ECRYPTFS_XATTR_NAME,
1441 page_virt, ECRYPTFS_DEFAULT_EXTENT_SIZE);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001442 if (size < 0) {
Michael Halcrow25bd8172008-02-06 01:38:35 -08001443 if (unlikely(ecryptfs_verbosity > 0))
1444 printk(KERN_INFO "Error attempting to read the [%s] "
1445 "xattr from the lower file; return value = "
1446 "[%zd]\n", ECRYPTFS_XATTR_NAME, size);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001447 rc = -EINVAL;
1448 goto out;
1449 }
1450out:
1451 return rc;
1452}
1453
Tyler Hicks778aeb42011-05-24 04:56:23 -05001454int ecryptfs_read_and_validate_xattr_region(struct dentry *dentry,
Tyler Hicks3b06b3e2011-05-24 03:49:02 -05001455 struct inode *inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001456{
Tyler Hicks778aeb42011-05-24 04:56:23 -05001457 u8 file_size[ECRYPTFS_SIZE_AND_MARKER_BYTES];
1458 u8 *marker = file_size + ECRYPTFS_FILE_SIZE_BYTES;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001459 int rc;
1460
Tyler Hicks778aeb42011-05-24 04:56:23 -05001461 rc = ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry),
1462 ECRYPTFS_XATTR_NAME, file_size,
1463 ECRYPTFS_SIZE_AND_MARKER_BYTES);
1464 if (rc < ECRYPTFS_SIZE_AND_MARKER_BYTES)
1465 return rc >= 0 ? -EINVAL : rc;
1466 rc = ecryptfs_validate_marker(marker);
1467 if (!rc)
1468 ecryptfs_i_size_init(file_size, inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001469 return rc;
1470}
1471
1472/**
1473 * ecryptfs_read_metadata
1474 *
1475 * Common entry point for reading file metadata. From here, we could
1476 * retrieve the header information from the header region of the file,
1477 * the xattr region of the file, or some other repostory that is
1478 * stored separately from the file itself. The current implementation
1479 * supports retrieving the metadata information from the file contents
1480 * and from the xattr region.
Michael Halcrow237fead2006-10-04 02:16:22 -07001481 *
1482 * Returns zero if valid headers found and parsed; non-zero otherwise
1483 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001484int ecryptfs_read_metadata(struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -07001485{
Tim Gardnerbb450362012-01-12 16:31:55 +01001486 int rc;
1487 char *page_virt;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001488 struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -07001489 struct ecryptfs_crypt_stat *crypt_stat =
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001490 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001491 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
1492 &ecryptfs_superblock_to_private(
1493 ecryptfs_dentry->d_sb)->mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -07001494
Michael Halcrowe77a56d2007-02-12 00:53:47 -08001495 ecryptfs_copy_mount_wide_flags_to_inode_flags(crypt_stat,
1496 mount_crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -07001497 /* Read the first page from the underlying file */
Tyler Hicks30632872011-05-24 05:11:12 -05001498 page_virt = kmem_cache_alloc(ecryptfs_header_cache, GFP_USER);
Michael Halcrow237fead2006-10-04 02:16:22 -07001499 if (!page_virt) {
1500 rc = -ENOMEM;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001501 printk(KERN_ERR "%s: Unable to allocate page_virt\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -07001502 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -07001503 goto out;
1504 }
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001505 rc = ecryptfs_read_lower(page_virt, 0, crypt_stat->extent_size,
1506 ecryptfs_inode);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -05001507 if (rc >= 0)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001508 rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1509 ecryptfs_dentry,
1510 ECRYPTFS_VALIDATE_HEADER_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -07001511 if (rc) {
Tim Gardnerbb450362012-01-12 16:31:55 +01001512 /* metadata is not in the file header, so try xattrs */
Tyler Hicks1984c232010-02-10 23:17:44 -06001513 memset(page_virt, 0, PAGE_CACHE_SIZE);
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -07001514 rc = ecryptfs_read_xattr_region(page_virt, ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001515 if (rc) {
1516 printk(KERN_DEBUG "Valid eCryptfs headers not found in "
Tim Gardner30373dc2012-01-12 16:31:55 +01001517 "file header region or xattr region, inode %lu\n",
1518 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001519 rc = -EINVAL;
1520 goto out;
1521 }
1522 rc = ecryptfs_read_headers_virt(page_virt, crypt_stat,
1523 ecryptfs_dentry,
1524 ECRYPTFS_DONT_VALIDATE_HEADER_SIZE);
1525 if (rc) {
1526 printk(KERN_DEBUG "Valid eCryptfs headers not found in "
Tim Gardner30373dc2012-01-12 16:31:55 +01001527 "file xattr region either, inode %lu\n",
1528 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001529 rc = -EINVAL;
1530 }
1531 if (crypt_stat->mount_crypt_stat->flags
1532 & ECRYPTFS_XATTR_METADATA_ENABLED) {
1533 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
1534 } else {
1535 printk(KERN_WARNING "Attempt to access file with "
1536 "crypto metadata only in the extended attribute "
1537 "region, but eCryptfs was mounted without "
1538 "xattr support enabled. eCryptfs will not treat "
Tim Gardner30373dc2012-01-12 16:31:55 +01001539 "this like an encrypted file, inode %lu\n",
1540 ecryptfs_inode->i_ino);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08001541 rc = -EINVAL;
1542 }
Michael Halcrow237fead2006-10-04 02:16:22 -07001543 }
1544out:
1545 if (page_virt) {
1546 memset(page_virt, 0, PAGE_CACHE_SIZE);
Tyler Hicks30632872011-05-24 05:11:12 -05001547 kmem_cache_free(ecryptfs_header_cache, page_virt);
Michael Halcrow237fead2006-10-04 02:16:22 -07001548 }
1549 return rc;
1550}
1551
1552/**
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001553 * ecryptfs_encrypt_filename - encrypt filename
1554 *
1555 * CBC-encrypts the filename. We do not want to encrypt the same
1556 * filename with the same key and IV, which may happen with hard
1557 * links, so we prepend random bits to each filename.
1558 *
1559 * Returns zero on success; non-zero otherwise
1560 */
1561static int
1562ecryptfs_encrypt_filename(struct ecryptfs_filename *filename,
1563 struct ecryptfs_crypt_stat *crypt_stat,
1564 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
1565{
1566 int rc = 0;
1567
1568 filename->encrypted_filename = NULL;
1569 filename->encrypted_filename_size = 0;
1570 if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
1571 || (mount_crypt_stat && (mount_crypt_stat->flags
1572 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
1573 size_t packet_size;
1574 size_t remaining_bytes;
1575
1576 rc = ecryptfs_write_tag_70_packet(
1577 NULL, NULL,
1578 &filename->encrypted_filename_size,
1579 mount_crypt_stat, NULL,
1580 filename->filename_size);
1581 if (rc) {
1582 printk(KERN_ERR "%s: Error attempting to get packet "
1583 "size for tag 72; rc = [%d]\n", __func__,
1584 rc);
1585 filename->encrypted_filename_size = 0;
1586 goto out;
1587 }
1588 filename->encrypted_filename =
1589 kmalloc(filename->encrypted_filename_size, GFP_KERNEL);
1590 if (!filename->encrypted_filename) {
1591 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowdf261c52009-01-06 14:42:02 -08001592 "to kmalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001593 filename->encrypted_filename_size);
1594 rc = -ENOMEM;
1595 goto out;
1596 }
1597 remaining_bytes = filename->encrypted_filename_size;
1598 rc = ecryptfs_write_tag_70_packet(filename->encrypted_filename,
1599 &remaining_bytes,
1600 &packet_size,
1601 mount_crypt_stat,
1602 filename->filename,
1603 filename->filename_size);
1604 if (rc) {
1605 printk(KERN_ERR "%s: Error attempting to generate "
1606 "tag 70 packet; rc = [%d]\n", __func__,
1607 rc);
1608 kfree(filename->encrypted_filename);
1609 filename->encrypted_filename = NULL;
1610 filename->encrypted_filename_size = 0;
1611 goto out;
1612 }
1613 filename->encrypted_filename_size = packet_size;
1614 } else {
1615 printk(KERN_ERR "%s: No support for requested filename "
1616 "encryption method in this release\n", __func__);
Tyler Hicksdf6ad332009-08-21 04:27:46 -05001617 rc = -EOPNOTSUPP;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001618 goto out;
1619 }
1620out:
1621 return rc;
1622}
1623
1624static int ecryptfs_copy_filename(char **copied_name, size_t *copied_name_size,
1625 const char *name, size_t name_size)
1626{
1627 int rc = 0;
1628
Tyler Hicksfd9fc842009-02-06 18:06:51 -06001629 (*copied_name) = kmalloc((name_size + 1), GFP_KERNEL);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001630 if (!(*copied_name)) {
1631 rc = -ENOMEM;
1632 goto out;
1633 }
1634 memcpy((void *)(*copied_name), (void *)name, name_size);
1635 (*copied_name)[(name_size)] = '\0'; /* Only for convenience
1636 * in printing out the
1637 * string in debug
1638 * messages */
Tyler Hicksfd9fc842009-02-06 18:06:51 -06001639 (*copied_name_size) = name_size;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001640out:
1641 return rc;
1642}
1643
1644/**
Michael Halcrowf4aad162007-10-16 01:27:53 -07001645 * ecryptfs_process_key_cipher - Perform key cipher initialization.
Michael Halcrow237fead2006-10-04 02:16:22 -07001646 * @key_tfm: Crypto context for key material, set by this function
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001647 * @cipher_name: Name of the cipher
1648 * @key_size: Size of the key in bytes
Michael Halcrow237fead2006-10-04 02:16:22 -07001649 *
1650 * Returns zero on success. Any crypto_tfm structs allocated here
1651 * should be released by other functions, such as on a superblock put
1652 * event, regardless of whether this function succeeds for fails.
1653 */
Michael Halcrowcd9d67d2007-10-16 01:28:04 -07001654static int
Michael Halcrowf4aad162007-10-16 01:27:53 -07001655ecryptfs_process_key_cipher(struct crypto_blkcipher **key_tfm,
1656 char *cipher_name, size_t *key_size)
Michael Halcrow237fead2006-10-04 02:16:22 -07001657{
1658 char dummy_key[ECRYPTFS_MAX_KEY_BYTES];
Dan Carpenterece550f2010-01-19 12:34:32 +03001659 char *full_alg_name = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -07001660 int rc;
1661
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001662 *key_tfm = NULL;
1663 if (*key_size > ECRYPTFS_MAX_KEY_BYTES) {
Michael Halcrow237fead2006-10-04 02:16:22 -07001664 rc = -EINVAL;
Michael Halcrowdf261c52009-01-06 14:42:02 -08001665 printk(KERN_ERR "Requested key size is [%zd] bytes; maximum "
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001666 "allowable is [%d]\n", *key_size, ECRYPTFS_MAX_KEY_BYTES);
Michael Halcrow237fead2006-10-04 02:16:22 -07001667 goto out;
1668 }
Michael Halcrow8bba0662006-10-30 22:07:18 -08001669 rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name, cipher_name,
1670 "ecb");
1671 if (rc)
1672 goto out;
1673 *key_tfm = crypto_alloc_blkcipher(full_alg_name, 0, CRYPTO_ALG_ASYNC);
Michael Halcrow8bba0662006-10-30 22:07:18 -08001674 if (IS_ERR(*key_tfm)) {
1675 rc = PTR_ERR(*key_tfm);
Michael Halcrow237fead2006-10-04 02:16:22 -07001676 printk(KERN_ERR "Unable to allocate crypto cipher with name "
Dave Hansen38268492009-08-27 09:47:07 -07001677 "[%s]; rc = [%d]\n", full_alg_name, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001678 goto out;
1679 }
Michael Halcrow8bba0662006-10-30 22:07:18 -08001680 crypto_blkcipher_set_flags(*key_tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1681 if (*key_size == 0) {
1682 struct blkcipher_alg *alg = crypto_blkcipher_alg(*key_tfm);
1683
1684 *key_size = alg->max_keysize;
1685 }
Michael Halcrowe5d9cbd2006-10-30 22:07:16 -08001686 get_random_bytes(dummy_key, *key_size);
Michael Halcrow8bba0662006-10-30 22:07:18 -08001687 rc = crypto_blkcipher_setkey(*key_tfm, dummy_key, *key_size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001688 if (rc) {
Michael Halcrowdf261c52009-01-06 14:42:02 -08001689 printk(KERN_ERR "Error attempting to set key of size [%zd] for "
Dave Hansen38268492009-08-27 09:47:07 -07001690 "cipher [%s]; rc = [%d]\n", *key_size, full_alg_name,
1691 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -07001692 rc = -EINVAL;
1693 goto out;
1694 }
1695out:
Dan Carpenterece550f2010-01-19 12:34:32 +03001696 kfree(full_alg_name);
Michael Halcrow237fead2006-10-04 02:16:22 -07001697 return rc;
1698}
Michael Halcrowf4aad162007-10-16 01:27:53 -07001699
1700struct kmem_cache *ecryptfs_key_tfm_cache;
Adrian Bunk7896b632008-02-06 01:38:32 -08001701static struct list_head key_tfm_list;
Eric Sandeenaf440f52008-02-06 01:38:37 -08001702struct mutex key_tfm_list_mutex;
Michael Halcrowf4aad162007-10-16 01:27:53 -07001703
Jerome Marchand7371a382010-08-17 17:24:05 +02001704int __init ecryptfs_init_crypto(void)
Michael Halcrowf4aad162007-10-16 01:27:53 -07001705{
1706 mutex_init(&key_tfm_list_mutex);
1707 INIT_LIST_HEAD(&key_tfm_list);
1708 return 0;
1709}
1710
Eric Sandeenaf440f52008-02-06 01:38:37 -08001711/**
1712 * ecryptfs_destroy_crypto - free all cached key_tfms on key_tfm_list
1713 *
1714 * Called only at module unload time
1715 */
Michael Halcrowfcd12832007-10-16 01:28:01 -07001716int ecryptfs_destroy_crypto(void)
Michael Halcrowf4aad162007-10-16 01:27:53 -07001717{
1718 struct ecryptfs_key_tfm *key_tfm, *key_tfm_tmp;
1719
1720 mutex_lock(&key_tfm_list_mutex);
1721 list_for_each_entry_safe(key_tfm, key_tfm_tmp, &key_tfm_list,
1722 key_tfm_list) {
1723 list_del(&key_tfm->key_tfm_list);
1724 if (key_tfm->key_tfm)
1725 crypto_free_blkcipher(key_tfm->key_tfm);
1726 kmem_cache_free(ecryptfs_key_tfm_cache, key_tfm);
1727 }
1728 mutex_unlock(&key_tfm_list_mutex);
1729 return 0;
1730}
1731
1732int
1733ecryptfs_add_new_key_tfm(struct ecryptfs_key_tfm **key_tfm, char *cipher_name,
1734 size_t key_size)
1735{
1736 struct ecryptfs_key_tfm *tmp_tfm;
1737 int rc = 0;
1738
Eric Sandeenaf440f52008-02-06 01:38:37 -08001739 BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1740
Michael Halcrowf4aad162007-10-16 01:27:53 -07001741 tmp_tfm = kmem_cache_alloc(ecryptfs_key_tfm_cache, GFP_KERNEL);
1742 if (key_tfm != NULL)
1743 (*key_tfm) = tmp_tfm;
1744 if (!tmp_tfm) {
1745 rc = -ENOMEM;
1746 printk(KERN_ERR "Error attempting to allocate from "
1747 "ecryptfs_key_tfm_cache\n");
1748 goto out;
1749 }
1750 mutex_init(&tmp_tfm->key_tfm_mutex);
1751 strncpy(tmp_tfm->cipher_name, cipher_name,
1752 ECRYPTFS_MAX_CIPHER_NAME_SIZE);
Eric Sandeenb8862902007-12-22 14:03:24 -08001753 tmp_tfm->cipher_name[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
Michael Halcrowf4aad162007-10-16 01:27:53 -07001754 tmp_tfm->key_size = key_size;
Michael Halcrow5dda6992007-10-16 01:28:06 -07001755 rc = ecryptfs_process_key_cipher(&tmp_tfm->key_tfm,
1756 tmp_tfm->cipher_name,
1757 &tmp_tfm->key_size);
1758 if (rc) {
Michael Halcrowf4aad162007-10-16 01:27:53 -07001759 printk(KERN_ERR "Error attempting to initialize key TFM "
1760 "cipher with name = [%s]; rc = [%d]\n",
1761 tmp_tfm->cipher_name, rc);
1762 kmem_cache_free(ecryptfs_key_tfm_cache, tmp_tfm);
1763 if (key_tfm != NULL)
1764 (*key_tfm) = NULL;
1765 goto out;
1766 }
Michael Halcrowf4aad162007-10-16 01:27:53 -07001767 list_add(&tmp_tfm->key_tfm_list, &key_tfm_list);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001768out:
1769 return rc;
1770}
1771
Eric Sandeenaf440f52008-02-06 01:38:37 -08001772/**
1773 * ecryptfs_tfm_exists - Search for existing tfm for cipher_name.
1774 * @cipher_name: the name of the cipher to search for
1775 * @key_tfm: set to corresponding tfm if found
1776 *
1777 * Searches for cached key_tfm matching @cipher_name
1778 * Must be called with &key_tfm_list_mutex held
1779 * Returns 1 if found, with @key_tfm set
1780 * Returns 0 if not found, with @key_tfm set to NULL
1781 */
1782int ecryptfs_tfm_exists(char *cipher_name, struct ecryptfs_key_tfm **key_tfm)
1783{
1784 struct ecryptfs_key_tfm *tmp_key_tfm;
1785
1786 BUG_ON(!mutex_is_locked(&key_tfm_list_mutex));
1787
1788 list_for_each_entry(tmp_key_tfm, &key_tfm_list, key_tfm_list) {
1789 if (strcmp(tmp_key_tfm->cipher_name, cipher_name) == 0) {
1790 if (key_tfm)
1791 (*key_tfm) = tmp_key_tfm;
1792 return 1;
1793 }
1794 }
1795 if (key_tfm)
1796 (*key_tfm) = NULL;
1797 return 0;
1798}
1799
1800/**
1801 * ecryptfs_get_tfm_and_mutex_for_cipher_name
1802 *
1803 * @tfm: set to cached tfm found, or new tfm created
1804 * @tfm_mutex: set to mutex for cached tfm found, or new tfm created
1805 * @cipher_name: the name of the cipher to search for and/or add
1806 *
1807 * Sets pointers to @tfm & @tfm_mutex matching @cipher_name.
1808 * Searches for cached item first, and creates new if not found.
1809 * Returns 0 on success, non-zero if adding new cipher failed
1810 */
Michael Halcrowf4aad162007-10-16 01:27:53 -07001811int ecryptfs_get_tfm_and_mutex_for_cipher_name(struct crypto_blkcipher **tfm,
1812 struct mutex **tfm_mutex,
1813 char *cipher_name)
1814{
1815 struct ecryptfs_key_tfm *key_tfm;
1816 int rc = 0;
1817
1818 (*tfm) = NULL;
1819 (*tfm_mutex) = NULL;
Eric Sandeenaf440f52008-02-06 01:38:37 -08001820
Michael Halcrowf4aad162007-10-16 01:27:53 -07001821 mutex_lock(&key_tfm_list_mutex);
Eric Sandeenaf440f52008-02-06 01:38:37 -08001822 if (!ecryptfs_tfm_exists(cipher_name, &key_tfm)) {
1823 rc = ecryptfs_add_new_key_tfm(&key_tfm, cipher_name, 0);
1824 if (rc) {
1825 printk(KERN_ERR "Error adding new key_tfm to list; "
1826 "rc = [%d]\n", rc);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001827 goto out;
1828 }
1829 }
Michael Halcrowf4aad162007-10-16 01:27:53 -07001830 (*tfm) = key_tfm->key_tfm;
1831 (*tfm_mutex) = &key_tfm->key_tfm_mutex;
1832out:
Cyrill Gorcunov71fd5172008-05-23 13:04:20 -07001833 mutex_unlock(&key_tfm_list_mutex);
Michael Halcrowf4aad162007-10-16 01:27:53 -07001834 return rc;
1835}
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001836
1837/* 64 characters forming a 6-bit target field */
1838static unsigned char *portable_filename_chars = ("-.0123456789ABCD"
1839 "EFGHIJKLMNOPQRST"
1840 "UVWXYZabcdefghij"
1841 "klmnopqrstuvwxyz");
1842
1843/* We could either offset on every reverse map or just pad some 0x00's
1844 * at the front here */
Tyler Hicks0f751e62011-11-23 11:31:24 -06001845static const unsigned char filename_rev_map[256] = {
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001846 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 7 */
1847 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 15 */
1848 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 23 */
1849 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 31 */
1850 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 39 */
1851 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, /* 47 */
1852 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, /* 55 */
1853 0x0A, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 63 */
1854 0x00, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, /* 71 */
1855 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, /* 79 */
1856 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, /* 87 */
1857 0x23, 0x24, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, /* 95 */
1858 0x00, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, /* 103 */
1859 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, /* 111 */
1860 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, /* 119 */
Tyler Hicks0f751e62011-11-23 11:31:24 -06001861 0x3D, 0x3E, 0x3F /* 123 - 255 initialized to 0x00 */
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001862};
1863
1864/**
1865 * ecryptfs_encode_for_filename
1866 * @dst: Destination location for encoded filename
1867 * @dst_size: Size of the encoded filename in bytes
1868 * @src: Source location for the filename to encode
1869 * @src_size: Size of the source in bytes
1870 */
Cong Ding37028752012-12-07 22:21:56 +00001871static void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001872 unsigned char *src, size_t src_size)
1873{
1874 size_t num_blocks;
1875 size_t block_num = 0;
1876 size_t dst_offset = 0;
1877 unsigned char last_block[3];
1878
1879 if (src_size == 0) {
1880 (*dst_size) = 0;
1881 goto out;
1882 }
1883 num_blocks = (src_size / 3);
1884 if ((src_size % 3) == 0) {
1885 memcpy(last_block, (&src[src_size - 3]), 3);
1886 } else {
1887 num_blocks++;
1888 last_block[2] = 0x00;
1889 switch (src_size % 3) {
1890 case 1:
1891 last_block[0] = src[src_size - 1];
1892 last_block[1] = 0x00;
1893 break;
1894 case 2:
1895 last_block[0] = src[src_size - 2];
1896 last_block[1] = src[src_size - 1];
1897 }
1898 }
1899 (*dst_size) = (num_blocks * 4);
1900 if (!dst)
1901 goto out;
1902 while (block_num < num_blocks) {
1903 unsigned char *src_block;
1904 unsigned char dst_block[4];
1905
1906 if (block_num == (num_blocks - 1))
1907 src_block = last_block;
1908 else
1909 src_block = &src[block_num * 3];
1910 dst_block[0] = ((src_block[0] >> 2) & 0x3F);
1911 dst_block[1] = (((src_block[0] << 4) & 0x30)
1912 | ((src_block[1] >> 4) & 0x0F));
1913 dst_block[2] = (((src_block[1] << 2) & 0x3C)
1914 | ((src_block[2] >> 6) & 0x03));
1915 dst_block[3] = (src_block[2] & 0x3F);
1916 dst[dst_offset++] = portable_filename_chars[dst_block[0]];
1917 dst[dst_offset++] = portable_filename_chars[dst_block[1]];
1918 dst[dst_offset++] = portable_filename_chars[dst_block[2]];
1919 dst[dst_offset++] = portable_filename_chars[dst_block[3]];
1920 block_num++;
1921 }
1922out:
1923 return;
1924}
1925
Tyler Hicks4a266202011-11-05 13:45:08 -04001926static size_t ecryptfs_max_decoded_size(size_t encoded_size)
1927{
1928 /* Not exact; conservatively long. Every block of 4
1929 * encoded characters decodes into a block of 3
1930 * decoded characters. This segment of code provides
1931 * the caller with the maximum amount of allocated
1932 * space that @dst will need to point to in a
1933 * subsequent call. */
1934 return ((encoded_size + 1) * 3) / 4;
1935}
1936
Michael Halcrow71c11c32009-01-06 14:42:05 -08001937/**
1938 * ecryptfs_decode_from_filename
1939 * @dst: If NULL, this function only sets @dst_size and returns. If
1940 * non-NULL, this function decodes the encoded octets in @src
1941 * into the memory that @dst points to.
1942 * @dst_size: Set to the size of the decoded string.
1943 * @src: The encoded set of octets to decode.
1944 * @src_size: The size of the encoded set of octets to decode.
1945 */
1946static void
1947ecryptfs_decode_from_filename(unsigned char *dst, size_t *dst_size,
1948 const unsigned char *src, size_t src_size)
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001949{
1950 u8 current_bit_offset = 0;
1951 size_t src_byte_offset = 0;
1952 size_t dst_byte_offset = 0;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001953
1954 if (dst == NULL) {
Tyler Hicks4a266202011-11-05 13:45:08 -04001955 (*dst_size) = ecryptfs_max_decoded_size(src_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001956 goto out;
1957 }
1958 while (src_byte_offset < src_size) {
1959 unsigned char src_byte =
1960 filename_rev_map[(int)src[src_byte_offset]];
1961
1962 switch (current_bit_offset) {
1963 case 0:
1964 dst[dst_byte_offset] = (src_byte << 2);
1965 current_bit_offset = 6;
1966 break;
1967 case 6:
1968 dst[dst_byte_offset++] |= (src_byte >> 4);
1969 dst[dst_byte_offset] = ((src_byte & 0xF)
1970 << 4);
1971 current_bit_offset = 4;
1972 break;
1973 case 4:
1974 dst[dst_byte_offset++] |= (src_byte >> 2);
1975 dst[dst_byte_offset] = (src_byte << 6);
1976 current_bit_offset = 2;
1977 break;
1978 case 2:
1979 dst[dst_byte_offset++] |= (src_byte);
1980 dst[dst_byte_offset] = 0;
1981 current_bit_offset = 0;
1982 break;
1983 }
1984 src_byte_offset++;
1985 }
1986 (*dst_size) = dst_byte_offset;
1987out:
Michael Halcrow71c11c32009-01-06 14:42:05 -08001988 return;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08001989}
1990
1991/**
1992 * ecryptfs_encrypt_and_encode_filename - converts a plaintext file name to cipher text
1993 * @crypt_stat: The crypt_stat struct associated with the file anem to encode
1994 * @name: The plaintext name
1995 * @length: The length of the plaintext
1996 * @encoded_name: The encypted name
1997 *
1998 * Encrypts and encodes a filename into something that constitutes a
1999 * valid filename for a filesystem, with printable characters.
2000 *
2001 * We assume that we have a properly initialized crypto context,
2002 * pointed to by crypt_stat->tfm.
2003 *
2004 * Returns zero on success; non-zero on otherwise
2005 */
2006int ecryptfs_encrypt_and_encode_filename(
2007 char **encoded_name,
2008 size_t *encoded_name_size,
2009 struct ecryptfs_crypt_stat *crypt_stat,
2010 struct ecryptfs_mount_crypt_stat *mount_crypt_stat,
2011 const char *name, size_t name_size)
2012{
2013 size_t encoded_name_no_prefix_size;
2014 int rc = 0;
2015
2016 (*encoded_name) = NULL;
2017 (*encoded_name_size) = 0;
2018 if ((crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCRYPT_FILENAMES))
2019 || (mount_crypt_stat && (mount_crypt_stat->flags
2020 & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES))) {
2021 struct ecryptfs_filename *filename;
2022
2023 filename = kzalloc(sizeof(*filename), GFP_KERNEL);
2024 if (!filename) {
2025 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowa8f12862009-01-06 14:42:03 -08002026 "to kzalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002027 sizeof(*filename));
2028 rc = -ENOMEM;
2029 goto out;
2030 }
2031 filename->filename = (char *)name;
2032 filename->filename_size = name_size;
2033 rc = ecryptfs_encrypt_filename(filename, crypt_stat,
2034 mount_crypt_stat);
2035 if (rc) {
2036 printk(KERN_ERR "%s: Error attempting to encrypt "
2037 "filename; rc = [%d]\n", __func__, rc);
2038 kfree(filename);
2039 goto out;
2040 }
2041 ecryptfs_encode_for_filename(
2042 NULL, &encoded_name_no_prefix_size,
2043 filename->encrypted_filename,
2044 filename->encrypted_filename_size);
2045 if ((crypt_stat && (crypt_stat->flags
2046 & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2047 || (mount_crypt_stat
2048 && (mount_crypt_stat->flags
2049 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)))
2050 (*encoded_name_size) =
2051 (ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2052 + encoded_name_no_prefix_size);
2053 else
2054 (*encoded_name_size) =
2055 (ECRYPTFS_FEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2056 + encoded_name_no_prefix_size);
2057 (*encoded_name) = kmalloc((*encoded_name_size) + 1, GFP_KERNEL);
2058 if (!(*encoded_name)) {
2059 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowa8f12862009-01-06 14:42:03 -08002060 "to kzalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002061 (*encoded_name_size));
2062 rc = -ENOMEM;
2063 kfree(filename->encrypted_filename);
2064 kfree(filename);
2065 goto out;
2066 }
2067 if ((crypt_stat && (crypt_stat->flags
2068 & ECRYPTFS_ENCFN_USE_MOUNT_FNEK))
2069 || (mount_crypt_stat
2070 && (mount_crypt_stat->flags
2071 & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))) {
2072 memcpy((*encoded_name),
2073 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2074 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE);
2075 ecryptfs_encode_for_filename(
2076 ((*encoded_name)
2077 + ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE),
2078 &encoded_name_no_prefix_size,
2079 filename->encrypted_filename,
2080 filename->encrypted_filename_size);
2081 (*encoded_name_size) =
2082 (ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
2083 + encoded_name_no_prefix_size);
2084 (*encoded_name)[(*encoded_name_size)] = '\0';
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002085 } else {
Tyler Hicksdf6ad332009-08-21 04:27:46 -05002086 rc = -EOPNOTSUPP;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002087 }
2088 if (rc) {
2089 printk(KERN_ERR "%s: Error attempting to encode "
2090 "encrypted filename; rc = [%d]\n", __func__,
2091 rc);
2092 kfree((*encoded_name));
2093 (*encoded_name) = NULL;
2094 (*encoded_name_size) = 0;
2095 }
2096 kfree(filename->encrypted_filename);
2097 kfree(filename);
2098 } else {
2099 rc = ecryptfs_copy_filename(encoded_name,
2100 encoded_name_size,
2101 name, name_size);
2102 }
2103out:
2104 return rc;
2105}
2106
2107/**
2108 * ecryptfs_decode_and_decrypt_filename - converts the encoded cipher text name to decoded plaintext
2109 * @plaintext_name: The plaintext name
2110 * @plaintext_name_size: The plaintext name size
2111 * @ecryptfs_dir_dentry: eCryptfs directory dentry
2112 * @name: The filename in cipher text
2113 * @name_size: The cipher text name size
2114 *
2115 * Decrypts and decodes the filename.
2116 *
2117 * Returns zero on error; non-zero otherwise
2118 */
2119int ecryptfs_decode_and_decrypt_filename(char **plaintext_name,
2120 size_t *plaintext_name_size,
2121 struct dentry *ecryptfs_dir_dentry,
2122 const char *name, size_t name_size)
2123{
Tyler Hicks2aac0cf2009-03-20 02:23:57 -05002124 struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
2125 &ecryptfs_superblock_to_private(
2126 ecryptfs_dir_dentry->d_sb)->mount_crypt_stat;
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002127 char *decoded_name;
2128 size_t decoded_name_size;
2129 size_t packet_size;
2130 int rc = 0;
2131
Tyler Hicks2aac0cf2009-03-20 02:23:57 -05002132 if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
2133 && !(mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
2134 && (name_size > ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE)
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002135 && (strncmp(name, ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
2136 ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE) == 0)) {
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002137 const char *orig_name = name;
2138 size_t orig_name_size = name_size;
2139
2140 name += ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2141 name_size -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
Michael Halcrow71c11c32009-01-06 14:42:05 -08002142 ecryptfs_decode_from_filename(NULL, &decoded_name_size,
2143 name, name_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002144 decoded_name = kmalloc(decoded_name_size, GFP_KERNEL);
2145 if (!decoded_name) {
2146 printk(KERN_ERR "%s: Out of memory whilst attempting "
Michael Halcrowdf261c52009-01-06 14:42:02 -08002147 "to kmalloc [%zd] bytes\n", __func__,
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002148 decoded_name_size);
2149 rc = -ENOMEM;
2150 goto out;
2151 }
Michael Halcrow71c11c32009-01-06 14:42:05 -08002152 ecryptfs_decode_from_filename(decoded_name, &decoded_name_size,
2153 name, name_size);
Michael Halcrow51ca58d2009-01-06 14:41:59 -08002154 rc = ecryptfs_parse_tag_70_packet(plaintext_name,
2155 plaintext_name_size,
2156 &packet_size,
2157 mount_crypt_stat,
2158 decoded_name,
2159 decoded_name_size);
2160 if (rc) {
2161 printk(KERN_INFO "%s: Could not parse tag 70 packet "
2162 "from filename; copying through filename "
2163 "as-is\n", __func__);
2164 rc = ecryptfs_copy_filename(plaintext_name,
2165 plaintext_name_size,
2166 orig_name, orig_name_size);
2167 goto out_free;
2168 }
2169 } else {
2170 rc = ecryptfs_copy_filename(plaintext_name,
2171 plaintext_name_size,
2172 name, name_size);
2173 goto out;
2174 }
2175out_free:
2176 kfree(decoded_name);
2177out:
2178 return rc;
2179}
Tyler Hicks4a266202011-11-05 13:45:08 -04002180
2181#define ENC_NAME_MAX_BLOCKLEN_8_OR_16 143
2182
2183int ecryptfs_set_f_namelen(long *namelen, long lower_namelen,
2184 struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
2185{
2186 struct blkcipher_desc desc;
2187 struct mutex *tfm_mutex;
2188 size_t cipher_blocksize;
2189 int rc;
2190
2191 if (!(mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)) {
2192 (*namelen) = lower_namelen;
2193 return 0;
2194 }
2195
2196 rc = ecryptfs_get_tfm_and_mutex_for_cipher_name(&desc.tfm, &tfm_mutex,
2197 mount_crypt_stat->global_default_fn_cipher_name);
2198 if (unlikely(rc)) {
2199 (*namelen) = 0;
2200 return rc;
2201 }
2202
2203 mutex_lock(tfm_mutex);
2204 cipher_blocksize = crypto_blkcipher_blocksize(desc.tfm);
2205 mutex_unlock(tfm_mutex);
2206
2207 /* Return an exact amount for the common cases */
2208 if (lower_namelen == NAME_MAX
2209 && (cipher_blocksize == 8 || cipher_blocksize == 16)) {
2210 (*namelen) = ENC_NAME_MAX_BLOCKLEN_8_OR_16;
2211 return 0;
2212 }
2213
2214 /* Return a safe estimate for the uncommon cases */
2215 (*namelen) = lower_namelen;
2216 (*namelen) -= ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE;
2217 /* Since this is the max decoded size, subtract 1 "decoded block" len */
2218 (*namelen) = ecryptfs_max_decoded_size(*namelen) - 3;
2219 (*namelen) -= ECRYPTFS_TAG_70_MAX_METADATA_SIZE;
2220 (*namelen) -= ECRYPTFS_FILENAME_MIN_RANDOM_PREPEND_BYTES;
2221 /* Worst case is that the filename is padded nearly a full block size */
2222 (*namelen) -= cipher_blocksize - 1;
2223
2224 if ((*namelen) < 0)
2225 (*namelen) = 0;
2226
2227 return 0;
2228}