blob: 5a30e01547f1e8aebf23c4545006f2d2e95e8174 [file] [log] [blame]
Michael Halcrow237fead2006-10-04 02:16:22 -07001/**
2 * eCryptfs: Linux filesystem encryption layer
3 * This is where eCryptfs coordinates the symmetric encryption and
4 * decryption of the file data as it passes between the lower
5 * encrypted file and the upper decrypted file.
6 *
7 * Copyright (C) 1997-2003 Erez Zadok
8 * Copyright (C) 2001-2003 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08009 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -070010 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 * 02111-1307, USA.
26 */
27
28#include <linux/pagemap.h>
29#include <linux/writeback.h>
30#include <linux/page-flags.h>
31#include <linux/mount.h>
32#include <linux/file.h>
33#include <linux/crypto.h>
34#include <linux/scatterlist.h>
Harvey Harrison0a688ad2008-07-23 21:30:07 -070035#include <asm/unaligned.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070036#include "ecryptfs_kernel.h"
37
Michael Halcrow237fead2006-10-04 02:16:22 -070038/**
Michael Halcrow16a72c42007-10-16 01:28:14 -070039 * ecryptfs_get_locked_page
Michael Halcrow237fead2006-10-04 02:16:22 -070040 *
41 * Get one page from cache or lower f/s, return error otherwise.
42 *
Michael Halcrow16a72c42007-10-16 01:28:14 -070043 * Returns locked and up-to-date page (if ok), with increased
Michael Halcrow237fead2006-10-04 02:16:22 -070044 * refcnt.
45 */
Michael Halcrow16a72c42007-10-16 01:28:14 -070046struct page *ecryptfs_get_locked_page(struct file *file, loff_t index)
Michael Halcrow237fead2006-10-04 02:16:22 -070047{
Michael Halcrow237fead2006-10-04 02:16:22 -070048 struct dentry *dentry;
49 struct inode *inode;
50 struct address_space *mapping;
Michael Halcrow16a72c42007-10-16 01:28:14 -070051 struct page *page;
Michael Halcrow237fead2006-10-04 02:16:22 -070052
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -080053 dentry = file->f_path.dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -070054 inode = dentry->d_inode;
55 mapping = inode->i_mapping;
Michael Halcrow16a72c42007-10-16 01:28:14 -070056 page = read_mapping_page(mapping, index, (void *)file);
57 if (!IS_ERR(page))
58 lock_page(page);
59 return page;
Michael Halcrow237fead2006-10-04 02:16:22 -070060}
61
Michael Halcrow237fead2006-10-04 02:16:22 -070062/**
Michael Halcrow237fead2006-10-04 02:16:22 -070063 * ecryptfs_writepage
64 * @page: Page that is locked before this call is made
65 *
66 * Returns zero on success; non-zero otherwise
67 */
68static int ecryptfs_writepage(struct page *page, struct writeback_control *wbc)
69{
Michael Halcrow237fead2006-10-04 02:16:22 -070070 int rc;
71
Michael Halcrow0216f7f2007-10-16 01:28:08 -070072 rc = ecryptfs_encrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -070073 if (rc) {
74 ecryptfs_printk(KERN_WARNING, "Error encrypting "
75 "page (upper index [0x%.16x])\n", page->index);
76 ClearPageUptodate(page);
77 goto out;
78 }
79 SetPageUptodate(page);
80 unlock_page(page);
81out:
82 return rc;
83}
84
85/**
Michael Halcrowe77a56d2007-02-12 00:53:47 -080086 * Header Extent:
87 * Octets 0-7: Unencrypted file size (big-endian)
88 * Octets 8-15: eCryptfs special marker
89 * Octets 16-19: Flags
90 * Octet 16: File format version number (between 0 and 255)
91 * Octets 17-18: Reserved
92 * Octet 19: Bit 1 (lsb): Reserved
93 * Bit 2: Encrypted?
94 * Bits 3-8: Reserved
95 * Octets 20-23: Header extent size (big-endian)
96 * Octets 24-25: Number of header extents at front of file
97 * (big-endian)
98 * Octet 26: Begin RFC 2440 authentication token packet set
99 */
Michael Halcrow237fead2006-10-04 02:16:22 -0700100
101/**
Michael Halcrowbf12be12007-10-16 01:28:11 -0700102 * ecryptfs_copy_up_encrypted_with_header
103 * @page: Sort of a ``virtual'' representation of the encrypted lower
104 * file. The actual lower file does not have the metadata in
105 * the header. This is locked.
106 * @crypt_stat: The eCryptfs inode's cryptographic context
107 *
108 * The ``view'' is the version of the file that userspace winds up
109 * seeing, with the header information inserted.
110 */
111static int
112ecryptfs_copy_up_encrypted_with_header(struct page *page,
113 struct ecryptfs_crypt_stat *crypt_stat)
114{
115 loff_t extent_num_in_page = 0;
116 loff_t num_extents_per_page = (PAGE_CACHE_SIZE
117 / crypt_stat->extent_size);
118 int rc = 0;
119
120 while (extent_num_in_page < num_extents_per_page) {
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700121 loff_t view_extent_num = ((((loff_t)page->index)
122 * num_extents_per_page)
Michael Halcrowbf12be12007-10-16 01:28:11 -0700123 + extent_num_in_page);
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800124 size_t num_header_extents_at_front =
125 (crypt_stat->num_header_bytes_at_front
126 / crypt_stat->extent_size);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700127
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800128 if (view_extent_num < num_header_extents_at_front) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700129 /* This is a header extent */
130 char *page_virt;
131
132 page_virt = kmap_atomic(page, KM_USER0);
133 memset(page_virt, 0, PAGE_CACHE_SIZE);
134 /* TODO: Support more than one header extent */
135 if (view_extent_num == 0) {
Tyler Hicks157f1072010-02-11 07:10:38 -0600136 size_t written;
137
Michael Halcrowbf12be12007-10-16 01:28:11 -0700138 rc = ecryptfs_read_xattr_region(
139 page_virt, page->mapping->host);
Tyler Hicks157f1072010-02-11 07:10:38 -0600140 ecryptfs_write_header_metadata(page_virt + 20,
141 crypt_stat,
142 &written);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700143 }
144 kunmap_atomic(page_virt, KM_USER0);
145 flush_dcache_page(page);
146 if (rc) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700147 printk(KERN_ERR "%s: Error reading xattr "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700148 "region; rc = [%d]\n", __func__, rc);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700149 goto out;
150 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700151 } else {
152 /* This is an encrypted data extent */
153 loff_t lower_offset =
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800154 ((view_extent_num * crypt_stat->extent_size)
155 - crypt_stat->num_header_bytes_at_front);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700156
157 rc = ecryptfs_read_lower_page_segment(
158 page, (lower_offset >> PAGE_CACHE_SHIFT),
159 (lower_offset & ~PAGE_CACHE_MASK),
160 crypt_stat->extent_size, page->mapping->host);
161 if (rc) {
162 printk(KERN_ERR "%s: Error attempting to read "
163 "extent at offset [%lld] in the lower "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700164 "file; rc = [%d]\n", __func__,
Michael Halcrowbf12be12007-10-16 01:28:11 -0700165 lower_offset, rc);
166 goto out;
167 }
168 }
169 extent_num_in_page++;
170 }
171out:
172 return rc;
173}
174
175/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700176 * ecryptfs_readpage
Michael Halcrowbf12be12007-10-16 01:28:11 -0700177 * @file: An eCryptfs file
178 * @page: Page from eCryptfs inode mapping into which to stick the read data
Michael Halcrow237fead2006-10-04 02:16:22 -0700179 *
180 * Read in a page, decrypting if necessary.
181 *
182 * Returns zero on success; non-zero on error.
183 */
184static int ecryptfs_readpage(struct file *file, struct page *page)
185{
Michael Halcrowbf12be12007-10-16 01:28:11 -0700186 struct ecryptfs_crypt_stat *crypt_stat =
187 &ecryptfs_inode_to_private(file->f_path.dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700188 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700189
Michael Halcrow237fead2006-10-04 02:16:22 -0700190 if (!crypt_stat
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800191 || !(crypt_stat->flags & ECRYPTFS_ENCRYPTED)
192 || (crypt_stat->flags & ECRYPTFS_NEW_FILE)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700193 ecryptfs_printk(KERN_DEBUG,
194 "Passing through unencrypted page\n");
Michael Halcrowbf12be12007-10-16 01:28:11 -0700195 rc = ecryptfs_read_lower_page_segment(page, page->index, 0,
196 PAGE_CACHE_SIZE,
197 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800198 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
199 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700200 rc = ecryptfs_copy_up_encrypted_with_header(page,
201 crypt_stat);
202 if (rc) {
203 printk(KERN_ERR "%s: Error attempting to copy "
204 "the encrypted content from the lower "
205 "file whilst inserting the metadata "
206 "from the xattr into the header; rc = "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700207 "[%d]\n", __func__, rc);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700208 goto out;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800209 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700210
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800211 } else {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700212 rc = ecryptfs_read_lower_page_segment(
213 page, page->index, 0, PAGE_CACHE_SIZE,
214 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800215 if (rc) {
216 printk(KERN_ERR "Error reading page; rc = "
217 "[%d]\n", rc);
218 goto out;
219 }
220 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700221 } else {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700222 rc = ecryptfs_decrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700223 if (rc) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700224 ecryptfs_printk(KERN_ERR, "Error decrypting page; "
225 "rc = [%d]\n", rc);
226 goto out;
227 }
228 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700229out:
Michael Halcrow16a72c42007-10-16 01:28:14 -0700230 if (rc)
231 ClearPageUptodate(page);
232 else
233 SetPageUptodate(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700234 ecryptfs_printk(KERN_DEBUG, "Unlocking page with index = [0x%.16x]\n",
235 page->index);
236 unlock_page(page);
237 return rc;
238}
239
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800240/**
241 * Called with lower inode mutex held.
242 */
Michael Halcrow237fead2006-10-04 02:16:22 -0700243static int fill_zeros_to_end_of_page(struct page *page, unsigned int to)
244{
245 struct inode *inode = page->mapping->host;
246 int end_byte_in_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700247
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800248 if ((i_size_read(inode) / PAGE_CACHE_SIZE) != page->index)
249 goto out;
250 end_byte_in_page = i_size_read(inode) % PAGE_CACHE_SIZE;
251 if (to > end_byte_in_page)
252 end_byte_in_page = to;
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800253 zero_user_segment(page, end_byte_in_page, PAGE_CACHE_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700254out:
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800255 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700256}
257
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800258/**
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700259 * ecryptfs_write_begin
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800260 * @file: The eCryptfs file
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700261 * @mapping: The eCryptfs object
262 * @pos: The file offset at which to start writing
263 * @len: Length of the write
264 * @flags: Various flags
265 * @pagep: Pointer to return the page
266 * @fsdata: Pointer to return fs data (unused)
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800267 *
268 * This function must zero any hole we create
269 *
270 * Returns zero on success; non-zero otherwise
271 */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700272static int ecryptfs_write_begin(struct file *file,
273 struct address_space *mapping,
274 loff_t pos, unsigned len, unsigned flags,
275 struct page **pagep, void **fsdata)
Michael Halcrow53a27312007-05-23 13:58:15 -0700276{
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700277 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
278 struct page *page;
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800279 loff_t prev_page_end_size;
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800280 int rc = 0;
Michael Halcrow53a27312007-05-23 13:58:15 -0700281
Nick Piggin54566b22009-01-04 12:00:53 -0800282 page = grab_cache_page_write_begin(mapping, index, flags);
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700283 if (!page)
284 return -ENOMEM;
285 *pagep = page;
286
Michael Halcrow16a72c42007-10-16 01:28:14 -0700287 if (!PageUptodate(page)) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800288 struct ecryptfs_crypt_stat *crypt_stat =
289 &ecryptfs_inode_to_private(
290 file->f_path.dentry->d_inode)->crypt_stat;
291
292 if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)
293 || (crypt_stat->flags & ECRYPTFS_NEW_FILE)) {
294 rc = ecryptfs_read_lower_page_segment(
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700295 page, index, 0, PAGE_CACHE_SIZE, mapping->host);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800296 if (rc) {
297 printk(KERN_ERR "%s: Error attemping to read "
298 "lower page segment; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700299 __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800300 ClearPageUptodate(page);
301 goto out;
302 } else
303 SetPageUptodate(page);
304 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
305 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
306 rc = ecryptfs_copy_up_encrypted_with_header(
307 page, crypt_stat);
308 if (rc) {
309 printk(KERN_ERR "%s: Error attempting "
310 "to copy the encrypted content "
311 "from the lower file whilst "
312 "inserting the metadata from "
313 "the xattr into the header; rc "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700314 "= [%d]\n", __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800315 ClearPageUptodate(page);
316 goto out;
317 }
318 SetPageUptodate(page);
319 } else {
320 rc = ecryptfs_read_lower_page_segment(
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700321 page, index, 0, PAGE_CACHE_SIZE,
322 mapping->host);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800323 if (rc) {
324 printk(KERN_ERR "%s: Error reading "
325 "page; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700326 __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800327 ClearPageUptodate(page);
328 goto out;
329 }
330 SetPageUptodate(page);
331 }
332 } else {
333 rc = ecryptfs_decrypt_page(page);
334 if (rc) {
335 printk(KERN_ERR "%s: Error decrypting page "
336 "at index [%ld]; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700337 __func__, page->index, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800338 ClearPageUptodate(page);
339 goto out;
340 }
Michael Halcrow16a72c42007-10-16 01:28:14 -0700341 SetPageUptodate(page);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800342 }
Michael Halcrow16a72c42007-10-16 01:28:14 -0700343 }
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700344 prev_page_end_size = ((loff_t)index << PAGE_CACHE_SHIFT);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800345 /* If creating a page or more of holes, zero them out via truncate.
346 * Note, this will increase i_size. */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700347 if (index != 0) {
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800348 if (prev_page_end_size > i_size_read(page->mapping->host)) {
Michael Halcrow240e2df2007-06-27 14:09:44 -0700349 rc = ecryptfs_truncate(file->f_path.dentry,
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800350 prev_page_end_size);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700351 if (rc) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800352 printk(KERN_ERR "%s: Error on attempt to "
Michael Halcrow240e2df2007-06-27 14:09:44 -0700353 "truncate to (higher) offset [%lld];"
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700354 " rc = [%d]\n", __func__,
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800355 prev_page_end_size, rc);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700356 goto out;
357 }
Michael Halcrow53a27312007-05-23 13:58:15 -0700358 }
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800359 }
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800360 /* Writing to a new page, and creating a small hole from start
361 * of page? Zero it out. */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700362 if ((i_size_read(mapping->host) == prev_page_end_size)
363 && (pos != 0))
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800364 zero_user(page, 0, PAGE_CACHE_SIZE);
Michael Halcrow53a27312007-05-23 13:58:15 -0700365out:
366 return rc;
367}
368
Michael Halcrow237fead2006-10-04 02:16:22 -0700369/**
370 * ecryptfs_write_inode_size_to_header
371 *
372 * Writes the lower file size to the first 8 bytes of the header.
373 *
374 * Returns zero on success; non-zero on error.
375 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700376static int ecryptfs_write_inode_size_to_header(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -0700377{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700378 char *file_size_virt;
379 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700380
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700381 file_size_virt = kmalloc(sizeof(u64), GFP_KERNEL);
382 if (!file_size_virt) {
383 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700384 goto out;
385 }
Harvey Harrison0a688ad2008-07-23 21:30:07 -0700386 put_unaligned_be64(i_size_read(ecryptfs_inode), file_size_virt);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700387 rc = ecryptfs_write_lower(ecryptfs_inode, file_size_virt, 0,
388 sizeof(u64));
389 kfree(file_size_virt);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500390 if (rc < 0)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700391 printk(KERN_ERR "%s: Error writing file size to header; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700392 "rc = [%d]\n", __func__, rc);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500393 else
394 rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700395out:
396 return rc;
397}
398
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700399struct kmem_cache *ecryptfs_xattr_cache;
400
401static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800402{
403 ssize_t size;
404 void *xattr_virt;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700405 struct dentry *lower_dentry =
406 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
407 struct inode *lower_inode = lower_dentry->d_inode;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800408 int rc;
409
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700410 if (!lower_inode->i_op->getxattr || !lower_inode->i_op->setxattr) {
411 printk(KERN_WARNING
412 "No support for setting xattr in lower filesystem\n");
413 rc = -ENOSYS;
414 goto out;
415 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800416 xattr_virt = kmem_cache_alloc(ecryptfs_xattr_cache, GFP_KERNEL);
417 if (!xattr_virt) {
418 printk(KERN_ERR "Out of memory whilst attempting to write "
419 "inode size to xattr\n");
420 rc = -ENOMEM;
421 goto out;
422 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700423 mutex_lock(&lower_inode->i_mutex);
424 size = lower_inode->i_op->getxattr(lower_dentry, ECRYPTFS_XATTR_NAME,
425 xattr_virt, PAGE_CACHE_SIZE);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800426 if (size < 0)
427 size = 8;
Harvey Harrison0a688ad2008-07-23 21:30:07 -0700428 put_unaligned_be64(i_size_read(ecryptfs_inode), xattr_virt);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700429 rc = lower_inode->i_op->setxattr(lower_dentry, ECRYPTFS_XATTR_NAME,
430 xattr_virt, size, 0);
431 mutex_unlock(&lower_inode->i_mutex);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800432 if (rc)
433 printk(KERN_ERR "Error whilst attempting to write inode size "
434 "to lower file xattr; rc = [%d]\n", rc);
435 kmem_cache_free(ecryptfs_xattr_cache, xattr_virt);
436out:
437 return rc;
438}
439
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700440int ecryptfs_write_inode_size_to_metadata(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800441{
442 struct ecryptfs_crypt_stat *crypt_stat;
443
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700444 crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Tyler Hicks13a791b2009-04-13 15:29:27 -0500445 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800446 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700447 return ecryptfs_write_inode_size_to_xattr(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800448 else
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700449 return ecryptfs_write_inode_size_to_header(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800450}
451
Michael Halcrow237fead2006-10-04 02:16:22 -0700452/**
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700453 * ecryptfs_write_end
Michael Halcrow237fead2006-10-04 02:16:22 -0700454 * @file: The eCryptfs file object
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700455 * @mapping: The eCryptfs object
456 * @pos: The file position
457 * @len: The length of the data (unused)
458 * @copied: The amount of data copied
Michael Halcrow237fead2006-10-04 02:16:22 -0700459 * @page: The eCryptfs page
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700460 * @fsdata: The fsdata (unused)
Michael Halcrow237fead2006-10-04 02:16:22 -0700461 *
462 * This is where we encrypt the data and pass the encrypted data to
463 * the lower filesystem. In OpenPGP-compatible mode, we operate on
464 * entire underlying packets.
465 */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700466static int ecryptfs_write_end(struct file *file,
467 struct address_space *mapping,
468 loff_t pos, unsigned len, unsigned copied,
469 struct page *page, void *fsdata)
Michael Halcrow237fead2006-10-04 02:16:22 -0700470{
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700471 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
472 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
473 unsigned to = from + copied;
474 struct inode *ecryptfs_inode = mapping->host;
Michael Halcrowbf12be12007-10-16 01:28:11 -0700475 struct ecryptfs_crypt_stat *crypt_stat =
476 &ecryptfs_inode_to_private(file->f_path.dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700477 int rc;
478
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800479 if (crypt_stat->flags & ECRYPTFS_NEW_FILE) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700480 ecryptfs_printk(KERN_DEBUG, "ECRYPTFS_NEW_FILE flag set in "
481 "crypt_stat at memory location [%p]\n", crypt_stat);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800482 crypt_stat->flags &= ~(ECRYPTFS_NEW_FILE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700483 } else
484 ecryptfs_printk(KERN_DEBUG, "Not a new file\n");
485 ecryptfs_printk(KERN_DEBUG, "Calling fill_zeros_to_end_of_page"
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700486 "(page w/ index = [0x%.16x], to = [%d])\n", index, to);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500487 if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
488 rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, page, 0,
489 to);
490 if (!rc) {
491 rc = copied;
492 fsstack_copy_inode_size(ecryptfs_inode,
493 ecryptfs_inode_to_lower(ecryptfs_inode));
494 }
495 goto out;
496 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700497 /* Fills in zeros if 'to' goes beyond inode size */
Michael Halcrow237fead2006-10-04 02:16:22 -0700498 rc = fill_zeros_to_end_of_page(page, to);
499 if (rc) {
500 ecryptfs_printk(KERN_WARNING, "Error attempting to fill "
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700501 "zeros in page with index = [0x%.16x]\n", index);
Michael Halcrow237fead2006-10-04 02:16:22 -0700502 goto out;
503 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700504 rc = ecryptfs_encrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700505 if (rc) {
506 ecryptfs_printk(KERN_WARNING, "Error encrypting page (upper "
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700507 "index [0x%.16x])\n", index);
Michael Halcrow237fead2006-10-04 02:16:22 -0700508 goto out;
509 }
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700510 if (pos + copied > i_size_read(ecryptfs_inode)) {
511 i_size_write(ecryptfs_inode, pos + copied);
Michael Halcrow237fead2006-10-04 02:16:22 -0700512 ecryptfs_printk(KERN_DEBUG, "Expanded file size to "
Michael Halcrowbf12be12007-10-16 01:28:11 -0700513 "[0x%.16x]\n", i_size_read(ecryptfs_inode));
Michael Halcrow237fead2006-10-04 02:16:22 -0700514 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700515 rc = ecryptfs_write_inode_size_to_metadata(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800516 if (rc)
517 printk(KERN_ERR "Error writing inode size to metadata; "
518 "rc = [%d]\n", rc);
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700519 else
520 rc = copied;
Michael Halcrow237fead2006-10-04 02:16:22 -0700521out:
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700522 unlock_page(page);
523 page_cache_release(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700524 return rc;
525}
526
Michael Halcrow237fead2006-10-04 02:16:22 -0700527static sector_t ecryptfs_bmap(struct address_space *mapping, sector_t block)
528{
529 int rc = 0;
530 struct inode *inode;
531 struct inode *lower_inode;
532
533 inode = (struct inode *)mapping->host;
534 lower_inode = ecryptfs_inode_to_lower(inode);
535 if (lower_inode->i_mapping->a_ops->bmap)
536 rc = lower_inode->i_mapping->a_ops->bmap(lower_inode->i_mapping,
537 block);
538 return rc;
539}
540
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700541const struct address_space_operations ecryptfs_aops = {
Michael Halcrow237fead2006-10-04 02:16:22 -0700542 .writepage = ecryptfs_writepage,
543 .readpage = ecryptfs_readpage,
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700544 .write_begin = ecryptfs_write_begin,
545 .write_end = ecryptfs_write_end,
Michael Halcrow237fead2006-10-04 02:16:22 -0700546 .bmap = ecryptfs_bmap,
Michael Halcrow237fead2006-10-04 02:16:22 -0700547};