1237fead6SMichael Halcrow /** 2237fead6SMichael Halcrow * eCryptfs: Linux filesystem encryption layer 3237fead6SMichael Halcrow * 4237fead6SMichael Halcrow * Copyright (C) 1997-2004 Erez Zadok 5237fead6SMichael Halcrow * Copyright (C) 2001-2004 Stony Brook University 6237fead6SMichael Halcrow * Copyright (C) 2004-2006 International Business Machines Corp. 7237fead6SMichael Halcrow * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com> 8237fead6SMichael Halcrow * Michael C. Thompson <mcthomps@us.ibm.com> 9237fead6SMichael Halcrow * 10237fead6SMichael Halcrow * This program is free software; you can redistribute it and/or 11237fead6SMichael Halcrow * modify it under the terms of the GNU General Public License as 12237fead6SMichael Halcrow * published by the Free Software Foundation; either version 2 of the 13237fead6SMichael Halcrow * License, or (at your option) any later version. 14237fead6SMichael Halcrow * 15237fead6SMichael Halcrow * This program is distributed in the hope that it will be useful, but 16237fead6SMichael Halcrow * WITHOUT ANY WARRANTY; without even the implied warranty of 17237fead6SMichael Halcrow * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18237fead6SMichael Halcrow * General Public License for more details. 19237fead6SMichael Halcrow * 20237fead6SMichael Halcrow * You should have received a copy of the GNU General Public License 21237fead6SMichael Halcrow * along with this program; if not, write to the Free Software 22237fead6SMichael Halcrow * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 23237fead6SMichael Halcrow * 02111-1307, USA. 24237fead6SMichael Halcrow */ 25237fead6SMichael Halcrow 26237fead6SMichael Halcrow #include <linux/fs.h> 27237fead6SMichael Halcrow #include <linux/mount.h> 28237fead6SMichael Halcrow #include <linux/pagemap.h> 29237fead6SMichael Halcrow #include <linux/random.h> 30237fead6SMichael Halcrow #include <linux/compiler.h> 31237fead6SMichael Halcrow #include <linux/key.h> 32237fead6SMichael Halcrow #include <linux/namei.h> 33237fead6SMichael Halcrow #include <linux/crypto.h> 34237fead6SMichael Halcrow #include <linux/file.h> 35237fead6SMichael Halcrow #include <linux/scatterlist.h> 36237fead6SMichael Halcrow #include "ecryptfs_kernel.h" 37237fead6SMichael Halcrow 38237fead6SMichael Halcrow static int 39237fead6SMichael Halcrow ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat, 40237fead6SMichael Halcrow struct page *dst_page, int dst_offset, 41237fead6SMichael Halcrow struct page *src_page, int src_offset, int size, 42237fead6SMichael Halcrow unsigned char *iv); 43237fead6SMichael Halcrow static int 44237fead6SMichael Halcrow ecryptfs_encrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat, 45237fead6SMichael Halcrow struct page *dst_page, int dst_offset, 46237fead6SMichael Halcrow struct page *src_page, int src_offset, int size, 47237fead6SMichael Halcrow unsigned char *iv); 48237fead6SMichael Halcrow 49237fead6SMichael Halcrow /** 50237fead6SMichael Halcrow * ecryptfs_to_hex 51237fead6SMichael Halcrow * @dst: Buffer to take hex character representation of contents of 52237fead6SMichael Halcrow * src; must be at least of size (src_size * 2) 53237fead6SMichael Halcrow * @src: Buffer to be converted to a hex string respresentation 54237fead6SMichael Halcrow * @src_size: number of bytes to convert 55237fead6SMichael Halcrow */ 56237fead6SMichael Halcrow void ecryptfs_to_hex(char *dst, char *src, size_t src_size) 57237fead6SMichael Halcrow { 58237fead6SMichael Halcrow int x; 59237fead6SMichael Halcrow 60237fead6SMichael Halcrow for (x = 0; x < src_size; x++) 61237fead6SMichael Halcrow sprintf(&dst[x * 2], "%.2x", (unsigned char)src[x]); 62237fead6SMichael Halcrow } 63237fead6SMichael Halcrow 64237fead6SMichael Halcrow /** 65237fead6SMichael Halcrow * ecryptfs_from_hex 66237fead6SMichael Halcrow * @dst: Buffer to take the bytes from src hex; must be at least of 67237fead6SMichael Halcrow * size (src_size / 2) 68237fead6SMichael Halcrow * @src: Buffer to be converted from a hex string respresentation to raw value 69237fead6SMichael Halcrow * @dst_size: size of dst buffer, or number of hex characters pairs to convert 70237fead6SMichael Halcrow */ 71237fead6SMichael Halcrow void ecryptfs_from_hex(char *dst, char *src, int dst_size) 72237fead6SMichael Halcrow { 73237fead6SMichael Halcrow int x; 74237fead6SMichael Halcrow char tmp[3] = { 0, }; 75237fead6SMichael Halcrow 76237fead6SMichael Halcrow for (x = 0; x < dst_size; x++) { 77237fead6SMichael Halcrow tmp[0] = src[x * 2]; 78237fead6SMichael Halcrow tmp[1] = src[x * 2 + 1]; 79237fead6SMichael Halcrow dst[x] = (unsigned char)simple_strtol(tmp, NULL, 16); 80237fead6SMichael Halcrow } 81237fead6SMichael Halcrow } 82237fead6SMichael Halcrow 83237fead6SMichael Halcrow /** 84237fead6SMichael Halcrow * ecryptfs_calculate_md5 - calculates the md5 of @src 85237fead6SMichael Halcrow * @dst: Pointer to 16 bytes of allocated memory 86237fead6SMichael Halcrow * @crypt_stat: Pointer to crypt_stat struct for the current inode 87237fead6SMichael Halcrow * @src: Data to be md5'd 88237fead6SMichael Halcrow * @len: Length of @src 89237fead6SMichael Halcrow * 90237fead6SMichael Halcrow * Uses the allocated crypto context that crypt_stat references to 91237fead6SMichael Halcrow * generate the MD5 sum of the contents of src. 92237fead6SMichael Halcrow */ 93237fead6SMichael Halcrow static int ecryptfs_calculate_md5(char *dst, 94237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat, 95237fead6SMichael Halcrow char *src, int len) 96237fead6SMichael Halcrow { 97237fead6SMichael Halcrow struct scatterlist sg; 98565d9724SMichael Halcrow struct hash_desc desc = { 99565d9724SMichael Halcrow .tfm = crypt_stat->hash_tfm, 100565d9724SMichael Halcrow .flags = CRYPTO_TFM_REQ_MAY_SLEEP 101565d9724SMichael Halcrow }; 102565d9724SMichael Halcrow int rc = 0; 103237fead6SMichael Halcrow 104565d9724SMichael Halcrow mutex_lock(&crypt_stat->cs_hash_tfm_mutex); 105237fead6SMichael Halcrow sg_init_one(&sg, (u8 *)src, len); 106565d9724SMichael Halcrow if (!desc.tfm) { 107565d9724SMichael Halcrow desc.tfm = crypto_alloc_hash(ECRYPTFS_DEFAULT_HASH, 0, 108565d9724SMichael Halcrow CRYPTO_ALG_ASYNC); 109565d9724SMichael Halcrow if (IS_ERR(desc.tfm)) { 110565d9724SMichael Halcrow rc = PTR_ERR(desc.tfm); 111237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to " 112565d9724SMichael Halcrow "allocate crypto context; rc = [%d]\n", 113565d9724SMichael Halcrow rc); 114237fead6SMichael Halcrow goto out; 115237fead6SMichael Halcrow } 116565d9724SMichael Halcrow crypt_stat->hash_tfm = desc.tfm; 117237fead6SMichael Halcrow } 118565d9724SMichael Halcrow crypto_hash_init(&desc); 119565d9724SMichael Halcrow crypto_hash_update(&desc, &sg, len); 120565d9724SMichael Halcrow crypto_hash_final(&desc, dst); 121565d9724SMichael Halcrow mutex_unlock(&crypt_stat->cs_hash_tfm_mutex); 122237fead6SMichael Halcrow out: 123237fead6SMichael Halcrow return rc; 124237fead6SMichael Halcrow } 125237fead6SMichael Halcrow 126*8bba066fSMichael Halcrow int ecryptfs_crypto_api_algify_cipher_name(char **algified_name, 127*8bba066fSMichael Halcrow char *cipher_name, 128*8bba066fSMichael Halcrow char *chaining_modifier) 129*8bba066fSMichael Halcrow { 130*8bba066fSMichael Halcrow int cipher_name_len = strlen(cipher_name); 131*8bba066fSMichael Halcrow int chaining_modifier_len = strlen(chaining_modifier); 132*8bba066fSMichael Halcrow int algified_name_len; 133*8bba066fSMichael Halcrow int rc; 134*8bba066fSMichael Halcrow 135*8bba066fSMichael Halcrow algified_name_len = (chaining_modifier_len + cipher_name_len + 3); 136*8bba066fSMichael Halcrow (*algified_name) = kmalloc(algified_name_len, GFP_KERNEL); 137*8bba066fSMichael Halcrow if (!(algified_name)) { 138*8bba066fSMichael Halcrow rc = -ENOMEM; 139*8bba066fSMichael Halcrow goto out; 140*8bba066fSMichael Halcrow } 141*8bba066fSMichael Halcrow snprintf((*algified_name), algified_name_len, "%s(%s)", 142*8bba066fSMichael Halcrow chaining_modifier, cipher_name); 143*8bba066fSMichael Halcrow rc = 0; 144*8bba066fSMichael Halcrow out: 145*8bba066fSMichael Halcrow return rc; 146*8bba066fSMichael Halcrow } 147*8bba066fSMichael Halcrow 148237fead6SMichael Halcrow /** 149237fead6SMichael Halcrow * ecryptfs_derive_iv 150237fead6SMichael Halcrow * @iv: destination for the derived iv vale 151237fead6SMichael Halcrow * @crypt_stat: Pointer to crypt_stat struct for the current inode 152237fead6SMichael Halcrow * @offset: Offset of the page whose's iv we are to derive 153237fead6SMichael Halcrow * 154237fead6SMichael Halcrow * Generate the initialization vector from the given root IV and page 155237fead6SMichael Halcrow * offset. 156237fead6SMichael Halcrow * 157237fead6SMichael Halcrow * Returns zero on success; non-zero on error. 158237fead6SMichael Halcrow */ 159237fead6SMichael Halcrow static int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat, 160237fead6SMichael Halcrow pgoff_t offset) 161237fead6SMichael Halcrow { 162237fead6SMichael Halcrow int rc = 0; 163237fead6SMichael Halcrow char dst[MD5_DIGEST_SIZE]; 164237fead6SMichael Halcrow char src[ECRYPTFS_MAX_IV_BYTES + 16]; 165237fead6SMichael Halcrow 166237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 167237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "root iv:\n"); 168237fead6SMichael Halcrow ecryptfs_dump_hex(crypt_stat->root_iv, crypt_stat->iv_bytes); 169237fead6SMichael Halcrow } 170237fead6SMichael Halcrow /* TODO: It is probably secure to just cast the least 171237fead6SMichael Halcrow * significant bits of the root IV into an unsigned long and 172237fead6SMichael Halcrow * add the offset to that rather than go through all this 173237fead6SMichael Halcrow * hashing business. -Halcrow */ 174237fead6SMichael Halcrow memcpy(src, crypt_stat->root_iv, crypt_stat->iv_bytes); 175237fead6SMichael Halcrow memset((src + crypt_stat->iv_bytes), 0, 16); 176237fead6SMichael Halcrow snprintf((src + crypt_stat->iv_bytes), 16, "%ld", offset); 177237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 178237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "source:\n"); 179237fead6SMichael Halcrow ecryptfs_dump_hex(src, (crypt_stat->iv_bytes + 16)); 180237fead6SMichael Halcrow } 181237fead6SMichael Halcrow rc = ecryptfs_calculate_md5(dst, crypt_stat, src, 182237fead6SMichael Halcrow (crypt_stat->iv_bytes + 16)); 183237fead6SMichael Halcrow if (rc) { 184237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Error attempting to compute " 185237fead6SMichael Halcrow "MD5 while generating IV for a page\n"); 186237fead6SMichael Halcrow goto out; 187237fead6SMichael Halcrow } 188237fead6SMichael Halcrow memcpy(iv, dst, crypt_stat->iv_bytes); 189237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 190237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "derived iv:\n"); 191237fead6SMichael Halcrow ecryptfs_dump_hex(iv, crypt_stat->iv_bytes); 192237fead6SMichael Halcrow } 193237fead6SMichael Halcrow out: 194237fead6SMichael Halcrow return rc; 195237fead6SMichael Halcrow } 196237fead6SMichael Halcrow 197237fead6SMichael Halcrow /** 198237fead6SMichael Halcrow * ecryptfs_init_crypt_stat 199237fead6SMichael Halcrow * @crypt_stat: Pointer to the crypt_stat struct to initialize. 200237fead6SMichael Halcrow * 201237fead6SMichael Halcrow * Initialize the crypt_stat structure. 202237fead6SMichael Halcrow */ 203237fead6SMichael Halcrow void 204237fead6SMichael Halcrow ecryptfs_init_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat) 205237fead6SMichael Halcrow { 206237fead6SMichael Halcrow memset((void *)crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat)); 207237fead6SMichael Halcrow mutex_init(&crypt_stat->cs_mutex); 208237fead6SMichael Halcrow mutex_init(&crypt_stat->cs_tfm_mutex); 209565d9724SMichael Halcrow mutex_init(&crypt_stat->cs_hash_tfm_mutex); 210237fead6SMichael Halcrow ECRYPTFS_SET_FLAG(crypt_stat->flags, ECRYPTFS_STRUCT_INITIALIZED); 211237fead6SMichael Halcrow } 212237fead6SMichael Halcrow 213237fead6SMichael Halcrow /** 214237fead6SMichael Halcrow * ecryptfs_destruct_crypt_stat 215237fead6SMichael Halcrow * @crypt_stat: Pointer to the crypt_stat struct to initialize. 216237fead6SMichael Halcrow * 217237fead6SMichael Halcrow * Releases all memory associated with a crypt_stat struct. 218237fead6SMichael Halcrow */ 219237fead6SMichael Halcrow void ecryptfs_destruct_crypt_stat(struct ecryptfs_crypt_stat *crypt_stat) 220237fead6SMichael Halcrow { 221237fead6SMichael Halcrow if (crypt_stat->tfm) 222*8bba066fSMichael Halcrow crypto_free_blkcipher(crypt_stat->tfm); 223565d9724SMichael Halcrow if (crypt_stat->hash_tfm) 224565d9724SMichael Halcrow crypto_free_hash(crypt_stat->hash_tfm); 225237fead6SMichael Halcrow memset(crypt_stat, 0, sizeof(struct ecryptfs_crypt_stat)); 226237fead6SMichael Halcrow } 227237fead6SMichael Halcrow 228237fead6SMichael Halcrow void ecryptfs_destruct_mount_crypt_stat( 229237fead6SMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat) 230237fead6SMichael Halcrow { 231237fead6SMichael Halcrow if (mount_crypt_stat->global_auth_tok_key) 232237fead6SMichael Halcrow key_put(mount_crypt_stat->global_auth_tok_key); 233237fead6SMichael Halcrow if (mount_crypt_stat->global_key_tfm) 234*8bba066fSMichael Halcrow crypto_free_blkcipher(mount_crypt_stat->global_key_tfm); 235237fead6SMichael Halcrow memset(mount_crypt_stat, 0, sizeof(struct ecryptfs_mount_crypt_stat)); 236237fead6SMichael Halcrow } 237237fead6SMichael Halcrow 238237fead6SMichael Halcrow /** 239237fead6SMichael Halcrow * virt_to_scatterlist 240237fead6SMichael Halcrow * @addr: Virtual address 241237fead6SMichael Halcrow * @size: Size of data; should be an even multiple of the block size 242237fead6SMichael Halcrow * @sg: Pointer to scatterlist array; set to NULL to obtain only 243237fead6SMichael Halcrow * the number of scatterlist structs required in array 244237fead6SMichael Halcrow * @sg_size: Max array size 245237fead6SMichael Halcrow * 246237fead6SMichael Halcrow * Fills in a scatterlist array with page references for a passed 247237fead6SMichael Halcrow * virtual address. 248237fead6SMichael Halcrow * 249237fead6SMichael Halcrow * Returns the number of scatterlist structs in array used 250237fead6SMichael Halcrow */ 251237fead6SMichael Halcrow int virt_to_scatterlist(const void *addr, int size, struct scatterlist *sg, 252237fead6SMichael Halcrow int sg_size) 253237fead6SMichael Halcrow { 254237fead6SMichael Halcrow int i = 0; 255237fead6SMichael Halcrow struct page *pg; 256237fead6SMichael Halcrow int offset; 257237fead6SMichael Halcrow int remainder_of_page; 258237fead6SMichael Halcrow 259237fead6SMichael Halcrow while (size > 0 && i < sg_size) { 260237fead6SMichael Halcrow pg = virt_to_page(addr); 261237fead6SMichael Halcrow offset = offset_in_page(addr); 262237fead6SMichael Halcrow if (sg) { 263237fead6SMichael Halcrow sg[i].page = pg; 264237fead6SMichael Halcrow sg[i].offset = offset; 265237fead6SMichael Halcrow } 266237fead6SMichael Halcrow remainder_of_page = PAGE_CACHE_SIZE - offset; 267237fead6SMichael Halcrow if (size >= remainder_of_page) { 268237fead6SMichael Halcrow if (sg) 269237fead6SMichael Halcrow sg[i].length = remainder_of_page; 270237fead6SMichael Halcrow addr += remainder_of_page; 271237fead6SMichael Halcrow size -= remainder_of_page; 272237fead6SMichael Halcrow } else { 273237fead6SMichael Halcrow if (sg) 274237fead6SMichael Halcrow sg[i].length = size; 275237fead6SMichael Halcrow addr += size; 276237fead6SMichael Halcrow size = 0; 277237fead6SMichael Halcrow } 278237fead6SMichael Halcrow i++; 279237fead6SMichael Halcrow } 280237fead6SMichael Halcrow if (size > 0) 281237fead6SMichael Halcrow return -ENOMEM; 282237fead6SMichael Halcrow return i; 283237fead6SMichael Halcrow } 284237fead6SMichael Halcrow 285237fead6SMichael Halcrow /** 286237fead6SMichael Halcrow * encrypt_scatterlist 287237fead6SMichael Halcrow * @crypt_stat: Pointer to the crypt_stat struct to initialize. 288237fead6SMichael Halcrow * @dest_sg: Destination of encrypted data 289237fead6SMichael Halcrow * @src_sg: Data to be encrypted 290237fead6SMichael Halcrow * @size: Length of data to be encrypted 291237fead6SMichael Halcrow * @iv: iv to use during encryption 292237fead6SMichael Halcrow * 293237fead6SMichael Halcrow * Returns the number of bytes encrypted; negative value on error 294237fead6SMichael Halcrow */ 295237fead6SMichael Halcrow static int encrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat, 296237fead6SMichael Halcrow struct scatterlist *dest_sg, 297237fead6SMichael Halcrow struct scatterlist *src_sg, int size, 298237fead6SMichael Halcrow unsigned char *iv) 299237fead6SMichael Halcrow { 300*8bba066fSMichael Halcrow struct blkcipher_desc desc = { 301*8bba066fSMichael Halcrow .tfm = crypt_stat->tfm, 302*8bba066fSMichael Halcrow .info = iv, 303*8bba066fSMichael Halcrow .flags = CRYPTO_TFM_REQ_MAY_SLEEP 304*8bba066fSMichael Halcrow }; 305237fead6SMichael Halcrow int rc = 0; 306237fead6SMichael Halcrow 307237fead6SMichael Halcrow BUG_ON(!crypt_stat || !crypt_stat->tfm 308237fead6SMichael Halcrow || !ECRYPTFS_CHECK_FLAG(crypt_stat->flags, 309237fead6SMichael Halcrow ECRYPTFS_STRUCT_INITIALIZED)); 310237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 311237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Key size [%d]; key:\n", 312237fead6SMichael Halcrow crypt_stat->key_size); 313237fead6SMichael Halcrow ecryptfs_dump_hex(crypt_stat->key, 314237fead6SMichael Halcrow crypt_stat->key_size); 315237fead6SMichael Halcrow } 316237fead6SMichael Halcrow /* Consider doing this once, when the file is opened */ 317237fead6SMichael Halcrow mutex_lock(&crypt_stat->cs_tfm_mutex); 318*8bba066fSMichael Halcrow rc = crypto_blkcipher_setkey(crypt_stat->tfm, crypt_stat->key, 319237fead6SMichael Halcrow crypt_stat->key_size); 320237fead6SMichael Halcrow if (rc) { 321237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error setting key; rc = [%d]\n", 322237fead6SMichael Halcrow rc); 323237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_tfm_mutex); 324237fead6SMichael Halcrow rc = -EINVAL; 325237fead6SMichael Halcrow goto out; 326237fead6SMichael Halcrow } 327237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Encrypting [%d] bytes.\n", size); 328*8bba066fSMichael Halcrow crypto_blkcipher_encrypt_iv(&desc, dest_sg, src_sg, size); 329237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_tfm_mutex); 330237fead6SMichael Halcrow out: 331237fead6SMichael Halcrow return rc; 332237fead6SMichael Halcrow } 333237fead6SMichael Halcrow 334237fead6SMichael Halcrow static void 335237fead6SMichael Halcrow ecryptfs_extent_to_lwr_pg_idx_and_offset(unsigned long *lower_page_idx, 336237fead6SMichael Halcrow int *byte_offset, 337237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat, 338237fead6SMichael Halcrow unsigned long extent_num) 339237fead6SMichael Halcrow { 340237fead6SMichael Halcrow unsigned long lower_extent_num; 341237fead6SMichael Halcrow int extents_occupied_by_headers_at_front; 342237fead6SMichael Halcrow int bytes_occupied_by_headers_at_front; 343237fead6SMichael Halcrow int extent_offset; 344237fead6SMichael Halcrow int extents_per_page; 345237fead6SMichael Halcrow 346237fead6SMichael Halcrow bytes_occupied_by_headers_at_front = 347237fead6SMichael Halcrow ( crypt_stat->header_extent_size 348237fead6SMichael Halcrow * crypt_stat->num_header_extents_at_front ); 349237fead6SMichael Halcrow extents_occupied_by_headers_at_front = 350237fead6SMichael Halcrow ( bytes_occupied_by_headers_at_front 351237fead6SMichael Halcrow / crypt_stat->extent_size ); 352237fead6SMichael Halcrow lower_extent_num = extents_occupied_by_headers_at_front + extent_num; 353237fead6SMichael Halcrow extents_per_page = PAGE_CACHE_SIZE / crypt_stat->extent_size; 354237fead6SMichael Halcrow (*lower_page_idx) = lower_extent_num / extents_per_page; 355237fead6SMichael Halcrow extent_offset = lower_extent_num % extents_per_page; 356237fead6SMichael Halcrow (*byte_offset) = extent_offset * crypt_stat->extent_size; 357237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * crypt_stat->header_extent_size = " 358237fead6SMichael Halcrow "[%d]\n", crypt_stat->header_extent_size); 359237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * crypt_stat->" 360237fead6SMichael Halcrow "num_header_extents_at_front = [%d]\n", 361237fead6SMichael Halcrow crypt_stat->num_header_extents_at_front); 362237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * extents_occupied_by_headers_at_" 363237fead6SMichael Halcrow "front = [%d]\n", extents_occupied_by_headers_at_front); 364237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * lower_extent_num = [0x%.16x]\n", 365237fead6SMichael Halcrow lower_extent_num); 366237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * extents_per_page = [%d]\n", 367237fead6SMichael Halcrow extents_per_page); 368237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * (*lower_page_idx) = [0x%.16x]\n", 369237fead6SMichael Halcrow (*lower_page_idx)); 370237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * extent_offset = [%d]\n", 371237fead6SMichael Halcrow extent_offset); 372237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, " * (*byte_offset) = [%d]\n", 373237fead6SMichael Halcrow (*byte_offset)); 374237fead6SMichael Halcrow } 375237fead6SMichael Halcrow 376237fead6SMichael Halcrow static int ecryptfs_write_out_page(struct ecryptfs_page_crypt_context *ctx, 377237fead6SMichael Halcrow struct page *lower_page, 378237fead6SMichael Halcrow struct inode *lower_inode, 379237fead6SMichael Halcrow int byte_offset_in_page, int bytes_to_write) 380237fead6SMichael Halcrow { 381237fead6SMichael Halcrow int rc = 0; 382237fead6SMichael Halcrow 383237fead6SMichael Halcrow if (ctx->mode == ECRYPTFS_PREPARE_COMMIT_MODE) { 384237fead6SMichael Halcrow rc = ecryptfs_commit_lower_page(lower_page, lower_inode, 385237fead6SMichael Halcrow ctx->param.lower_file, 386237fead6SMichael Halcrow byte_offset_in_page, 387237fead6SMichael Halcrow bytes_to_write); 388237fead6SMichael Halcrow if (rc) { 389237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error calling lower " 390237fead6SMichael Halcrow "commit; rc = [%d]\n", rc); 391237fead6SMichael Halcrow goto out; 392237fead6SMichael Halcrow } 393237fead6SMichael Halcrow } else { 394237fead6SMichael Halcrow rc = ecryptfs_writepage_and_release_lower_page(lower_page, 395237fead6SMichael Halcrow lower_inode, 396237fead6SMichael Halcrow ctx->param.wbc); 397237fead6SMichael Halcrow if (rc) { 398237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error calling lower " 399237fead6SMichael Halcrow "writepage(); rc = [%d]\n", rc); 400237fead6SMichael Halcrow goto out; 401237fead6SMichael Halcrow } 402237fead6SMichael Halcrow } 403237fead6SMichael Halcrow out: 404237fead6SMichael Halcrow return rc; 405237fead6SMichael Halcrow } 406237fead6SMichael Halcrow 407237fead6SMichael Halcrow static int ecryptfs_read_in_page(struct ecryptfs_page_crypt_context *ctx, 408237fead6SMichael Halcrow struct page **lower_page, 409237fead6SMichael Halcrow struct inode *lower_inode, 410237fead6SMichael Halcrow unsigned long lower_page_idx, 411237fead6SMichael Halcrow int byte_offset_in_page) 412237fead6SMichael Halcrow { 413237fead6SMichael Halcrow int rc = 0; 414237fead6SMichael Halcrow 415237fead6SMichael Halcrow if (ctx->mode == ECRYPTFS_PREPARE_COMMIT_MODE) { 416237fead6SMichael Halcrow /* TODO: Limit this to only the data extents that are 417237fead6SMichael Halcrow * needed */ 418237fead6SMichael Halcrow rc = ecryptfs_get_lower_page(lower_page, lower_inode, 419237fead6SMichael Halcrow ctx->param.lower_file, 420237fead6SMichael Halcrow lower_page_idx, 421237fead6SMichael Halcrow byte_offset_in_page, 422237fead6SMichael Halcrow (PAGE_CACHE_SIZE 423237fead6SMichael Halcrow - byte_offset_in_page)); 424237fead6SMichael Halcrow if (rc) { 425237fead6SMichael Halcrow ecryptfs_printk( 426237fead6SMichael Halcrow KERN_ERR, "Error attempting to grab, map, " 427237fead6SMichael Halcrow "and prepare_write lower page with index " 428237fead6SMichael Halcrow "[0x%.16x]; rc = [%d]\n", lower_page_idx, rc); 429237fead6SMichael Halcrow goto out; 430237fead6SMichael Halcrow } 431237fead6SMichael Halcrow } else { 432237fead6SMichael Halcrow rc = ecryptfs_grab_and_map_lower_page(lower_page, NULL, 433237fead6SMichael Halcrow lower_inode, 434237fead6SMichael Halcrow lower_page_idx); 435237fead6SMichael Halcrow if (rc) { 436237fead6SMichael Halcrow ecryptfs_printk( 437237fead6SMichael Halcrow KERN_ERR, "Error attempting to grab and map " 438237fead6SMichael Halcrow "lower page with index [0x%.16x]; rc = [%d]\n", 439237fead6SMichael Halcrow lower_page_idx, rc); 440237fead6SMichael Halcrow goto out; 441237fead6SMichael Halcrow } 442237fead6SMichael Halcrow } 443237fead6SMichael Halcrow out: 444237fead6SMichael Halcrow return rc; 445237fead6SMichael Halcrow } 446237fead6SMichael Halcrow 447237fead6SMichael Halcrow /** 448237fead6SMichael Halcrow * ecryptfs_encrypt_page 449237fead6SMichael Halcrow * @ctx: The context of the page 450237fead6SMichael Halcrow * 451237fead6SMichael Halcrow * Encrypt an eCryptfs page. This is done on a per-extent basis. Note 452237fead6SMichael Halcrow * that eCryptfs pages may straddle the lower pages -- for instance, 453237fead6SMichael Halcrow * if the file was created on a machine with an 8K page size 454237fead6SMichael Halcrow * (resulting in an 8K header), and then the file is copied onto a 455237fead6SMichael Halcrow * host with a 32K page size, then when reading page 0 of the eCryptfs 456237fead6SMichael Halcrow * file, 24K of page 0 of the lower file will be read and decrypted, 457237fead6SMichael Halcrow * and then 8K of page 1 of the lower file will be read and decrypted. 458237fead6SMichael Halcrow * 459237fead6SMichael Halcrow * The actual operations performed on each page depends on the 460237fead6SMichael Halcrow * contents of the ecryptfs_page_crypt_context struct. 461237fead6SMichael Halcrow * 462237fead6SMichael Halcrow * Returns zero on success; negative on error 463237fead6SMichael Halcrow */ 464237fead6SMichael Halcrow int ecryptfs_encrypt_page(struct ecryptfs_page_crypt_context *ctx) 465237fead6SMichael Halcrow { 466237fead6SMichael Halcrow char extent_iv[ECRYPTFS_MAX_IV_BYTES]; 467237fead6SMichael Halcrow unsigned long base_extent; 468237fead6SMichael Halcrow unsigned long extent_offset = 0; 469237fead6SMichael Halcrow unsigned long lower_page_idx = 0; 470237fead6SMichael Halcrow unsigned long prior_lower_page_idx = 0; 471237fead6SMichael Halcrow struct page *lower_page; 472237fead6SMichael Halcrow struct inode *lower_inode; 473237fead6SMichael Halcrow struct ecryptfs_inode_info *inode_info; 474237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat; 475237fead6SMichael Halcrow int rc = 0; 476237fead6SMichael Halcrow int lower_byte_offset = 0; 477237fead6SMichael Halcrow int orig_byte_offset = 0; 478237fead6SMichael Halcrow int num_extents_per_page; 479237fead6SMichael Halcrow #define ECRYPTFS_PAGE_STATE_UNREAD 0 480237fead6SMichael Halcrow #define ECRYPTFS_PAGE_STATE_READ 1 481237fead6SMichael Halcrow #define ECRYPTFS_PAGE_STATE_MODIFIED 2 482237fead6SMichael Halcrow #define ECRYPTFS_PAGE_STATE_WRITTEN 3 483237fead6SMichael Halcrow int page_state; 484237fead6SMichael Halcrow 485237fead6SMichael Halcrow lower_inode = ecryptfs_inode_to_lower(ctx->page->mapping->host); 486237fead6SMichael Halcrow inode_info = ecryptfs_inode_to_private(ctx->page->mapping->host); 487237fead6SMichael Halcrow crypt_stat = &inode_info->crypt_stat; 488237fead6SMichael Halcrow if (!ECRYPTFS_CHECK_FLAG(crypt_stat->flags, ECRYPTFS_ENCRYPTED)) { 489237fead6SMichael Halcrow rc = ecryptfs_copy_page_to_lower(ctx->page, lower_inode, 490237fead6SMichael Halcrow ctx->param.lower_file); 491237fead6SMichael Halcrow if (rc) 492237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to copy " 493237fead6SMichael Halcrow "page at index [0x%.16x]\n", 494237fead6SMichael Halcrow ctx->page->index); 495237fead6SMichael Halcrow goto out; 496237fead6SMichael Halcrow } 497237fead6SMichael Halcrow num_extents_per_page = PAGE_CACHE_SIZE / crypt_stat->extent_size; 498237fead6SMichael Halcrow base_extent = (ctx->page->index * num_extents_per_page); 499237fead6SMichael Halcrow page_state = ECRYPTFS_PAGE_STATE_UNREAD; 500237fead6SMichael Halcrow while (extent_offset < num_extents_per_page) { 501237fead6SMichael Halcrow ecryptfs_extent_to_lwr_pg_idx_and_offset( 502237fead6SMichael Halcrow &lower_page_idx, &lower_byte_offset, crypt_stat, 503237fead6SMichael Halcrow (base_extent + extent_offset)); 504237fead6SMichael Halcrow if (prior_lower_page_idx != lower_page_idx 505237fead6SMichael Halcrow && page_state == ECRYPTFS_PAGE_STATE_MODIFIED) { 506237fead6SMichael Halcrow rc = ecryptfs_write_out_page(ctx, lower_page, 507237fead6SMichael Halcrow lower_inode, 508237fead6SMichael Halcrow orig_byte_offset, 509237fead6SMichael Halcrow (PAGE_CACHE_SIZE 510237fead6SMichael Halcrow - orig_byte_offset)); 511237fead6SMichael Halcrow if (rc) { 512237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting " 513237fead6SMichael Halcrow "to write out page; rc = [%d]" 514237fead6SMichael Halcrow "\n", rc); 515237fead6SMichael Halcrow goto out; 516237fead6SMichael Halcrow } 517237fead6SMichael Halcrow page_state = ECRYPTFS_PAGE_STATE_WRITTEN; 518237fead6SMichael Halcrow } 519237fead6SMichael Halcrow if (page_state == ECRYPTFS_PAGE_STATE_UNREAD 520237fead6SMichael Halcrow || page_state == ECRYPTFS_PAGE_STATE_WRITTEN) { 521237fead6SMichael Halcrow rc = ecryptfs_read_in_page(ctx, &lower_page, 522237fead6SMichael Halcrow lower_inode, lower_page_idx, 523237fead6SMichael Halcrow lower_byte_offset); 524237fead6SMichael Halcrow if (rc) { 525237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting " 526237fead6SMichael Halcrow "to read in lower page with " 527237fead6SMichael Halcrow "index [0x%.16x]; rc = [%d]\n", 528237fead6SMichael Halcrow lower_page_idx, rc); 529237fead6SMichael Halcrow goto out; 530237fead6SMichael Halcrow } 531237fead6SMichael Halcrow orig_byte_offset = lower_byte_offset; 532237fead6SMichael Halcrow prior_lower_page_idx = lower_page_idx; 533237fead6SMichael Halcrow page_state = ECRYPTFS_PAGE_STATE_READ; 534237fead6SMichael Halcrow } 535237fead6SMichael Halcrow BUG_ON(!(page_state == ECRYPTFS_PAGE_STATE_MODIFIED 536237fead6SMichael Halcrow || page_state == ECRYPTFS_PAGE_STATE_READ)); 537237fead6SMichael Halcrow rc = ecryptfs_derive_iv(extent_iv, crypt_stat, 538237fead6SMichael Halcrow (base_extent + extent_offset)); 539237fead6SMichael Halcrow if (rc) { 540237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to " 541237fead6SMichael Halcrow "derive IV for extent [0x%.16x]; " 542237fead6SMichael Halcrow "rc = [%d]\n", 543237fead6SMichael Halcrow (base_extent + extent_offset), rc); 544237fead6SMichael Halcrow goto out; 545237fead6SMichael Halcrow } 546237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 547237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Encrypting extent " 548237fead6SMichael Halcrow "with iv:\n"); 549237fead6SMichael Halcrow ecryptfs_dump_hex(extent_iv, crypt_stat->iv_bytes); 550237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "First 8 bytes before " 551237fead6SMichael Halcrow "encryption:\n"); 552237fead6SMichael Halcrow ecryptfs_dump_hex((char *) 553237fead6SMichael Halcrow (page_address(ctx->page) 554237fead6SMichael Halcrow + (extent_offset 555237fead6SMichael Halcrow * crypt_stat->extent_size)), 8); 556237fead6SMichael Halcrow } 557237fead6SMichael Halcrow rc = ecryptfs_encrypt_page_offset( 558237fead6SMichael Halcrow crypt_stat, lower_page, lower_byte_offset, ctx->page, 559237fead6SMichael Halcrow (extent_offset * crypt_stat->extent_size), 560237fead6SMichael Halcrow crypt_stat->extent_size, extent_iv); 561237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Encrypt extent [0x%.16x]; " 562237fead6SMichael Halcrow "rc = [%d]\n", 563237fead6SMichael Halcrow (base_extent + extent_offset), rc); 564237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 565237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "First 8 bytes after " 566237fead6SMichael Halcrow "encryption:\n"); 567237fead6SMichael Halcrow ecryptfs_dump_hex((char *)(page_address(lower_page) 568237fead6SMichael Halcrow + lower_byte_offset), 8); 569237fead6SMichael Halcrow } 570237fead6SMichael Halcrow page_state = ECRYPTFS_PAGE_STATE_MODIFIED; 571237fead6SMichael Halcrow extent_offset++; 572237fead6SMichael Halcrow } 573237fead6SMichael Halcrow BUG_ON(orig_byte_offset != 0); 574237fead6SMichael Halcrow rc = ecryptfs_write_out_page(ctx, lower_page, lower_inode, 0, 575237fead6SMichael Halcrow (lower_byte_offset 576237fead6SMichael Halcrow + crypt_stat->extent_size)); 577237fead6SMichael Halcrow if (rc) { 578237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to write out " 579237fead6SMichael Halcrow "page; rc = [%d]\n", rc); 580237fead6SMichael Halcrow goto out; 581237fead6SMichael Halcrow } 582237fead6SMichael Halcrow out: 583237fead6SMichael Halcrow return rc; 584237fead6SMichael Halcrow } 585237fead6SMichael Halcrow 586237fead6SMichael Halcrow /** 587237fead6SMichael Halcrow * ecryptfs_decrypt_page 588237fead6SMichael Halcrow * @file: The ecryptfs file 589237fead6SMichael Halcrow * @page: The page in ecryptfs to decrypt 590237fead6SMichael Halcrow * 591237fead6SMichael Halcrow * Decrypt an eCryptfs page. This is done on a per-extent basis. Note 592237fead6SMichael Halcrow * that eCryptfs pages may straddle the lower pages -- for instance, 593237fead6SMichael Halcrow * if the file was created on a machine with an 8K page size 594237fead6SMichael Halcrow * (resulting in an 8K header), and then the file is copied onto a 595237fead6SMichael Halcrow * host with a 32K page size, then when reading page 0 of the eCryptfs 596237fead6SMichael Halcrow * file, 24K of page 0 of the lower file will be read and decrypted, 597237fead6SMichael Halcrow * and then 8K of page 1 of the lower file will be read and decrypted. 598237fead6SMichael Halcrow * 599237fead6SMichael Halcrow * Returns zero on success; negative on error 600237fead6SMichael Halcrow */ 601237fead6SMichael Halcrow int ecryptfs_decrypt_page(struct file *file, struct page *page) 602237fead6SMichael Halcrow { 603237fead6SMichael Halcrow char extent_iv[ECRYPTFS_MAX_IV_BYTES]; 604237fead6SMichael Halcrow unsigned long base_extent; 605237fead6SMichael Halcrow unsigned long extent_offset = 0; 606237fead6SMichael Halcrow unsigned long lower_page_idx = 0; 607237fead6SMichael Halcrow unsigned long prior_lower_page_idx = 0; 608237fead6SMichael Halcrow struct page *lower_page; 609237fead6SMichael Halcrow char *lower_page_virt = NULL; 610237fead6SMichael Halcrow struct inode *lower_inode; 611237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat; 612237fead6SMichael Halcrow int rc = 0; 613237fead6SMichael Halcrow int byte_offset; 614237fead6SMichael Halcrow int num_extents_per_page; 615237fead6SMichael Halcrow int page_state; 616237fead6SMichael Halcrow 617237fead6SMichael Halcrow crypt_stat = &(ecryptfs_inode_to_private( 618237fead6SMichael Halcrow page->mapping->host)->crypt_stat); 619237fead6SMichael Halcrow lower_inode = ecryptfs_inode_to_lower(page->mapping->host); 620237fead6SMichael Halcrow if (!ECRYPTFS_CHECK_FLAG(crypt_stat->flags, ECRYPTFS_ENCRYPTED)) { 621237fead6SMichael Halcrow rc = ecryptfs_do_readpage(file, page, page->index); 622237fead6SMichael Halcrow if (rc) 623237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to copy " 624237fead6SMichael Halcrow "page at index [0x%.16x]\n", 625237fead6SMichael Halcrow page->index); 626237fead6SMichael Halcrow goto out; 627237fead6SMichael Halcrow } 628237fead6SMichael Halcrow num_extents_per_page = PAGE_CACHE_SIZE / crypt_stat->extent_size; 629237fead6SMichael Halcrow base_extent = (page->index * num_extents_per_page); 630237fead6SMichael Halcrow lower_page_virt = kmem_cache_alloc(ecryptfs_lower_page_cache, 631237fead6SMichael Halcrow SLAB_KERNEL); 632237fead6SMichael Halcrow if (!lower_page_virt) { 633237fead6SMichael Halcrow rc = -ENOMEM; 634237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error getting page for encrypted " 635237fead6SMichael Halcrow "lower page(s)\n"); 636237fead6SMichael Halcrow goto out; 637237fead6SMichael Halcrow } 638237fead6SMichael Halcrow lower_page = virt_to_page(lower_page_virt); 639237fead6SMichael Halcrow page_state = ECRYPTFS_PAGE_STATE_UNREAD; 640237fead6SMichael Halcrow while (extent_offset < num_extents_per_page) { 641237fead6SMichael Halcrow ecryptfs_extent_to_lwr_pg_idx_and_offset( 642237fead6SMichael Halcrow &lower_page_idx, &byte_offset, crypt_stat, 643237fead6SMichael Halcrow (base_extent + extent_offset)); 644237fead6SMichael Halcrow if (prior_lower_page_idx != lower_page_idx 645237fead6SMichael Halcrow || page_state == ECRYPTFS_PAGE_STATE_UNREAD) { 646237fead6SMichael Halcrow rc = ecryptfs_do_readpage(file, lower_page, 647237fead6SMichael Halcrow lower_page_idx); 648237fead6SMichael Halcrow if (rc) { 649237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error reading " 650237fead6SMichael Halcrow "lower encrypted page; rc = " 651237fead6SMichael Halcrow "[%d]\n", rc); 652237fead6SMichael Halcrow goto out; 653237fead6SMichael Halcrow } 654237fead6SMichael Halcrow prior_lower_page_idx = lower_page_idx; 655237fead6SMichael Halcrow page_state = ECRYPTFS_PAGE_STATE_READ; 656237fead6SMichael Halcrow } 657237fead6SMichael Halcrow rc = ecryptfs_derive_iv(extent_iv, crypt_stat, 658237fead6SMichael Halcrow (base_extent + extent_offset)); 659237fead6SMichael Halcrow if (rc) { 660237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to " 661237fead6SMichael Halcrow "derive IV for extent [0x%.16x]; rc = " 662237fead6SMichael Halcrow "[%d]\n", 663237fead6SMichael Halcrow (base_extent + extent_offset), rc); 664237fead6SMichael Halcrow goto out; 665237fead6SMichael Halcrow } 666237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 667237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Decrypting extent " 668237fead6SMichael Halcrow "with iv:\n"); 669237fead6SMichael Halcrow ecryptfs_dump_hex(extent_iv, crypt_stat->iv_bytes); 670237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "First 8 bytes before " 671237fead6SMichael Halcrow "decryption:\n"); 672237fead6SMichael Halcrow ecryptfs_dump_hex((lower_page_virt + byte_offset), 8); 673237fead6SMichael Halcrow } 674237fead6SMichael Halcrow rc = ecryptfs_decrypt_page_offset(crypt_stat, page, 675237fead6SMichael Halcrow (extent_offset 676237fead6SMichael Halcrow * crypt_stat->extent_size), 677237fead6SMichael Halcrow lower_page, byte_offset, 678237fead6SMichael Halcrow crypt_stat->extent_size, 679237fead6SMichael Halcrow extent_iv); 680237fead6SMichael Halcrow if (rc != crypt_stat->extent_size) { 681237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error attempting to " 682237fead6SMichael Halcrow "decrypt extent [0x%.16x]\n", 683237fead6SMichael Halcrow (base_extent + extent_offset)); 684237fead6SMichael Halcrow goto out; 685237fead6SMichael Halcrow } 686237fead6SMichael Halcrow rc = 0; 687237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 688237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "First 8 bytes after " 689237fead6SMichael Halcrow "decryption:\n"); 690237fead6SMichael Halcrow ecryptfs_dump_hex((char *)(page_address(page) 691237fead6SMichael Halcrow + byte_offset), 8); 692237fead6SMichael Halcrow } 693237fead6SMichael Halcrow extent_offset++; 694237fead6SMichael Halcrow } 695237fead6SMichael Halcrow out: 696237fead6SMichael Halcrow if (lower_page_virt) 697237fead6SMichael Halcrow kmem_cache_free(ecryptfs_lower_page_cache, lower_page_virt); 698237fead6SMichael Halcrow return rc; 699237fead6SMichael Halcrow } 700237fead6SMichael Halcrow 701237fead6SMichael Halcrow /** 702237fead6SMichael Halcrow * decrypt_scatterlist 703237fead6SMichael Halcrow * 704237fead6SMichael Halcrow * Returns the number of bytes decrypted; negative value on error 705237fead6SMichael Halcrow */ 706237fead6SMichael Halcrow static int decrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat, 707237fead6SMichael Halcrow struct scatterlist *dest_sg, 708237fead6SMichael Halcrow struct scatterlist *src_sg, int size, 709237fead6SMichael Halcrow unsigned char *iv) 710237fead6SMichael Halcrow { 711*8bba066fSMichael Halcrow struct blkcipher_desc desc = { 712*8bba066fSMichael Halcrow .tfm = crypt_stat->tfm, 713*8bba066fSMichael Halcrow .info = iv, 714*8bba066fSMichael Halcrow .flags = CRYPTO_TFM_REQ_MAY_SLEEP 715*8bba066fSMichael Halcrow }; 716237fead6SMichael Halcrow int rc = 0; 717237fead6SMichael Halcrow 718237fead6SMichael Halcrow /* Consider doing this once, when the file is opened */ 719237fead6SMichael Halcrow mutex_lock(&crypt_stat->cs_tfm_mutex); 720*8bba066fSMichael Halcrow rc = crypto_blkcipher_setkey(crypt_stat->tfm, crypt_stat->key, 721237fead6SMichael Halcrow crypt_stat->key_size); 722237fead6SMichael Halcrow if (rc) { 723237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error setting key; rc = [%d]\n", 724237fead6SMichael Halcrow rc); 725237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_tfm_mutex); 726237fead6SMichael Halcrow rc = -EINVAL; 727237fead6SMichael Halcrow goto out; 728237fead6SMichael Halcrow } 729237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Decrypting [%d] bytes.\n", size); 730*8bba066fSMichael Halcrow rc = crypto_blkcipher_decrypt_iv(&desc, dest_sg, src_sg, size); 731237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_tfm_mutex); 732237fead6SMichael Halcrow if (rc) { 733237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error decrypting; rc = [%d]\n", 734237fead6SMichael Halcrow rc); 735237fead6SMichael Halcrow goto out; 736237fead6SMichael Halcrow } 737237fead6SMichael Halcrow rc = size; 738237fead6SMichael Halcrow out: 739237fead6SMichael Halcrow return rc; 740237fead6SMichael Halcrow } 741237fead6SMichael Halcrow 742237fead6SMichael Halcrow /** 743237fead6SMichael Halcrow * ecryptfs_encrypt_page_offset 744237fead6SMichael Halcrow * 745237fead6SMichael Halcrow * Returns the number of bytes encrypted 746237fead6SMichael Halcrow */ 747237fead6SMichael Halcrow static int 748237fead6SMichael Halcrow ecryptfs_encrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat, 749237fead6SMichael Halcrow struct page *dst_page, int dst_offset, 750237fead6SMichael Halcrow struct page *src_page, int src_offset, int size, 751237fead6SMichael Halcrow unsigned char *iv) 752237fead6SMichael Halcrow { 753237fead6SMichael Halcrow struct scatterlist src_sg, dst_sg; 754237fead6SMichael Halcrow 755237fead6SMichael Halcrow src_sg.page = src_page; 756237fead6SMichael Halcrow src_sg.offset = src_offset; 757237fead6SMichael Halcrow src_sg.length = size; 758237fead6SMichael Halcrow dst_sg.page = dst_page; 759237fead6SMichael Halcrow dst_sg.offset = dst_offset; 760237fead6SMichael Halcrow dst_sg.length = size; 761237fead6SMichael Halcrow return encrypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv); 762237fead6SMichael Halcrow } 763237fead6SMichael Halcrow 764237fead6SMichael Halcrow /** 765237fead6SMichael Halcrow * ecryptfs_decrypt_page_offset 766237fead6SMichael Halcrow * 767237fead6SMichael Halcrow * Returns the number of bytes decrypted 768237fead6SMichael Halcrow */ 769237fead6SMichael Halcrow static int 770237fead6SMichael Halcrow ecryptfs_decrypt_page_offset(struct ecryptfs_crypt_stat *crypt_stat, 771237fead6SMichael Halcrow struct page *dst_page, int dst_offset, 772237fead6SMichael Halcrow struct page *src_page, int src_offset, int size, 773237fead6SMichael Halcrow unsigned char *iv) 774237fead6SMichael Halcrow { 775237fead6SMichael Halcrow struct scatterlist src_sg, dst_sg; 776237fead6SMichael Halcrow 777237fead6SMichael Halcrow src_sg.page = src_page; 778237fead6SMichael Halcrow src_sg.offset = src_offset; 779237fead6SMichael Halcrow src_sg.length = size; 780237fead6SMichael Halcrow dst_sg.page = dst_page; 781237fead6SMichael Halcrow dst_sg.offset = dst_offset; 782237fead6SMichael Halcrow dst_sg.length = size; 783237fead6SMichael Halcrow return decrypt_scatterlist(crypt_stat, &dst_sg, &src_sg, size, iv); 784237fead6SMichael Halcrow } 785237fead6SMichael Halcrow 786237fead6SMichael Halcrow #define ECRYPTFS_MAX_SCATTERLIST_LEN 4 787237fead6SMichael Halcrow 788237fead6SMichael Halcrow /** 789237fead6SMichael Halcrow * ecryptfs_init_crypt_ctx 790237fead6SMichael Halcrow * @crypt_stat: Uninitilized crypt stats structure 791237fead6SMichael Halcrow * 792237fead6SMichael Halcrow * Initialize the crypto context. 793237fead6SMichael Halcrow * 794237fead6SMichael Halcrow * TODO: Performance: Keep a cache of initialized cipher contexts; 795237fead6SMichael Halcrow * only init if needed 796237fead6SMichael Halcrow */ 797237fead6SMichael Halcrow int ecryptfs_init_crypt_ctx(struct ecryptfs_crypt_stat *crypt_stat) 798237fead6SMichael Halcrow { 799*8bba066fSMichael Halcrow char *full_alg_name; 800237fead6SMichael Halcrow int rc = -EINVAL; 801237fead6SMichael Halcrow 802237fead6SMichael Halcrow if (!crypt_stat->cipher) { 803237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "No cipher specified\n"); 804237fead6SMichael Halcrow goto out; 805237fead6SMichael Halcrow } 806237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, 807237fead6SMichael Halcrow "Initializing cipher [%s]; strlen = [%d]; " 808237fead6SMichael Halcrow "key_size_bits = [%d]\n", 809237fead6SMichael Halcrow crypt_stat->cipher, (int)strlen(crypt_stat->cipher), 810237fead6SMichael Halcrow crypt_stat->key_size << 3); 811237fead6SMichael Halcrow if (crypt_stat->tfm) { 812237fead6SMichael Halcrow rc = 0; 813237fead6SMichael Halcrow goto out; 814237fead6SMichael Halcrow } 815237fead6SMichael Halcrow mutex_lock(&crypt_stat->cs_tfm_mutex); 816*8bba066fSMichael Halcrow rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name, 817*8bba066fSMichael Halcrow crypt_stat->cipher, "cbc"); 818*8bba066fSMichael Halcrow if (rc) 819*8bba066fSMichael Halcrow goto out; 820*8bba066fSMichael Halcrow crypt_stat->tfm = crypto_alloc_blkcipher(full_alg_name, 0, 821*8bba066fSMichael Halcrow CRYPTO_ALG_ASYNC); 822*8bba066fSMichael Halcrow kfree(full_alg_name); 823237fead6SMichael Halcrow if (!crypt_stat->tfm) { 824237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "cryptfs: init_crypt_ctx(): " 825237fead6SMichael Halcrow "Error initializing cipher [%s]\n", 826237fead6SMichael Halcrow crypt_stat->cipher); 827*8bba066fSMichael Halcrow mutex_unlock(&crypt_stat->cs_tfm_mutex); 828237fead6SMichael Halcrow goto out; 829237fead6SMichael Halcrow } 830*8bba066fSMichael Halcrow crypto_blkcipher_set_flags(crypt_stat->tfm, 831*8bba066fSMichael Halcrow (ECRYPTFS_DEFAULT_CHAINING_MODE 832*8bba066fSMichael Halcrow | CRYPTO_TFM_REQ_WEAK_KEY)); 833*8bba066fSMichael Halcrow mutex_unlock(&crypt_stat->cs_tfm_mutex); 834237fead6SMichael Halcrow rc = 0; 835237fead6SMichael Halcrow out: 836237fead6SMichael Halcrow return rc; 837237fead6SMichael Halcrow } 838237fead6SMichael Halcrow 839237fead6SMichael Halcrow static void set_extent_mask_and_shift(struct ecryptfs_crypt_stat *crypt_stat) 840237fead6SMichael Halcrow { 841237fead6SMichael Halcrow int extent_size_tmp; 842237fead6SMichael Halcrow 843237fead6SMichael Halcrow crypt_stat->extent_mask = 0xFFFFFFFF; 844237fead6SMichael Halcrow crypt_stat->extent_shift = 0; 845237fead6SMichael Halcrow if (crypt_stat->extent_size == 0) 846237fead6SMichael Halcrow return; 847237fead6SMichael Halcrow extent_size_tmp = crypt_stat->extent_size; 848237fead6SMichael Halcrow while ((extent_size_tmp & 0x01) == 0) { 849237fead6SMichael Halcrow extent_size_tmp >>= 1; 850237fead6SMichael Halcrow crypt_stat->extent_mask <<= 1; 851237fead6SMichael Halcrow crypt_stat->extent_shift++; 852237fead6SMichael Halcrow } 853237fead6SMichael Halcrow } 854237fead6SMichael Halcrow 855237fead6SMichael Halcrow void ecryptfs_set_default_sizes(struct ecryptfs_crypt_stat *crypt_stat) 856237fead6SMichael Halcrow { 857237fead6SMichael Halcrow /* Default values; may be overwritten as we are parsing the 858237fead6SMichael Halcrow * packets. */ 859237fead6SMichael Halcrow crypt_stat->extent_size = ECRYPTFS_DEFAULT_EXTENT_SIZE; 860237fead6SMichael Halcrow set_extent_mask_and_shift(crypt_stat); 861237fead6SMichael Halcrow crypt_stat->iv_bytes = ECRYPTFS_DEFAULT_IV_BYTES; 862237fead6SMichael Halcrow if (PAGE_CACHE_SIZE <= ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE) { 863237fead6SMichael Halcrow crypt_stat->header_extent_size = 864237fead6SMichael Halcrow ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE; 865237fead6SMichael Halcrow } else 866237fead6SMichael Halcrow crypt_stat->header_extent_size = PAGE_CACHE_SIZE; 867237fead6SMichael Halcrow crypt_stat->num_header_extents_at_front = 1; 868237fead6SMichael Halcrow } 869237fead6SMichael Halcrow 870237fead6SMichael Halcrow /** 871237fead6SMichael Halcrow * ecryptfs_compute_root_iv 872237fead6SMichael Halcrow * @crypt_stats 873237fead6SMichael Halcrow * 874237fead6SMichael Halcrow * On error, sets the root IV to all 0's. 875237fead6SMichael Halcrow */ 876237fead6SMichael Halcrow int ecryptfs_compute_root_iv(struct ecryptfs_crypt_stat *crypt_stat) 877237fead6SMichael Halcrow { 878237fead6SMichael Halcrow int rc = 0; 879237fead6SMichael Halcrow char dst[MD5_DIGEST_SIZE]; 880237fead6SMichael Halcrow 881237fead6SMichael Halcrow BUG_ON(crypt_stat->iv_bytes > MD5_DIGEST_SIZE); 882237fead6SMichael Halcrow BUG_ON(crypt_stat->iv_bytes <= 0); 883237fead6SMichael Halcrow if (!ECRYPTFS_CHECK_FLAG(crypt_stat->flags, ECRYPTFS_KEY_VALID)) { 884237fead6SMichael Halcrow rc = -EINVAL; 885237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Session key not valid; " 886237fead6SMichael Halcrow "cannot generate root IV\n"); 887237fead6SMichael Halcrow goto out; 888237fead6SMichael Halcrow } 889237fead6SMichael Halcrow rc = ecryptfs_calculate_md5(dst, crypt_stat, crypt_stat->key, 890237fead6SMichael Halcrow crypt_stat->key_size); 891237fead6SMichael Halcrow if (rc) { 892237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Error attempting to compute " 893237fead6SMichael Halcrow "MD5 while generating root IV\n"); 894237fead6SMichael Halcrow goto out; 895237fead6SMichael Halcrow } 896237fead6SMichael Halcrow memcpy(crypt_stat->root_iv, dst, crypt_stat->iv_bytes); 897237fead6SMichael Halcrow out: 898237fead6SMichael Halcrow if (rc) { 899237fead6SMichael Halcrow memset(crypt_stat->root_iv, 0, crypt_stat->iv_bytes); 900237fead6SMichael Halcrow ECRYPTFS_SET_FLAG(crypt_stat->flags, 901237fead6SMichael Halcrow ECRYPTFS_SECURITY_WARNING); 902237fead6SMichael Halcrow } 903237fead6SMichael Halcrow return rc; 904237fead6SMichael Halcrow } 905237fead6SMichael Halcrow 906237fead6SMichael Halcrow static void ecryptfs_generate_new_key(struct ecryptfs_crypt_stat *crypt_stat) 907237fead6SMichael Halcrow { 908237fead6SMichael Halcrow get_random_bytes(crypt_stat->key, crypt_stat->key_size); 909237fead6SMichael Halcrow ECRYPTFS_SET_FLAG(crypt_stat->flags, ECRYPTFS_KEY_VALID); 910237fead6SMichael Halcrow ecryptfs_compute_root_iv(crypt_stat); 911237fead6SMichael Halcrow if (unlikely(ecryptfs_verbosity > 0)) { 912237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Generated new session key:\n"); 913237fead6SMichael Halcrow ecryptfs_dump_hex(crypt_stat->key, 914237fead6SMichael Halcrow crypt_stat->key_size); 915237fead6SMichael Halcrow } 916237fead6SMichael Halcrow } 917237fead6SMichael Halcrow 918237fead6SMichael Halcrow /** 919237fead6SMichael Halcrow * ecryptfs_set_default_crypt_stat_vals 920237fead6SMichael Halcrow * @crypt_stat 921237fead6SMichael Halcrow * 922237fead6SMichael Halcrow * Default values in the event that policy does not override them. 923237fead6SMichael Halcrow */ 924237fead6SMichael Halcrow static void ecryptfs_set_default_crypt_stat_vals( 925237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat, 926237fead6SMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat) 927237fead6SMichael Halcrow { 928237fead6SMichael Halcrow ecryptfs_set_default_sizes(crypt_stat); 929237fead6SMichael Halcrow strcpy(crypt_stat->cipher, ECRYPTFS_DEFAULT_CIPHER); 930237fead6SMichael Halcrow crypt_stat->key_size = ECRYPTFS_DEFAULT_KEY_BYTES; 931237fead6SMichael Halcrow ECRYPTFS_CLEAR_FLAG(crypt_stat->flags, ECRYPTFS_KEY_VALID); 932237fead6SMichael Halcrow crypt_stat->file_version = ECRYPTFS_FILE_VERSION; 933237fead6SMichael Halcrow crypt_stat->mount_crypt_stat = mount_crypt_stat; 934237fead6SMichael Halcrow } 935237fead6SMichael Halcrow 936237fead6SMichael Halcrow /** 937237fead6SMichael Halcrow * ecryptfs_new_file_context 938237fead6SMichael Halcrow * @ecryptfs_dentry 939237fead6SMichael Halcrow * 940237fead6SMichael Halcrow * If the crypto context for the file has not yet been established, 941237fead6SMichael Halcrow * this is where we do that. Establishing a new crypto context 942237fead6SMichael Halcrow * involves the following decisions: 943237fead6SMichael Halcrow * - What cipher to use? 944237fead6SMichael Halcrow * - What set of authentication tokens to use? 945237fead6SMichael Halcrow * Here we just worry about getting enough information into the 946237fead6SMichael Halcrow * authentication tokens so that we know that they are available. 947237fead6SMichael Halcrow * We associate the available authentication tokens with the new file 948237fead6SMichael Halcrow * via the set of signatures in the crypt_stat struct. Later, when 949237fead6SMichael Halcrow * the headers are actually written out, we may again defer to 950237fead6SMichael Halcrow * userspace to perform the encryption of the session key; for the 951237fead6SMichael Halcrow * foreseeable future, this will be the case with public key packets. 952237fead6SMichael Halcrow * 953237fead6SMichael Halcrow * Returns zero on success; non-zero otherwise 954237fead6SMichael Halcrow */ 955237fead6SMichael Halcrow /* Associate an authentication token(s) with the file */ 956237fead6SMichael Halcrow int ecryptfs_new_file_context(struct dentry *ecryptfs_dentry) 957237fead6SMichael Halcrow { 958237fead6SMichael Halcrow int rc = 0; 959237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat = 960237fead6SMichael Halcrow &ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat; 961237fead6SMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat = 962237fead6SMichael Halcrow &ecryptfs_superblock_to_private( 963237fead6SMichael Halcrow ecryptfs_dentry->d_sb)->mount_crypt_stat; 964237fead6SMichael Halcrow int cipher_name_len; 965237fead6SMichael Halcrow 966237fead6SMichael Halcrow ecryptfs_set_default_crypt_stat_vals(crypt_stat, mount_crypt_stat); 967237fead6SMichael Halcrow /* See if there are mount crypt options */ 968237fead6SMichael Halcrow if (mount_crypt_stat->global_auth_tok) { 969237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Initializing context for new " 970237fead6SMichael Halcrow "file using mount_crypt_stat\n"); 971237fead6SMichael Halcrow ECRYPTFS_SET_FLAG(crypt_stat->flags, ECRYPTFS_ENCRYPTED); 972237fead6SMichael Halcrow ECRYPTFS_SET_FLAG(crypt_stat->flags, ECRYPTFS_KEY_VALID); 973237fead6SMichael Halcrow memcpy(crypt_stat->keysigs[crypt_stat->num_keysigs++], 974237fead6SMichael Halcrow mount_crypt_stat->global_auth_tok_sig, 975237fead6SMichael Halcrow ECRYPTFS_SIG_SIZE_HEX); 976237fead6SMichael Halcrow cipher_name_len = 977237fead6SMichael Halcrow strlen(mount_crypt_stat->global_default_cipher_name); 978237fead6SMichael Halcrow memcpy(crypt_stat->cipher, 979237fead6SMichael Halcrow mount_crypt_stat->global_default_cipher_name, 980237fead6SMichael Halcrow cipher_name_len); 981237fead6SMichael Halcrow crypt_stat->cipher[cipher_name_len] = '\0'; 982237fead6SMichael Halcrow crypt_stat->key_size = 983237fead6SMichael Halcrow mount_crypt_stat->global_default_cipher_key_size; 984237fead6SMichael Halcrow ecryptfs_generate_new_key(crypt_stat); 985237fead6SMichael Halcrow } else 986237fead6SMichael Halcrow /* We should not encounter this scenario since we 987237fead6SMichael Halcrow * should detect lack of global_auth_tok at mount time 988237fead6SMichael Halcrow * TODO: Applies to 0.1 release only; remove in future 989237fead6SMichael Halcrow * release */ 990237fead6SMichael Halcrow BUG(); 991237fead6SMichael Halcrow rc = ecryptfs_init_crypt_ctx(crypt_stat); 992237fead6SMichael Halcrow if (rc) 993237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error initializing cryptographic " 994237fead6SMichael Halcrow "context for cipher [%s]: rc = [%d]\n", 995237fead6SMichael Halcrow crypt_stat->cipher, rc); 996237fead6SMichael Halcrow return rc; 997237fead6SMichael Halcrow } 998237fead6SMichael Halcrow 999237fead6SMichael Halcrow /** 1000237fead6SMichael Halcrow * contains_ecryptfs_marker - check for the ecryptfs marker 1001237fead6SMichael Halcrow * @data: The data block in which to check 1002237fead6SMichael Halcrow * 1003237fead6SMichael Halcrow * Returns one if marker found; zero if not found 1004237fead6SMichael Halcrow */ 1005237fead6SMichael Halcrow int contains_ecryptfs_marker(char *data) 1006237fead6SMichael Halcrow { 1007237fead6SMichael Halcrow u32 m_1, m_2; 1008237fead6SMichael Halcrow 1009237fead6SMichael Halcrow memcpy(&m_1, data, 4); 1010237fead6SMichael Halcrow m_1 = be32_to_cpu(m_1); 1011237fead6SMichael Halcrow memcpy(&m_2, (data + 4), 4); 1012237fead6SMichael Halcrow m_2 = be32_to_cpu(m_2); 1013237fead6SMichael Halcrow if ((m_1 ^ MAGIC_ECRYPTFS_MARKER) == m_2) 1014237fead6SMichael Halcrow return 1; 1015237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "m_1 = [0x%.8x]; m_2 = [0x%.8x]; " 1016237fead6SMichael Halcrow "MAGIC_ECRYPTFS_MARKER = [0x%.8x]\n", m_1, m_2, 1017237fead6SMichael Halcrow MAGIC_ECRYPTFS_MARKER); 1018237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "(m_1 ^ MAGIC_ECRYPTFS_MARKER) = " 1019237fead6SMichael Halcrow "[0x%.8x]\n", (m_1 ^ MAGIC_ECRYPTFS_MARKER)); 1020237fead6SMichael Halcrow return 0; 1021237fead6SMichael Halcrow } 1022237fead6SMichael Halcrow 1023237fead6SMichael Halcrow struct ecryptfs_flag_map_elem { 1024237fead6SMichael Halcrow u32 file_flag; 1025237fead6SMichael Halcrow u32 local_flag; 1026237fead6SMichael Halcrow }; 1027237fead6SMichael Halcrow 1028237fead6SMichael Halcrow /* Add support for additional flags by adding elements here. */ 1029237fead6SMichael Halcrow static struct ecryptfs_flag_map_elem ecryptfs_flag_map[] = { 1030237fead6SMichael Halcrow {0x00000001, ECRYPTFS_ENABLE_HMAC}, 1031237fead6SMichael Halcrow {0x00000002, ECRYPTFS_ENCRYPTED} 1032237fead6SMichael Halcrow }; 1033237fead6SMichael Halcrow 1034237fead6SMichael Halcrow /** 1035237fead6SMichael Halcrow * ecryptfs_process_flags 1036237fead6SMichael Halcrow * @crypt_stat 1037237fead6SMichael Halcrow * @page_virt: Source data to be parsed 1038237fead6SMichael Halcrow * @bytes_read: Updated with the number of bytes read 1039237fead6SMichael Halcrow * 1040237fead6SMichael Halcrow * Returns zero on success; non-zero if the flag set is invalid 1041237fead6SMichael Halcrow */ 1042237fead6SMichael Halcrow static int ecryptfs_process_flags(struct ecryptfs_crypt_stat *crypt_stat, 1043237fead6SMichael Halcrow char *page_virt, int *bytes_read) 1044237fead6SMichael Halcrow { 1045237fead6SMichael Halcrow int rc = 0; 1046237fead6SMichael Halcrow int i; 1047237fead6SMichael Halcrow u32 flags; 1048237fead6SMichael Halcrow 1049237fead6SMichael Halcrow memcpy(&flags, page_virt, 4); 1050237fead6SMichael Halcrow flags = be32_to_cpu(flags); 1051237fead6SMichael Halcrow for (i = 0; i < ((sizeof(ecryptfs_flag_map) 1052237fead6SMichael Halcrow / sizeof(struct ecryptfs_flag_map_elem))); i++) 1053237fead6SMichael Halcrow if (flags & ecryptfs_flag_map[i].file_flag) { 1054237fead6SMichael Halcrow ECRYPTFS_SET_FLAG(crypt_stat->flags, 1055237fead6SMichael Halcrow ecryptfs_flag_map[i].local_flag); 1056237fead6SMichael Halcrow } else 1057237fead6SMichael Halcrow ECRYPTFS_CLEAR_FLAG(crypt_stat->flags, 1058237fead6SMichael Halcrow ecryptfs_flag_map[i].local_flag); 1059237fead6SMichael Halcrow /* Version is in top 8 bits of the 32-bit flag vector */ 1060237fead6SMichael Halcrow crypt_stat->file_version = ((flags >> 24) & 0xFF); 1061237fead6SMichael Halcrow (*bytes_read) = 4; 1062237fead6SMichael Halcrow return rc; 1063237fead6SMichael Halcrow } 1064237fead6SMichael Halcrow 1065237fead6SMichael Halcrow /** 1066237fead6SMichael Halcrow * write_ecryptfs_marker 1067237fead6SMichael Halcrow * @page_virt: The pointer to in a page to begin writing the marker 1068237fead6SMichael Halcrow * @written: Number of bytes written 1069237fead6SMichael Halcrow * 1070237fead6SMichael Halcrow * Marker = 0x3c81b7f5 1071237fead6SMichael Halcrow */ 1072237fead6SMichael Halcrow static void write_ecryptfs_marker(char *page_virt, size_t *written) 1073237fead6SMichael Halcrow { 1074237fead6SMichael Halcrow u32 m_1, m_2; 1075237fead6SMichael Halcrow 1076237fead6SMichael Halcrow get_random_bytes(&m_1, (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2)); 1077237fead6SMichael Halcrow m_2 = (m_1 ^ MAGIC_ECRYPTFS_MARKER); 1078237fead6SMichael Halcrow m_1 = cpu_to_be32(m_1); 1079237fead6SMichael Halcrow memcpy(page_virt, &m_1, (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2)); 1080237fead6SMichael Halcrow m_2 = cpu_to_be32(m_2); 1081237fead6SMichael Halcrow memcpy(page_virt + (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2), &m_2, 1082237fead6SMichael Halcrow (MAGIC_ECRYPTFS_MARKER_SIZE_BYTES / 2)); 1083237fead6SMichael Halcrow (*written) = MAGIC_ECRYPTFS_MARKER_SIZE_BYTES; 1084237fead6SMichael Halcrow } 1085237fead6SMichael Halcrow 1086237fead6SMichael Halcrow static void 1087237fead6SMichael Halcrow write_ecryptfs_flags(char *page_virt, struct ecryptfs_crypt_stat *crypt_stat, 1088237fead6SMichael Halcrow size_t *written) 1089237fead6SMichael Halcrow { 1090237fead6SMichael Halcrow u32 flags = 0; 1091237fead6SMichael Halcrow int i; 1092237fead6SMichael Halcrow 1093237fead6SMichael Halcrow for (i = 0; i < ((sizeof(ecryptfs_flag_map) 1094237fead6SMichael Halcrow / sizeof(struct ecryptfs_flag_map_elem))); i++) 1095237fead6SMichael Halcrow if (ECRYPTFS_CHECK_FLAG(crypt_stat->flags, 1096237fead6SMichael Halcrow ecryptfs_flag_map[i].local_flag)) 1097237fead6SMichael Halcrow flags |= ecryptfs_flag_map[i].file_flag; 1098237fead6SMichael Halcrow /* Version is in top 8 bits of the 32-bit flag vector */ 1099237fead6SMichael Halcrow flags |= ((((u8)crypt_stat->file_version) << 24) & 0xFF000000); 1100237fead6SMichael Halcrow flags = cpu_to_be32(flags); 1101237fead6SMichael Halcrow memcpy(page_virt, &flags, 4); 1102237fead6SMichael Halcrow (*written) = 4; 1103237fead6SMichael Halcrow } 1104237fead6SMichael Halcrow 1105237fead6SMichael Halcrow struct ecryptfs_cipher_code_str_map_elem { 1106237fead6SMichael Halcrow char cipher_str[16]; 1107237fead6SMichael Halcrow u16 cipher_code; 1108237fead6SMichael Halcrow }; 1109237fead6SMichael Halcrow 1110237fead6SMichael Halcrow /* Add support for additional ciphers by adding elements here. The 1111237fead6SMichael Halcrow * cipher_code is whatever OpenPGP applicatoins use to identify the 1112237fead6SMichael Halcrow * ciphers. List in order of probability. */ 1113237fead6SMichael Halcrow static struct ecryptfs_cipher_code_str_map_elem 1114237fead6SMichael Halcrow ecryptfs_cipher_code_str_map[] = { 1115237fead6SMichael Halcrow {"aes",RFC2440_CIPHER_AES_128 }, 1116237fead6SMichael Halcrow {"blowfish", RFC2440_CIPHER_BLOWFISH}, 1117237fead6SMichael Halcrow {"des3_ede", RFC2440_CIPHER_DES3_EDE}, 1118237fead6SMichael Halcrow {"cast5", RFC2440_CIPHER_CAST_5}, 1119237fead6SMichael Halcrow {"twofish", RFC2440_CIPHER_TWOFISH}, 1120237fead6SMichael Halcrow {"cast6", RFC2440_CIPHER_CAST_6}, 1121237fead6SMichael Halcrow {"aes", RFC2440_CIPHER_AES_192}, 1122237fead6SMichael Halcrow {"aes", RFC2440_CIPHER_AES_256} 1123237fead6SMichael Halcrow }; 1124237fead6SMichael Halcrow 1125237fead6SMichael Halcrow /** 1126237fead6SMichael Halcrow * ecryptfs_code_for_cipher_string 1127237fead6SMichael Halcrow * @str: The string representing the cipher name 1128237fead6SMichael Halcrow * 1129237fead6SMichael Halcrow * Returns zero on no match, or the cipher code on match 1130237fead6SMichael Halcrow */ 1131237fead6SMichael Halcrow u16 ecryptfs_code_for_cipher_string(struct ecryptfs_crypt_stat *crypt_stat) 1132237fead6SMichael Halcrow { 1133237fead6SMichael Halcrow int i; 1134237fead6SMichael Halcrow u16 code = 0; 1135237fead6SMichael Halcrow struct ecryptfs_cipher_code_str_map_elem *map = 1136237fead6SMichael Halcrow ecryptfs_cipher_code_str_map; 1137237fead6SMichael Halcrow 1138237fead6SMichael Halcrow if (strcmp(crypt_stat->cipher, "aes") == 0) { 1139237fead6SMichael Halcrow switch (crypt_stat->key_size) { 1140237fead6SMichael Halcrow case 16: 1141237fead6SMichael Halcrow code = RFC2440_CIPHER_AES_128; 1142237fead6SMichael Halcrow break; 1143237fead6SMichael Halcrow case 24: 1144237fead6SMichael Halcrow code = RFC2440_CIPHER_AES_192; 1145237fead6SMichael Halcrow break; 1146237fead6SMichael Halcrow case 32: 1147237fead6SMichael Halcrow code = RFC2440_CIPHER_AES_256; 1148237fead6SMichael Halcrow } 1149237fead6SMichael Halcrow } else { 1150237fead6SMichael Halcrow for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++) 1151237fead6SMichael Halcrow if (strcmp(crypt_stat->cipher, map[i].cipher_str) == 0){ 1152237fead6SMichael Halcrow code = map[i].cipher_code; 1153237fead6SMichael Halcrow break; 1154237fead6SMichael Halcrow } 1155237fead6SMichael Halcrow } 1156237fead6SMichael Halcrow return code; 1157237fead6SMichael Halcrow } 1158237fead6SMichael Halcrow 1159237fead6SMichael Halcrow /** 1160237fead6SMichael Halcrow * ecryptfs_cipher_code_to_string 1161237fead6SMichael Halcrow * @str: Destination to write out the cipher name 1162237fead6SMichael Halcrow * @cipher_code: The code to convert to cipher name string 1163237fead6SMichael Halcrow * 1164237fead6SMichael Halcrow * Returns zero on success 1165237fead6SMichael Halcrow */ 1166237fead6SMichael Halcrow int ecryptfs_cipher_code_to_string(char *str, u16 cipher_code) 1167237fead6SMichael Halcrow { 1168237fead6SMichael Halcrow int rc = 0; 1169237fead6SMichael Halcrow int i; 1170237fead6SMichael Halcrow 1171237fead6SMichael Halcrow str[0] = '\0'; 1172237fead6SMichael Halcrow for (i = 0; i < ARRAY_SIZE(ecryptfs_cipher_code_str_map); i++) 1173237fead6SMichael Halcrow if (cipher_code == ecryptfs_cipher_code_str_map[i].cipher_code) 1174237fead6SMichael Halcrow strcpy(str, ecryptfs_cipher_code_str_map[i].cipher_str); 1175237fead6SMichael Halcrow if (str[0] == '\0') { 1176237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Cipher code not recognized: " 1177237fead6SMichael Halcrow "[%d]\n", cipher_code); 1178237fead6SMichael Halcrow rc = -EINVAL; 1179237fead6SMichael Halcrow } 1180237fead6SMichael Halcrow return rc; 1181237fead6SMichael Halcrow } 1182237fead6SMichael Halcrow 1183237fead6SMichael Halcrow /** 1184237fead6SMichael Halcrow * ecryptfs_read_header_region 1185237fead6SMichael Halcrow * @data 1186237fead6SMichael Halcrow * @dentry 1187237fead6SMichael Halcrow * @nd 1188237fead6SMichael Halcrow * 1189237fead6SMichael Halcrow * Returns zero on success; non-zero otherwise 1190237fead6SMichael Halcrow */ 1191237fead6SMichael Halcrow int ecryptfs_read_header_region(char *data, struct dentry *dentry, 1192237fead6SMichael Halcrow struct vfsmount *mnt) 1193237fead6SMichael Halcrow { 1194237fead6SMichael Halcrow struct file *file; 1195237fead6SMichael Halcrow mm_segment_t oldfs; 1196237fead6SMichael Halcrow int rc; 1197237fead6SMichael Halcrow 1198237fead6SMichael Halcrow mnt = mntget(mnt); 1199237fead6SMichael Halcrow file = dentry_open(dentry, mnt, O_RDONLY); 1200237fead6SMichael Halcrow if (IS_ERR(file)) { 1201237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Error opening file to " 1202237fead6SMichael Halcrow "read header region\n"); 1203237fead6SMichael Halcrow mntput(mnt); 1204237fead6SMichael Halcrow rc = PTR_ERR(file); 1205237fead6SMichael Halcrow goto out; 1206237fead6SMichael Halcrow } 1207237fead6SMichael Halcrow file->f_pos = 0; 1208237fead6SMichael Halcrow oldfs = get_fs(); 1209237fead6SMichael Halcrow set_fs(get_ds()); 1210237fead6SMichael Halcrow /* For releases 0.1 and 0.2, all of the header information 1211237fead6SMichael Halcrow * fits in the first data extent-sized region. */ 1212237fead6SMichael Halcrow rc = file->f_op->read(file, (char __user *)data, 1213237fead6SMichael Halcrow ECRYPTFS_DEFAULT_EXTENT_SIZE, &file->f_pos); 1214237fead6SMichael Halcrow set_fs(oldfs); 1215237fead6SMichael Halcrow fput(file); 1216237fead6SMichael Halcrow rc = 0; 1217237fead6SMichael Halcrow out: 1218237fead6SMichael Halcrow return rc; 1219237fead6SMichael Halcrow } 1220237fead6SMichael Halcrow 1221237fead6SMichael Halcrow static void 1222237fead6SMichael Halcrow write_header_metadata(char *virt, struct ecryptfs_crypt_stat *crypt_stat, 1223237fead6SMichael Halcrow size_t *written) 1224237fead6SMichael Halcrow { 1225237fead6SMichael Halcrow u32 header_extent_size; 1226237fead6SMichael Halcrow u16 num_header_extents_at_front; 1227237fead6SMichael Halcrow 1228237fead6SMichael Halcrow header_extent_size = (u32)crypt_stat->header_extent_size; 1229237fead6SMichael Halcrow num_header_extents_at_front = 1230237fead6SMichael Halcrow (u16)crypt_stat->num_header_extents_at_front; 1231237fead6SMichael Halcrow header_extent_size = cpu_to_be32(header_extent_size); 1232237fead6SMichael Halcrow memcpy(virt, &header_extent_size, 4); 1233237fead6SMichael Halcrow virt += 4; 1234237fead6SMichael Halcrow num_header_extents_at_front = cpu_to_be16(num_header_extents_at_front); 1235237fead6SMichael Halcrow memcpy(virt, &num_header_extents_at_front, 2); 1236237fead6SMichael Halcrow (*written) = 6; 1237237fead6SMichael Halcrow } 1238237fead6SMichael Halcrow 1239237fead6SMichael Halcrow struct kmem_cache *ecryptfs_header_cache_0; 1240237fead6SMichael Halcrow struct kmem_cache *ecryptfs_header_cache_1; 1241237fead6SMichael Halcrow struct kmem_cache *ecryptfs_header_cache_2; 1242237fead6SMichael Halcrow 1243237fead6SMichael Halcrow /** 1244237fead6SMichael Halcrow * ecryptfs_write_headers_virt 1245237fead6SMichael Halcrow * @page_virt 1246237fead6SMichael Halcrow * @crypt_stat 1247237fead6SMichael Halcrow * @ecryptfs_dentry 1248237fead6SMichael Halcrow * 1249237fead6SMichael Halcrow * Format version: 1 1250237fead6SMichael Halcrow * 1251237fead6SMichael Halcrow * Header Extent: 1252237fead6SMichael Halcrow * Octets 0-7: Unencrypted file size (big-endian) 1253237fead6SMichael Halcrow * Octets 8-15: eCryptfs special marker 1254237fead6SMichael Halcrow * Octets 16-19: Flags 1255237fead6SMichael Halcrow * Octet 16: File format version number (between 0 and 255) 1256237fead6SMichael Halcrow * Octets 17-18: Reserved 1257237fead6SMichael Halcrow * Octet 19: Bit 1 (lsb): Reserved 1258237fead6SMichael Halcrow * Bit 2: Encrypted? 1259237fead6SMichael Halcrow * Bits 3-8: Reserved 1260237fead6SMichael Halcrow * Octets 20-23: Header extent size (big-endian) 1261237fead6SMichael Halcrow * Octets 24-25: Number of header extents at front of file 1262237fead6SMichael Halcrow * (big-endian) 1263237fead6SMichael Halcrow * Octet 26: Begin RFC 2440 authentication token packet set 1264237fead6SMichael Halcrow * Data Extent 0: 1265237fead6SMichael Halcrow * Lower data (CBC encrypted) 1266237fead6SMichael Halcrow * Data Extent 1: 1267237fead6SMichael Halcrow * Lower data (CBC encrypted) 1268237fead6SMichael Halcrow * ... 1269237fead6SMichael Halcrow * 1270237fead6SMichael Halcrow * Returns zero on success 1271237fead6SMichael Halcrow */ 1272237fead6SMichael Halcrow int ecryptfs_write_headers_virt(char *page_virt, 1273237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat, 1274237fead6SMichael Halcrow struct dentry *ecryptfs_dentry) 1275237fead6SMichael Halcrow { 1276237fead6SMichael Halcrow int rc; 1277237fead6SMichael Halcrow size_t written; 1278237fead6SMichael Halcrow size_t offset; 1279237fead6SMichael Halcrow 1280237fead6SMichael Halcrow offset = ECRYPTFS_FILE_SIZE_BYTES; 1281237fead6SMichael Halcrow write_ecryptfs_marker((page_virt + offset), &written); 1282237fead6SMichael Halcrow offset += written; 1283237fead6SMichael Halcrow write_ecryptfs_flags((page_virt + offset), crypt_stat, &written); 1284237fead6SMichael Halcrow offset += written; 1285237fead6SMichael Halcrow write_header_metadata((page_virt + offset), crypt_stat, &written); 1286237fead6SMichael Halcrow offset += written; 1287237fead6SMichael Halcrow rc = ecryptfs_generate_key_packet_set((page_virt + offset), crypt_stat, 1288237fead6SMichael Halcrow ecryptfs_dentry, &written, 1289237fead6SMichael Halcrow PAGE_CACHE_SIZE - offset); 1290237fead6SMichael Halcrow if (rc) 1291237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Error generating key packet " 1292237fead6SMichael Halcrow "set; rc = [%d]\n", rc); 1293237fead6SMichael Halcrow return rc; 1294237fead6SMichael Halcrow } 1295237fead6SMichael Halcrow 1296237fead6SMichael Halcrow /** 1297237fead6SMichael Halcrow * ecryptfs_write_headers 1298237fead6SMichael Halcrow * @lower_file: The lower file struct, which was returned from dentry_open 1299237fead6SMichael Halcrow * 1300237fead6SMichael Halcrow * Write the file headers out. This will likely involve a userspace 1301237fead6SMichael Halcrow * callout, in which the session key is encrypted with one or more 1302237fead6SMichael Halcrow * public keys and/or the passphrase necessary to do the encryption is 1303237fead6SMichael Halcrow * retrieved via a prompt. Exactly what happens at this point should 1304237fead6SMichael Halcrow * be policy-dependent. 1305237fead6SMichael Halcrow * 1306237fead6SMichael Halcrow * Returns zero on success; non-zero on error 1307237fead6SMichael Halcrow */ 1308237fead6SMichael Halcrow int ecryptfs_write_headers(struct dentry *ecryptfs_dentry, 1309237fead6SMichael Halcrow struct file *lower_file) 1310237fead6SMichael Halcrow { 1311237fead6SMichael Halcrow mm_segment_t oldfs; 1312237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat; 1313237fead6SMichael Halcrow char *page_virt; 1314237fead6SMichael Halcrow int current_header_page; 1315237fead6SMichael Halcrow int header_pages; 1316237fead6SMichael Halcrow int rc = 0; 1317237fead6SMichael Halcrow 1318237fead6SMichael Halcrow crypt_stat = &ecryptfs_inode_to_private( 1319237fead6SMichael Halcrow ecryptfs_dentry->d_inode)->crypt_stat; 1320237fead6SMichael Halcrow if (likely(ECRYPTFS_CHECK_FLAG(crypt_stat->flags, 1321237fead6SMichael Halcrow ECRYPTFS_ENCRYPTED))) { 1322237fead6SMichael Halcrow if (!ECRYPTFS_CHECK_FLAG(crypt_stat->flags, 1323237fead6SMichael Halcrow ECRYPTFS_KEY_VALID)) { 1324237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Key is " 1325237fead6SMichael Halcrow "invalid; bailing out\n"); 1326237fead6SMichael Halcrow rc = -EINVAL; 1327237fead6SMichael Halcrow goto out; 1328237fead6SMichael Halcrow } 1329237fead6SMichael Halcrow } else { 1330237fead6SMichael Halcrow rc = -EINVAL; 1331237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, 1332237fead6SMichael Halcrow "Called with crypt_stat->encrypted == 0\n"); 1333237fead6SMichael Halcrow goto out; 1334237fead6SMichael Halcrow } 1335237fead6SMichael Halcrow /* Released in this function */ 1336237fead6SMichael Halcrow page_virt = kmem_cache_alloc(ecryptfs_header_cache_0, SLAB_USER); 1337237fead6SMichael Halcrow if (!page_virt) { 1338237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Out of memory\n"); 1339237fead6SMichael Halcrow rc = -ENOMEM; 1340237fead6SMichael Halcrow goto out; 1341237fead6SMichael Halcrow } 1342237fead6SMichael Halcrow memset(page_virt, 0, PAGE_CACHE_SIZE); 1343237fead6SMichael Halcrow rc = ecryptfs_write_headers_virt(page_virt, crypt_stat, 1344237fead6SMichael Halcrow ecryptfs_dentry); 1345237fead6SMichael Halcrow if (unlikely(rc)) { 1346237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Error whilst writing headers\n"); 1347237fead6SMichael Halcrow memset(page_virt, 0, PAGE_CACHE_SIZE); 1348237fead6SMichael Halcrow goto out_free; 1349237fead6SMichael Halcrow } 1350237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, 1351237fead6SMichael Halcrow "Writing key packet set to underlying file\n"); 1352237fead6SMichael Halcrow lower_file->f_pos = 0; 1353237fead6SMichael Halcrow oldfs = get_fs(); 1354237fead6SMichael Halcrow set_fs(get_ds()); 1355237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Calling lower_file->f_op->" 1356237fead6SMichael Halcrow "write() w/ header page; lower_file->f_pos = " 1357237fead6SMichael Halcrow "[0x%.16x]\n", lower_file->f_pos); 1358237fead6SMichael Halcrow lower_file->f_op->write(lower_file, (char __user *)page_virt, 1359237fead6SMichael Halcrow PAGE_CACHE_SIZE, &lower_file->f_pos); 1360237fead6SMichael Halcrow header_pages = ((crypt_stat->header_extent_size 1361237fead6SMichael Halcrow * crypt_stat->num_header_extents_at_front) 1362237fead6SMichael Halcrow / PAGE_CACHE_SIZE); 1363237fead6SMichael Halcrow memset(page_virt, 0, PAGE_CACHE_SIZE); 1364237fead6SMichael Halcrow current_header_page = 1; 1365237fead6SMichael Halcrow while (current_header_page < header_pages) { 1366237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Calling lower_file->f_op->" 1367237fead6SMichael Halcrow "write() w/ zero'd page; lower_file->f_pos = " 1368237fead6SMichael Halcrow "[0x%.16x]\n", lower_file->f_pos); 1369237fead6SMichael Halcrow lower_file->f_op->write(lower_file, (char __user *)page_virt, 1370237fead6SMichael Halcrow PAGE_CACHE_SIZE, &lower_file->f_pos); 1371237fead6SMichael Halcrow current_header_page++; 1372237fead6SMichael Halcrow } 1373237fead6SMichael Halcrow set_fs(oldfs); 1374237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, 1375237fead6SMichael Halcrow "Done writing key packet set to underlying file.\n"); 1376237fead6SMichael Halcrow out_free: 1377237fead6SMichael Halcrow kmem_cache_free(ecryptfs_header_cache_0, page_virt); 1378237fead6SMichael Halcrow out: 1379237fead6SMichael Halcrow return rc; 1380237fead6SMichael Halcrow } 1381237fead6SMichael Halcrow 1382237fead6SMichael Halcrow static int parse_header_metadata(struct ecryptfs_crypt_stat *crypt_stat, 1383237fead6SMichael Halcrow char *virt, int *bytes_read) 1384237fead6SMichael Halcrow { 1385237fead6SMichael Halcrow int rc = 0; 1386237fead6SMichael Halcrow u32 header_extent_size; 1387237fead6SMichael Halcrow u16 num_header_extents_at_front; 1388237fead6SMichael Halcrow 1389237fead6SMichael Halcrow memcpy(&header_extent_size, virt, 4); 1390237fead6SMichael Halcrow header_extent_size = be32_to_cpu(header_extent_size); 1391237fead6SMichael Halcrow virt += 4; 1392237fead6SMichael Halcrow memcpy(&num_header_extents_at_front, virt, 2); 1393237fead6SMichael Halcrow num_header_extents_at_front = be16_to_cpu(num_header_extents_at_front); 1394237fead6SMichael Halcrow crypt_stat->header_extent_size = (int)header_extent_size; 1395237fead6SMichael Halcrow crypt_stat->num_header_extents_at_front = 1396237fead6SMichael Halcrow (int)num_header_extents_at_front; 1397237fead6SMichael Halcrow (*bytes_read) = 6; 1398237fead6SMichael Halcrow if ((crypt_stat->header_extent_size 1399237fead6SMichael Halcrow * crypt_stat->num_header_extents_at_front) 1400237fead6SMichael Halcrow < ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE) { 1401237fead6SMichael Halcrow rc = -EINVAL; 1402237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Invalid header extent size: " 1403237fead6SMichael Halcrow "[%d]\n", crypt_stat->header_extent_size); 1404237fead6SMichael Halcrow } 1405237fead6SMichael Halcrow return rc; 1406237fead6SMichael Halcrow } 1407237fead6SMichael Halcrow 1408237fead6SMichael Halcrow /** 1409237fead6SMichael Halcrow * set_default_header_data 1410237fead6SMichael Halcrow * 1411237fead6SMichael Halcrow * For version 0 file format; this function is only for backwards 1412237fead6SMichael Halcrow * compatibility for files created with the prior versions of 1413237fead6SMichael Halcrow * eCryptfs. 1414237fead6SMichael Halcrow */ 1415237fead6SMichael Halcrow static void set_default_header_data(struct ecryptfs_crypt_stat *crypt_stat) 1416237fead6SMichael Halcrow { 1417237fead6SMichael Halcrow crypt_stat->header_extent_size = 4096; 1418237fead6SMichael Halcrow crypt_stat->num_header_extents_at_front = 1; 1419237fead6SMichael Halcrow } 1420237fead6SMichael Halcrow 1421237fead6SMichael Halcrow /** 1422237fead6SMichael Halcrow * ecryptfs_read_headers_virt 1423237fead6SMichael Halcrow * 1424237fead6SMichael Halcrow * Read/parse the header data. The header format is detailed in the 1425237fead6SMichael Halcrow * comment block for the ecryptfs_write_headers_virt() function. 1426237fead6SMichael Halcrow * 1427237fead6SMichael Halcrow * Returns zero on success 1428237fead6SMichael Halcrow */ 1429237fead6SMichael Halcrow static int ecryptfs_read_headers_virt(char *page_virt, 1430237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat, 1431237fead6SMichael Halcrow struct dentry *ecryptfs_dentry) 1432237fead6SMichael Halcrow { 1433237fead6SMichael Halcrow int rc = 0; 1434237fead6SMichael Halcrow int offset; 1435237fead6SMichael Halcrow int bytes_read; 1436237fead6SMichael Halcrow 1437237fead6SMichael Halcrow ecryptfs_set_default_sizes(crypt_stat); 1438237fead6SMichael Halcrow crypt_stat->mount_crypt_stat = &ecryptfs_superblock_to_private( 1439237fead6SMichael Halcrow ecryptfs_dentry->d_sb)->mount_crypt_stat; 1440237fead6SMichael Halcrow offset = ECRYPTFS_FILE_SIZE_BYTES; 1441237fead6SMichael Halcrow rc = contains_ecryptfs_marker(page_virt + offset); 1442237fead6SMichael Halcrow if (rc == 0) { 1443237fead6SMichael Halcrow rc = -EINVAL; 1444237fead6SMichael Halcrow goto out; 1445237fead6SMichael Halcrow } 1446237fead6SMichael Halcrow offset += MAGIC_ECRYPTFS_MARKER_SIZE_BYTES; 1447237fead6SMichael Halcrow rc = ecryptfs_process_flags(crypt_stat, (page_virt + offset), 1448237fead6SMichael Halcrow &bytes_read); 1449237fead6SMichael Halcrow if (rc) { 1450237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Error processing flags\n"); 1451237fead6SMichael Halcrow goto out; 1452237fead6SMichael Halcrow } 1453237fead6SMichael Halcrow if (crypt_stat->file_version > ECRYPTFS_SUPPORTED_FILE_VERSION) { 1454237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "File version is [%d]; only " 1455237fead6SMichael Halcrow "file version [%d] is supported by this " 1456237fead6SMichael Halcrow "version of eCryptfs\n", 1457237fead6SMichael Halcrow crypt_stat->file_version, 1458237fead6SMichael Halcrow ECRYPTFS_SUPPORTED_FILE_VERSION); 1459237fead6SMichael Halcrow rc = -EINVAL; 1460237fead6SMichael Halcrow goto out; 1461237fead6SMichael Halcrow } 1462237fead6SMichael Halcrow offset += bytes_read; 1463237fead6SMichael Halcrow if (crypt_stat->file_version >= 1) { 1464237fead6SMichael Halcrow rc = parse_header_metadata(crypt_stat, (page_virt + offset), 1465237fead6SMichael Halcrow &bytes_read); 1466237fead6SMichael Halcrow if (rc) { 1467237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "Error reading header " 1468237fead6SMichael Halcrow "metadata; rc = [%d]\n", rc); 1469237fead6SMichael Halcrow } 1470237fead6SMichael Halcrow offset += bytes_read; 1471237fead6SMichael Halcrow } else 1472237fead6SMichael Halcrow set_default_header_data(crypt_stat); 1473237fead6SMichael Halcrow rc = ecryptfs_parse_packet_set(crypt_stat, (page_virt + offset), 1474237fead6SMichael Halcrow ecryptfs_dentry); 1475237fead6SMichael Halcrow out: 1476237fead6SMichael Halcrow return rc; 1477237fead6SMichael Halcrow } 1478237fead6SMichael Halcrow 1479237fead6SMichael Halcrow /** 1480237fead6SMichael Halcrow * ecryptfs_read_headers 1481237fead6SMichael Halcrow * 1482237fead6SMichael Halcrow * Returns zero if valid headers found and parsed; non-zero otherwise 1483237fead6SMichael Halcrow */ 1484237fead6SMichael Halcrow int ecryptfs_read_headers(struct dentry *ecryptfs_dentry, 1485237fead6SMichael Halcrow struct file *lower_file) 1486237fead6SMichael Halcrow { 1487237fead6SMichael Halcrow int rc = 0; 1488237fead6SMichael Halcrow char *page_virt = NULL; 1489237fead6SMichael Halcrow mm_segment_t oldfs; 1490237fead6SMichael Halcrow ssize_t bytes_read; 1491237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat = 1492237fead6SMichael Halcrow &ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat; 1493237fead6SMichael Halcrow 1494237fead6SMichael Halcrow /* Read the first page from the underlying file */ 1495237fead6SMichael Halcrow page_virt = kmem_cache_alloc(ecryptfs_header_cache_1, SLAB_USER); 1496237fead6SMichael Halcrow if (!page_virt) { 1497237fead6SMichael Halcrow rc = -ENOMEM; 1498237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "Unable to allocate page_virt\n"); 1499237fead6SMichael Halcrow goto out; 1500237fead6SMichael Halcrow } 1501237fead6SMichael Halcrow lower_file->f_pos = 0; 1502237fead6SMichael Halcrow oldfs = get_fs(); 1503237fead6SMichael Halcrow set_fs(get_ds()); 1504237fead6SMichael Halcrow bytes_read = lower_file->f_op->read(lower_file, 1505237fead6SMichael Halcrow (char __user *)page_virt, 1506237fead6SMichael Halcrow ECRYPTFS_DEFAULT_EXTENT_SIZE, 1507237fead6SMichael Halcrow &lower_file->f_pos); 1508237fead6SMichael Halcrow set_fs(oldfs); 1509237fead6SMichael Halcrow if (bytes_read != ECRYPTFS_DEFAULT_EXTENT_SIZE) { 1510237fead6SMichael Halcrow rc = -EINVAL; 1511237fead6SMichael Halcrow goto out; 1512237fead6SMichael Halcrow } 1513237fead6SMichael Halcrow rc = ecryptfs_read_headers_virt(page_virt, crypt_stat, 1514237fead6SMichael Halcrow ecryptfs_dentry); 1515237fead6SMichael Halcrow if (rc) { 1516237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Valid eCryptfs headers not " 1517237fead6SMichael Halcrow "found\n"); 1518237fead6SMichael Halcrow rc = -EINVAL; 1519237fead6SMichael Halcrow } 1520237fead6SMichael Halcrow out: 1521237fead6SMichael Halcrow if (page_virt) { 1522237fead6SMichael Halcrow memset(page_virt, 0, PAGE_CACHE_SIZE); 1523237fead6SMichael Halcrow kmem_cache_free(ecryptfs_header_cache_1, page_virt); 1524237fead6SMichael Halcrow } 1525237fead6SMichael Halcrow return rc; 1526237fead6SMichael Halcrow } 1527237fead6SMichael Halcrow 1528237fead6SMichael Halcrow /** 1529237fead6SMichael Halcrow * ecryptfs_encode_filename - converts a plaintext file name to cipher text 1530237fead6SMichael Halcrow * @crypt_stat: The crypt_stat struct associated with the file anem to encode 1531237fead6SMichael Halcrow * @name: The plaintext name 1532237fead6SMichael Halcrow * @length: The length of the plaintext 1533237fead6SMichael Halcrow * @encoded_name: The encypted name 1534237fead6SMichael Halcrow * 1535237fead6SMichael Halcrow * Encrypts and encodes a filename into something that constitutes a 1536237fead6SMichael Halcrow * valid filename for a filesystem, with printable characters. 1537237fead6SMichael Halcrow * 1538237fead6SMichael Halcrow * We assume that we have a properly initialized crypto context, 1539237fead6SMichael Halcrow * pointed to by crypt_stat->tfm. 1540237fead6SMichael Halcrow * 1541237fead6SMichael Halcrow * TODO: Implement filename decoding and decryption here, in place of 1542237fead6SMichael Halcrow * memcpy. We are keeping the framework around for now to (1) 1543237fead6SMichael Halcrow * facilitate testing of the components needed to implement filename 1544237fead6SMichael Halcrow * encryption and (2) to provide a code base from which other 1545237fead6SMichael Halcrow * developers in the community can easily implement this feature. 1546237fead6SMichael Halcrow * 1547237fead6SMichael Halcrow * Returns the length of encoded filename; negative if error 1548237fead6SMichael Halcrow */ 1549237fead6SMichael Halcrow int 1550237fead6SMichael Halcrow ecryptfs_encode_filename(struct ecryptfs_crypt_stat *crypt_stat, 1551237fead6SMichael Halcrow const char *name, int length, char **encoded_name) 1552237fead6SMichael Halcrow { 1553237fead6SMichael Halcrow int error = 0; 1554237fead6SMichael Halcrow 1555237fead6SMichael Halcrow (*encoded_name) = kmalloc(length + 2, GFP_KERNEL); 1556237fead6SMichael Halcrow if (!(*encoded_name)) { 1557237fead6SMichael Halcrow error = -ENOMEM; 1558237fead6SMichael Halcrow goto out; 1559237fead6SMichael Halcrow } 1560237fead6SMichael Halcrow /* TODO: Filename encryption is a scheduled feature for a 1561237fead6SMichael Halcrow * future version of eCryptfs. This function is here only for 1562237fead6SMichael Halcrow * the purpose of providing a framework for other developers 1563237fead6SMichael Halcrow * to easily implement filename encryption. Hint: Replace this 1564237fead6SMichael Halcrow * memcpy() with a call to encrypt and encode the 1565237fead6SMichael Halcrow * filename, the set the length accordingly. */ 1566237fead6SMichael Halcrow memcpy((void *)(*encoded_name), (void *)name, length); 1567237fead6SMichael Halcrow (*encoded_name)[length] = '\0'; 1568237fead6SMichael Halcrow error = length + 1; 1569237fead6SMichael Halcrow out: 1570237fead6SMichael Halcrow return error; 1571237fead6SMichael Halcrow } 1572237fead6SMichael Halcrow 1573237fead6SMichael Halcrow /** 1574237fead6SMichael Halcrow * ecryptfs_decode_filename - converts the cipher text name to plaintext 1575237fead6SMichael Halcrow * @crypt_stat: The crypt_stat struct associated with the file 1576237fead6SMichael Halcrow * @name: The filename in cipher text 1577237fead6SMichael Halcrow * @length: The length of the cipher text name 1578237fead6SMichael Halcrow * @decrypted_name: The plaintext name 1579237fead6SMichael Halcrow * 1580237fead6SMichael Halcrow * Decodes and decrypts the filename. 1581237fead6SMichael Halcrow * 1582237fead6SMichael Halcrow * We assume that we have a properly initialized crypto context, 1583237fead6SMichael Halcrow * pointed to by crypt_stat->tfm. 1584237fead6SMichael Halcrow * 1585237fead6SMichael Halcrow * TODO: Implement filename decoding and decryption here, in place of 1586237fead6SMichael Halcrow * memcpy. We are keeping the framework around for now to (1) 1587237fead6SMichael Halcrow * facilitate testing of the components needed to implement filename 1588237fead6SMichael Halcrow * encryption and (2) to provide a code base from which other 1589237fead6SMichael Halcrow * developers in the community can easily implement this feature. 1590237fead6SMichael Halcrow * 1591237fead6SMichael Halcrow * Returns the length of decoded filename; negative if error 1592237fead6SMichael Halcrow */ 1593237fead6SMichael Halcrow int 1594237fead6SMichael Halcrow ecryptfs_decode_filename(struct ecryptfs_crypt_stat *crypt_stat, 1595237fead6SMichael Halcrow const char *name, int length, char **decrypted_name) 1596237fead6SMichael Halcrow { 1597237fead6SMichael Halcrow int error = 0; 1598237fead6SMichael Halcrow 1599237fead6SMichael Halcrow (*decrypted_name) = kmalloc(length + 2, GFP_KERNEL); 1600237fead6SMichael Halcrow if (!(*decrypted_name)) { 1601237fead6SMichael Halcrow error = -ENOMEM; 1602237fead6SMichael Halcrow goto out; 1603237fead6SMichael Halcrow } 1604237fead6SMichael Halcrow /* TODO: Filename encryption is a scheduled feature for a 1605237fead6SMichael Halcrow * future version of eCryptfs. This function is here only for 1606237fead6SMichael Halcrow * the purpose of providing a framework for other developers 1607237fead6SMichael Halcrow * to easily implement filename encryption. Hint: Replace this 1608237fead6SMichael Halcrow * memcpy() with a call to decode and decrypt the 1609237fead6SMichael Halcrow * filename, the set the length accordingly. */ 1610237fead6SMichael Halcrow memcpy((void *)(*decrypted_name), (void *)name, length); 1611237fead6SMichael Halcrow (*decrypted_name)[length + 1] = '\0'; /* Only for convenience 1612237fead6SMichael Halcrow * in printing out the 1613237fead6SMichael Halcrow * string in debug 1614237fead6SMichael Halcrow * messages */ 1615237fead6SMichael Halcrow error = length; 1616237fead6SMichael Halcrow out: 1617237fead6SMichael Halcrow return error; 1618237fead6SMichael Halcrow } 1619237fead6SMichael Halcrow 1620237fead6SMichael Halcrow /** 1621237fead6SMichael Halcrow * ecryptfs_process_cipher - Perform cipher initialization. 1622237fead6SMichael Halcrow * @key_tfm: Crypto context for key material, set by this function 1623e5d9cbdeSMichael Halcrow * @cipher_name: Name of the cipher 1624e5d9cbdeSMichael Halcrow * @key_size: Size of the key in bytes 1625237fead6SMichael Halcrow * 1626237fead6SMichael Halcrow * Returns zero on success. Any crypto_tfm structs allocated here 1627237fead6SMichael Halcrow * should be released by other functions, such as on a superblock put 1628237fead6SMichael Halcrow * event, regardless of whether this function succeeds for fails. 1629237fead6SMichael Halcrow */ 1630237fead6SMichael Halcrow int 1631*8bba066fSMichael Halcrow ecryptfs_process_cipher(struct crypto_blkcipher **key_tfm, char *cipher_name, 1632e5d9cbdeSMichael Halcrow size_t *key_size) 1633237fead6SMichael Halcrow { 1634237fead6SMichael Halcrow char dummy_key[ECRYPTFS_MAX_KEY_BYTES]; 1635*8bba066fSMichael Halcrow char *full_alg_name; 1636237fead6SMichael Halcrow int rc; 1637237fead6SMichael Halcrow 1638e5d9cbdeSMichael Halcrow *key_tfm = NULL; 1639e5d9cbdeSMichael Halcrow if (*key_size > ECRYPTFS_MAX_KEY_BYTES) { 1640237fead6SMichael Halcrow rc = -EINVAL; 1641237fead6SMichael Halcrow printk(KERN_ERR "Requested key size is [%Zd] bytes; maximum " 1642e5d9cbdeSMichael Halcrow "allowable is [%d]\n", *key_size, ECRYPTFS_MAX_KEY_BYTES); 1643237fead6SMichael Halcrow goto out; 1644237fead6SMichael Halcrow } 1645*8bba066fSMichael Halcrow rc = ecryptfs_crypto_api_algify_cipher_name(&full_alg_name, cipher_name, 1646*8bba066fSMichael Halcrow "ecb"); 1647*8bba066fSMichael Halcrow if (rc) 1648*8bba066fSMichael Halcrow goto out; 1649*8bba066fSMichael Halcrow *key_tfm = crypto_alloc_blkcipher(full_alg_name, 0, CRYPTO_ALG_ASYNC); 1650*8bba066fSMichael Halcrow kfree(full_alg_name); 1651*8bba066fSMichael Halcrow if (IS_ERR(*key_tfm)) { 1652*8bba066fSMichael Halcrow rc = PTR_ERR(*key_tfm); 1653237fead6SMichael Halcrow printk(KERN_ERR "Unable to allocate crypto cipher with name " 1654*8bba066fSMichael Halcrow "[%s]; rc = [%d]\n", cipher_name, rc); 1655237fead6SMichael Halcrow goto out; 1656237fead6SMichael Halcrow } 1657*8bba066fSMichael Halcrow crypto_blkcipher_set_flags(*key_tfm, CRYPTO_TFM_REQ_WEAK_KEY); 1658*8bba066fSMichael Halcrow if (*key_size == 0) { 1659*8bba066fSMichael Halcrow struct blkcipher_alg *alg = crypto_blkcipher_alg(*key_tfm); 1660*8bba066fSMichael Halcrow 1661*8bba066fSMichael Halcrow *key_size = alg->max_keysize; 1662*8bba066fSMichael Halcrow } 1663e5d9cbdeSMichael Halcrow get_random_bytes(dummy_key, *key_size); 1664*8bba066fSMichael Halcrow rc = crypto_blkcipher_setkey(*key_tfm, dummy_key, *key_size); 1665237fead6SMichael Halcrow if (rc) { 1666237fead6SMichael Halcrow printk(KERN_ERR "Error attempting to set key of size [%Zd] for " 1667e5d9cbdeSMichael Halcrow "cipher [%s]; rc = [%d]\n", *key_size, cipher_name, rc); 1668237fead6SMichael Halcrow rc = -EINVAL; 1669237fead6SMichael Halcrow goto out; 1670237fead6SMichael Halcrow } 1671237fead6SMichael Halcrow out: 1672237fead6SMichael Halcrow return rc; 1673237fead6SMichael Halcrow } 1674