blob: 0535412d8c64a7793a64d5896c3c8ff031e5905f [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>
35#include "ecryptfs_kernel.h"
36
37struct kmem_cache *ecryptfs_lower_page_cache;
38
39/**
Michael Halcrow16a72c42007-10-16 01:28:14 -070040 * ecryptfs_get_locked_page
Michael Halcrow237fead2006-10-04 02:16:22 -070041 *
42 * Get one page from cache or lower f/s, return error otherwise.
43 *
Michael Halcrow16a72c42007-10-16 01:28:14 -070044 * Returns locked and up-to-date page (if ok), with increased
Michael Halcrow237fead2006-10-04 02:16:22 -070045 * refcnt.
46 */
Michael Halcrow16a72c42007-10-16 01:28:14 -070047struct page *ecryptfs_get_locked_page(struct file *file, loff_t index)
Michael Halcrow237fead2006-10-04 02:16:22 -070048{
Michael Halcrow237fead2006-10-04 02:16:22 -070049 struct dentry *dentry;
50 struct inode *inode;
51 struct address_space *mapping;
Michael Halcrow16a72c42007-10-16 01:28:14 -070052 struct page *page;
Michael Halcrow237fead2006-10-04 02:16:22 -070053
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -080054 dentry = file->f_path.dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -070055 inode = dentry->d_inode;
56 mapping = inode->i_mapping;
Michael Halcrow16a72c42007-10-16 01:28:14 -070057 page = read_mapping_page(mapping, index, (void *)file);
58 if (!IS_ERR(page))
59 lock_page(page);
60 return page;
Michael Halcrow237fead2006-10-04 02:16:22 -070061}
62
Michael Halcrow237fead2006-10-04 02:16:22 -070063/**
Michael Halcrow237fead2006-10-04 02:16:22 -070064 * ecryptfs_writepage
65 * @page: Page that is locked before this call is made
66 *
67 * Returns zero on success; non-zero otherwise
68 */
69static int ecryptfs_writepage(struct page *page, struct writeback_control *wbc)
70{
Michael Halcrow237fead2006-10-04 02:16:22 -070071 int rc;
72
Michael Halcrow0216f7f2007-10-16 01:28:08 -070073 rc = ecryptfs_encrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -070074 if (rc) {
75 ecryptfs_printk(KERN_WARNING, "Error encrypting "
76 "page (upper index [0x%.16x])\n", page->index);
77 ClearPageUptodate(page);
78 goto out;
79 }
80 SetPageUptodate(page);
81 unlock_page(page);
82out:
83 return rc;
84}
85
86/**
Michael Halcrowe77a56d2007-02-12 00:53:47 -080087 * Header Extent:
88 * Octets 0-7: Unencrypted file size (big-endian)
89 * Octets 8-15: eCryptfs special marker
90 * Octets 16-19: Flags
91 * Octet 16: File format version number (between 0 and 255)
92 * Octets 17-18: Reserved
93 * Octet 19: Bit 1 (lsb): Reserved
94 * Bit 2: Encrypted?
95 * Bits 3-8: Reserved
96 * Octets 20-23: Header extent size (big-endian)
97 * Octets 24-25: Number of header extents at front of file
98 * (big-endian)
99 * Octet 26: Begin RFC 2440 authentication token packet set
100 */
101static void set_header_info(char *page_virt,
102 struct ecryptfs_crypt_stat *crypt_stat)
103{
104 size_t written;
105 int save_num_header_extents_at_front =
106 crypt_stat->num_header_extents_at_front;
107
108 crypt_stat->num_header_extents_at_front = 1;
109 ecryptfs_write_header_metadata(page_virt + 20, crypt_stat, &written);
110 crypt_stat->num_header_extents_at_front =
111 save_num_header_extents_at_front;
112}
Michael Halcrow237fead2006-10-04 02:16:22 -0700113
114/**
Michael Halcrowbf12be12007-10-16 01:28:11 -0700115 * ecryptfs_copy_up_encrypted_with_header
116 * @page: Sort of a ``virtual'' representation of the encrypted lower
117 * file. The actual lower file does not have the metadata in
118 * the header. This is locked.
119 * @crypt_stat: The eCryptfs inode's cryptographic context
120 *
121 * The ``view'' is the version of the file that userspace winds up
122 * seeing, with the header information inserted.
123 */
124static int
125ecryptfs_copy_up_encrypted_with_header(struct page *page,
126 struct ecryptfs_crypt_stat *crypt_stat)
127{
128 loff_t extent_num_in_page = 0;
129 loff_t num_extents_per_page = (PAGE_CACHE_SIZE
130 / crypt_stat->extent_size);
131 int rc = 0;
132
133 while (extent_num_in_page < num_extents_per_page) {
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700134 loff_t view_extent_num = ((((loff_t)page->index)
135 * num_extents_per_page)
Michael Halcrowbf12be12007-10-16 01:28:11 -0700136 + extent_num_in_page);
137
138 if (view_extent_num < crypt_stat->num_header_extents_at_front) {
139 /* This is a header extent */
140 char *page_virt;
141
142 page_virt = kmap_atomic(page, KM_USER0);
143 memset(page_virt, 0, PAGE_CACHE_SIZE);
144 /* TODO: Support more than one header extent */
145 if (view_extent_num == 0) {
146 rc = ecryptfs_read_xattr_region(
147 page_virt, page->mapping->host);
148 set_header_info(page_virt, crypt_stat);
149 }
150 kunmap_atomic(page_virt, KM_USER0);
151 flush_dcache_page(page);
152 if (rc) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700153 printk(KERN_ERR "%s: Error reading xattr "
154 "region; rc = [%d]\n", __FUNCTION__, rc);
155 goto out;
156 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700157 } else {
158 /* This is an encrypted data extent */
159 loff_t lower_offset =
160 ((view_extent_num -
161 crypt_stat->num_header_extents_at_front)
162 * crypt_stat->extent_size);
163
164 rc = ecryptfs_read_lower_page_segment(
165 page, (lower_offset >> PAGE_CACHE_SHIFT),
166 (lower_offset & ~PAGE_CACHE_MASK),
167 crypt_stat->extent_size, page->mapping->host);
168 if (rc) {
169 printk(KERN_ERR "%s: Error attempting to read "
170 "extent at offset [%lld] in the lower "
171 "file; rc = [%d]\n", __FUNCTION__,
172 lower_offset, rc);
173 goto out;
174 }
175 }
176 extent_num_in_page++;
177 }
178out:
179 return rc;
180}
181
182/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700183 * ecryptfs_readpage
Michael Halcrowbf12be12007-10-16 01:28:11 -0700184 * @file: An eCryptfs file
185 * @page: Page from eCryptfs inode mapping into which to stick the read data
Michael Halcrow237fead2006-10-04 02:16:22 -0700186 *
187 * Read in a page, decrypting if necessary.
188 *
189 * Returns zero on success; non-zero on error.
190 */
191static int ecryptfs_readpage(struct file *file, struct page *page)
192{
Michael Halcrowbf12be12007-10-16 01:28:11 -0700193 struct ecryptfs_crypt_stat *crypt_stat =
194 &ecryptfs_inode_to_private(file->f_path.dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700195 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700196
Michael Halcrow237fead2006-10-04 02:16:22 -0700197 if (!crypt_stat
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800198 || !(crypt_stat->flags & ECRYPTFS_ENCRYPTED)
199 || (crypt_stat->flags & ECRYPTFS_NEW_FILE)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700200 ecryptfs_printk(KERN_DEBUG,
201 "Passing through unencrypted page\n");
Michael Halcrowbf12be12007-10-16 01:28:11 -0700202 rc = ecryptfs_read_lower_page_segment(page, page->index, 0,
203 PAGE_CACHE_SIZE,
204 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800205 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
206 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700207 rc = ecryptfs_copy_up_encrypted_with_header(page,
208 crypt_stat);
209 if (rc) {
210 printk(KERN_ERR "%s: Error attempting to copy "
211 "the encrypted content from the lower "
212 "file whilst inserting the metadata "
213 "from the xattr into the header; rc = "
214 "[%d]\n", __FUNCTION__, rc);
215 goto out;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800216 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700217
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800218 } else {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700219 rc = ecryptfs_read_lower_page_segment(
220 page, page->index, 0, PAGE_CACHE_SIZE,
221 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800222 if (rc) {
223 printk(KERN_ERR "Error reading page; rc = "
224 "[%d]\n", rc);
225 goto out;
226 }
227 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700228 } else {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700229 rc = ecryptfs_decrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700230 if (rc) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700231 ecryptfs_printk(KERN_ERR, "Error decrypting page; "
232 "rc = [%d]\n", rc);
233 goto out;
234 }
235 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700236out:
Michael Halcrow16a72c42007-10-16 01:28:14 -0700237 if (rc)
238 ClearPageUptodate(page);
239 else
240 SetPageUptodate(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700241 ecryptfs_printk(KERN_DEBUG, "Unlocking page with index = [0x%.16x]\n",
242 page->index);
243 unlock_page(page);
244 return rc;
245}
246
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800247/**
248 * Called with lower inode mutex held.
249 */
Michael Halcrow237fead2006-10-04 02:16:22 -0700250static int fill_zeros_to_end_of_page(struct page *page, unsigned int to)
251{
252 struct inode *inode = page->mapping->host;
253 int end_byte_in_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700254
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800255 if ((i_size_read(inode) / PAGE_CACHE_SIZE) != page->index)
256 goto out;
257 end_byte_in_page = i_size_read(inode) % PAGE_CACHE_SIZE;
258 if (to > end_byte_in_page)
259 end_byte_in_page = to;
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800260 zero_user_segment(page, end_byte_in_page, PAGE_CACHE_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700261out:
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800262 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700263}
264
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800265/* This function must zero any hole we create */
Michael Halcrow53a27312007-05-23 13:58:15 -0700266static int ecryptfs_prepare_write(struct file *file, struct page *page,
267 unsigned from, unsigned to)
268{
Michael Halcrow53a27312007-05-23 13:58:15 -0700269 int rc = 0;
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800270 loff_t prev_page_end_size;
Michael Halcrow53a27312007-05-23 13:58:15 -0700271
Michael Halcrow16a72c42007-10-16 01:28:14 -0700272 if (!PageUptodate(page)) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700273 rc = ecryptfs_read_lower_page_segment(page, page->index, 0,
274 PAGE_CACHE_SIZE,
275 page->mapping->host);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700276 if (rc) {
277 printk(KERN_ERR "%s: Error attemping to read lower "
278 "page segment; rc = [%d]\n", __FUNCTION__, rc);
279 ClearPageUptodate(page);
280 goto out;
281 } else
282 SetPageUptodate(page);
283 }
Michael Halcrow240e2df2007-06-27 14:09:44 -0700284
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800285 prev_page_end_size = ((loff_t)page->index << PAGE_CACHE_SHIFT);
286
287 /*
288 * If creating a page or more of holes, zero them out via truncate.
289 * Note, this will increase i_size.
290 */
291 if (page->index != 0) {
292 if (prev_page_end_size > i_size_read(page->mapping->host)) {
Michael Halcrow240e2df2007-06-27 14:09:44 -0700293 rc = ecryptfs_truncate(file->f_path.dentry,
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800294 prev_page_end_size);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700295 if (rc) {
296 printk(KERN_ERR "Error on attempt to "
297 "truncate to (higher) offset [%lld];"
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800298 " rc = [%d]\n", prev_page_end_size, rc);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700299 goto out;
300 }
Michael Halcrow53a27312007-05-23 13:58:15 -0700301 }
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800302 }
303 /*
304 * Writing to a new page, and creating a small hole from start of page?
305 * Zero it out.
306 */
307 if ((i_size_read(page->mapping->host) == prev_page_end_size) &&
308 (from != 0)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800309 zero_user(page, 0, PAGE_CACHE_SIZE);
Michael Halcrow53a27312007-05-23 13:58:15 -0700310 }
311out:
312 return rc;
313}
314
Michael Halcrow237fead2006-10-04 02:16:22 -0700315/**
316 * ecryptfs_write_inode_size_to_header
317 *
318 * Writes the lower file size to the first 8 bytes of the header.
319 *
320 * Returns zero on success; non-zero on error.
321 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700322static int ecryptfs_write_inode_size_to_header(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -0700323{
Michael Halcrow237fead2006-10-04 02:16:22 -0700324 u64 file_size;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700325 char *file_size_virt;
326 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700327
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700328 file_size_virt = kmalloc(sizeof(u64), GFP_KERNEL);
329 if (!file_size_virt) {
330 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700331 goto out;
332 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700333 file_size = (u64)i_size_read(ecryptfs_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700334 file_size = cpu_to_be64(file_size);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700335 memcpy(file_size_virt, &file_size, sizeof(u64));
336 rc = ecryptfs_write_lower(ecryptfs_inode, file_size_virt, 0,
337 sizeof(u64));
338 kfree(file_size_virt);
339 if (rc)
340 printk(KERN_ERR "%s: Error writing file size to header; "
341 "rc = [%d]\n", __FUNCTION__, rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700342out:
343 return rc;
344}
345
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700346struct kmem_cache *ecryptfs_xattr_cache;
347
348static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800349{
350 ssize_t size;
351 void *xattr_virt;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700352 struct dentry *lower_dentry =
353 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
354 struct inode *lower_inode = lower_dentry->d_inode;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800355 u64 file_size;
356 int rc;
357
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700358 if (!lower_inode->i_op->getxattr || !lower_inode->i_op->setxattr) {
359 printk(KERN_WARNING
360 "No support for setting xattr in lower filesystem\n");
361 rc = -ENOSYS;
362 goto out;
363 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800364 xattr_virt = kmem_cache_alloc(ecryptfs_xattr_cache, GFP_KERNEL);
365 if (!xattr_virt) {
366 printk(KERN_ERR "Out of memory whilst attempting to write "
367 "inode size to xattr\n");
368 rc = -ENOMEM;
369 goto out;
370 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700371 mutex_lock(&lower_inode->i_mutex);
372 size = lower_inode->i_op->getxattr(lower_dentry, ECRYPTFS_XATTR_NAME,
373 xattr_virt, PAGE_CACHE_SIZE);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800374 if (size < 0)
375 size = 8;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700376 file_size = (u64)i_size_read(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800377 file_size = cpu_to_be64(file_size);
378 memcpy(xattr_virt, &file_size, sizeof(u64));
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700379 rc = lower_inode->i_op->setxattr(lower_dentry, ECRYPTFS_XATTR_NAME,
380 xattr_virt, size, 0);
381 mutex_unlock(&lower_inode->i_mutex);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800382 if (rc)
383 printk(KERN_ERR "Error whilst attempting to write inode size "
384 "to lower file xattr; rc = [%d]\n", rc);
385 kmem_cache_free(ecryptfs_xattr_cache, xattr_virt);
386out:
387 return rc;
388}
389
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700390int ecryptfs_write_inode_size_to_metadata(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800391{
392 struct ecryptfs_crypt_stat *crypt_stat;
393
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700394 crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800395 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700396 return ecryptfs_write_inode_size_to_xattr(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800397 else
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700398 return ecryptfs_write_inode_size_to_header(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800399}
400
Michael Halcrow237fead2006-10-04 02:16:22 -0700401/**
402 * ecryptfs_commit_write
403 * @file: The eCryptfs file object
404 * @page: The eCryptfs page
405 * @from: Ignored (we rotate the page IV on each write)
406 * @to: Ignored
407 *
408 * This is where we encrypt the data and pass the encrypted data to
409 * the lower filesystem. In OpenPGP-compatible mode, we operate on
410 * entire underlying packets.
411 */
412static int ecryptfs_commit_write(struct file *file, struct page *page,
413 unsigned from, unsigned to)
414{
Michael Halcrow237fead2006-10-04 02:16:22 -0700415 loff_t pos;
Michael Halcrowbf12be12007-10-16 01:28:11 -0700416 struct inode *ecryptfs_inode = page->mapping->host;
417 struct ecryptfs_crypt_stat *crypt_stat =
418 &ecryptfs_inode_to_private(file->f_path.dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700419 int rc;
420
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800421 if (crypt_stat->flags & ECRYPTFS_NEW_FILE) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700422 ecryptfs_printk(KERN_DEBUG, "ECRYPTFS_NEW_FILE flag set in "
423 "crypt_stat at memory location [%p]\n", crypt_stat);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800424 crypt_stat->flags &= ~(ECRYPTFS_NEW_FILE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700425 } else
426 ecryptfs_printk(KERN_DEBUG, "Not a new file\n");
427 ecryptfs_printk(KERN_DEBUG, "Calling fill_zeros_to_end_of_page"
428 "(page w/ index = [0x%.16x], to = [%d])\n", page->index,
429 to);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700430 /* Fills in zeros if 'to' goes beyond inode size */
Michael Halcrow237fead2006-10-04 02:16:22 -0700431 rc = fill_zeros_to_end_of_page(page, to);
432 if (rc) {
433 ecryptfs_printk(KERN_WARNING, "Error attempting to fill "
434 "zeros in page with index = [0x%.16x]\n",
435 page->index);
436 goto out;
437 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700438 rc = ecryptfs_encrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700439 if (rc) {
440 ecryptfs_printk(KERN_WARNING, "Error encrypting page (upper "
441 "index [0x%.16x])\n", page->index);
442 goto out;
443 }
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700444 pos = (((loff_t)page->index) << PAGE_CACHE_SHIFT) + to;
Michael Halcrowbf12be12007-10-16 01:28:11 -0700445 if (pos > i_size_read(ecryptfs_inode)) {
446 i_size_write(ecryptfs_inode, pos);
Michael Halcrow237fead2006-10-04 02:16:22 -0700447 ecryptfs_printk(KERN_DEBUG, "Expanded file size to "
Michael Halcrowbf12be12007-10-16 01:28:11 -0700448 "[0x%.16x]\n", i_size_read(ecryptfs_inode));
Michael Halcrow237fead2006-10-04 02:16:22 -0700449 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700450 rc = ecryptfs_write_inode_size_to_metadata(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800451 if (rc)
452 printk(KERN_ERR "Error writing inode size to metadata; "
453 "rc = [%d]\n", rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700454out:
Michael Halcrow237fead2006-10-04 02:16:22 -0700455 return rc;
456}
457
Michael Halcrow237fead2006-10-04 02:16:22 -0700458static sector_t ecryptfs_bmap(struct address_space *mapping, sector_t block)
459{
460 int rc = 0;
461 struct inode *inode;
462 struct inode *lower_inode;
463
464 inode = (struct inode *)mapping->host;
465 lower_inode = ecryptfs_inode_to_lower(inode);
466 if (lower_inode->i_mapping->a_ops->bmap)
467 rc = lower_inode->i_mapping->a_ops->bmap(lower_inode->i_mapping,
468 block);
469 return rc;
470}
471
Michael Halcrow237fead2006-10-04 02:16:22 -0700472struct address_space_operations ecryptfs_aops = {
473 .writepage = ecryptfs_writepage,
474 .readpage = ecryptfs_readpage,
475 .prepare_write = ecryptfs_prepare_write,
476 .commit_write = ecryptfs_commit_write,
477 .bmap = ecryptfs_bmap,
Michael Halcrow237fead2006-10-04 02:16:22 -0700478};