blob: 270f42ae7c0d1b9adcc30c0dbb516ce89c4c6578 [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 =
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600125 (crypt_stat->metadata_size / crypt_stat->extent_size);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700126
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800127 if (view_extent_num < num_header_extents_at_front) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700128 /* This is a header extent */
129 char *page_virt;
130
131 page_virt = kmap_atomic(page, KM_USER0);
132 memset(page_virt, 0, PAGE_CACHE_SIZE);
133 /* TODO: Support more than one header extent */
134 if (view_extent_num == 0) {
Tyler Hicks157f1072010-02-11 07:10:38 -0600135 size_t written;
136
Michael Halcrowbf12be12007-10-16 01:28:11 -0700137 rc = ecryptfs_read_xattr_region(
138 page_virt, page->mapping->host);
Tyler Hicks157f1072010-02-11 07:10:38 -0600139 ecryptfs_write_header_metadata(page_virt + 20,
140 crypt_stat,
141 &written);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700142 }
143 kunmap_atomic(page_virt, KM_USER0);
144 flush_dcache_page(page);
145 if (rc) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700146 printk(KERN_ERR "%s: Error reading xattr "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700147 "region; rc = [%d]\n", __func__, rc);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700148 goto out;
149 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700150 } else {
151 /* This is an encrypted data extent */
152 loff_t lower_offset =
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800153 ((view_extent_num * crypt_stat->extent_size)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600154 - crypt_stat->metadata_size);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700155
156 rc = ecryptfs_read_lower_page_segment(
157 page, (lower_offset >> PAGE_CACHE_SHIFT),
158 (lower_offset & ~PAGE_CACHE_MASK),
159 crypt_stat->extent_size, page->mapping->host);
160 if (rc) {
161 printk(KERN_ERR "%s: Error attempting to read "
162 "extent at offset [%lld] in the lower "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700163 "file; rc = [%d]\n", __func__,
Michael Halcrowbf12be12007-10-16 01:28:11 -0700164 lower_offset, rc);
165 goto out;
166 }
167 }
168 extent_num_in_page++;
169 }
170out:
171 return rc;
172}
173
174/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700175 * ecryptfs_readpage
Michael Halcrowbf12be12007-10-16 01:28:11 -0700176 * @file: An eCryptfs file
177 * @page: Page from eCryptfs inode mapping into which to stick the read data
Michael Halcrow237fead2006-10-04 02:16:22 -0700178 *
179 * Read in a page, decrypting if necessary.
180 *
181 * Returns zero on success; non-zero on error.
182 */
183static int ecryptfs_readpage(struct file *file, struct page *page)
184{
Michael Halcrowbf12be12007-10-16 01:28:11 -0700185 struct ecryptfs_crypt_stat *crypt_stat =
186 &ecryptfs_inode_to_private(file->f_path.dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700187 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700188
Michael Halcrow237fead2006-10-04 02:16:22 -0700189 if (!crypt_stat
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800190 || !(crypt_stat->flags & ECRYPTFS_ENCRYPTED)
191 || (crypt_stat->flags & ECRYPTFS_NEW_FILE)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700192 ecryptfs_printk(KERN_DEBUG,
193 "Passing through unencrypted page\n");
Michael Halcrowbf12be12007-10-16 01:28:11 -0700194 rc = ecryptfs_read_lower_page_segment(page, page->index, 0,
195 PAGE_CACHE_SIZE,
196 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800197 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
198 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700199 rc = ecryptfs_copy_up_encrypted_with_header(page,
200 crypt_stat);
201 if (rc) {
202 printk(KERN_ERR "%s: Error attempting to copy "
203 "the encrypted content from the lower "
204 "file whilst inserting the metadata "
205 "from the xattr into the header; rc = "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700206 "[%d]\n", __func__, rc);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700207 goto out;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800208 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700209
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800210 } else {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700211 rc = ecryptfs_read_lower_page_segment(
212 page, page->index, 0, PAGE_CACHE_SIZE,
213 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800214 if (rc) {
215 printk(KERN_ERR "Error reading page; rc = "
216 "[%d]\n", rc);
217 goto out;
218 }
219 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700220 } else {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700221 rc = ecryptfs_decrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700222 if (rc) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700223 ecryptfs_printk(KERN_ERR, "Error decrypting page; "
224 "rc = [%d]\n", rc);
225 goto out;
226 }
227 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700228out:
Michael Halcrow16a72c42007-10-16 01:28:14 -0700229 if (rc)
230 ClearPageUptodate(page);
231 else
232 SetPageUptodate(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700233 ecryptfs_printk(KERN_DEBUG, "Unlocking page with index = [0x%.16x]\n",
234 page->index);
235 unlock_page(page);
236 return rc;
237}
238
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800239/**
240 * Called with lower inode mutex held.
241 */
Michael Halcrow237fead2006-10-04 02:16:22 -0700242static int fill_zeros_to_end_of_page(struct page *page, unsigned int to)
243{
244 struct inode *inode = page->mapping->host;
245 int end_byte_in_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700246
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800247 if ((i_size_read(inode) / PAGE_CACHE_SIZE) != page->index)
248 goto out;
249 end_byte_in_page = i_size_read(inode) % PAGE_CACHE_SIZE;
250 if (to > end_byte_in_page)
251 end_byte_in_page = to;
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800252 zero_user_segment(page, end_byte_in_page, PAGE_CACHE_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700253out:
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800254 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700255}
256
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800257/**
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700258 * ecryptfs_write_begin
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800259 * @file: The eCryptfs file
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700260 * @mapping: The eCryptfs object
261 * @pos: The file offset at which to start writing
262 * @len: Length of the write
263 * @flags: Various flags
264 * @pagep: Pointer to return the page
265 * @fsdata: Pointer to return fs data (unused)
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800266 *
267 * This function must zero any hole we create
268 *
269 * Returns zero on success; non-zero otherwise
270 */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700271static int ecryptfs_write_begin(struct file *file,
272 struct address_space *mapping,
273 loff_t pos, unsigned len, unsigned flags,
274 struct page **pagep, void **fsdata)
Michael Halcrow53a27312007-05-23 13:58:15 -0700275{
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700276 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
277 struct page *page;
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800278 loff_t prev_page_end_size;
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800279 int rc = 0;
Michael Halcrow53a27312007-05-23 13:58:15 -0700280
Nick Piggin54566b22009-01-04 12:00:53 -0800281 page = grab_cache_page_write_begin(mapping, index, flags);
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700282 if (!page)
283 return -ENOMEM;
284 *pagep = page;
285
Michael Halcrow16a72c42007-10-16 01:28:14 -0700286 if (!PageUptodate(page)) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800287 struct ecryptfs_crypt_stat *crypt_stat =
288 &ecryptfs_inode_to_private(
289 file->f_path.dentry->d_inode)->crypt_stat;
290
291 if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)
292 || (crypt_stat->flags & ECRYPTFS_NEW_FILE)) {
293 rc = ecryptfs_read_lower_page_segment(
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700294 page, index, 0, PAGE_CACHE_SIZE, mapping->host);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800295 if (rc) {
296 printk(KERN_ERR "%s: Error attemping to read "
297 "lower page segment; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700298 __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800299 ClearPageUptodate(page);
300 goto out;
301 } else
302 SetPageUptodate(page);
303 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
304 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
305 rc = ecryptfs_copy_up_encrypted_with_header(
306 page, crypt_stat);
307 if (rc) {
308 printk(KERN_ERR "%s: Error attempting "
309 "to copy the encrypted content "
310 "from the lower file whilst "
311 "inserting the metadata from "
312 "the xattr into the header; rc "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700313 "= [%d]\n", __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800314 ClearPageUptodate(page);
315 goto out;
316 }
317 SetPageUptodate(page);
318 } else {
319 rc = ecryptfs_read_lower_page_segment(
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700320 page, index, 0, PAGE_CACHE_SIZE,
321 mapping->host);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800322 if (rc) {
323 printk(KERN_ERR "%s: Error reading "
324 "page; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700325 __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800326 ClearPageUptodate(page);
327 goto out;
328 }
329 SetPageUptodate(page);
330 }
331 } else {
332 rc = ecryptfs_decrypt_page(page);
333 if (rc) {
334 printk(KERN_ERR "%s: Error decrypting page "
335 "at index [%ld]; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700336 __func__, page->index, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800337 ClearPageUptodate(page);
338 goto out;
339 }
Michael Halcrow16a72c42007-10-16 01:28:14 -0700340 SetPageUptodate(page);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800341 }
Michael Halcrow16a72c42007-10-16 01:28:14 -0700342 }
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700343 prev_page_end_size = ((loff_t)index << PAGE_CACHE_SHIFT);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800344 /* If creating a page or more of holes, zero them out via truncate.
345 * Note, this will increase i_size. */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700346 if (index != 0) {
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800347 if (prev_page_end_size > i_size_read(page->mapping->host)) {
Michael Halcrow240e2df2007-06-27 14:09:44 -0700348 rc = ecryptfs_truncate(file->f_path.dentry,
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800349 prev_page_end_size);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700350 if (rc) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800351 printk(KERN_ERR "%s: Error on attempt to "
Michael Halcrow240e2df2007-06-27 14:09:44 -0700352 "truncate to (higher) offset [%lld];"
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700353 " rc = [%d]\n", __func__,
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800354 prev_page_end_size, rc);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700355 goto out;
356 }
Michael Halcrow53a27312007-05-23 13:58:15 -0700357 }
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800358 }
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800359 /* Writing to a new page, and creating a small hole from start
360 * of page? Zero it out. */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700361 if ((i_size_read(mapping->host) == prev_page_end_size)
362 && (pos != 0))
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800363 zero_user(page, 0, PAGE_CACHE_SIZE);
Michael Halcrow53a27312007-05-23 13:58:15 -0700364out:
365 return rc;
366}
367
Michael Halcrow237fead2006-10-04 02:16:22 -0700368/**
369 * ecryptfs_write_inode_size_to_header
370 *
371 * Writes the lower file size to the first 8 bytes of the header.
372 *
373 * Returns zero on success; non-zero on error.
374 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700375static int ecryptfs_write_inode_size_to_header(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -0700376{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700377 char *file_size_virt;
378 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700379
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700380 file_size_virt = kmalloc(sizeof(u64), GFP_KERNEL);
381 if (!file_size_virt) {
382 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700383 goto out;
384 }
Harvey Harrison0a688ad2008-07-23 21:30:07 -0700385 put_unaligned_be64(i_size_read(ecryptfs_inode), file_size_virt);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700386 rc = ecryptfs_write_lower(ecryptfs_inode, file_size_virt, 0,
387 sizeof(u64));
388 kfree(file_size_virt);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500389 if (rc < 0)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700390 printk(KERN_ERR "%s: Error writing file size to header; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700391 "rc = [%d]\n", __func__, rc);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500392 else
393 rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700394out:
395 return rc;
396}
397
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700398struct kmem_cache *ecryptfs_xattr_cache;
399
400static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800401{
402 ssize_t size;
403 void *xattr_virt;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700404 struct dentry *lower_dentry =
405 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_dentry;
406 struct inode *lower_inode = lower_dentry->d_inode;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800407 int rc;
408
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700409 if (!lower_inode->i_op->getxattr || !lower_inode->i_op->setxattr) {
410 printk(KERN_WARNING
411 "No support for setting xattr in lower filesystem\n");
412 rc = -ENOSYS;
413 goto out;
414 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800415 xattr_virt = kmem_cache_alloc(ecryptfs_xattr_cache, GFP_KERNEL);
416 if (!xattr_virt) {
417 printk(KERN_ERR "Out of memory whilst attempting to write "
418 "inode size to xattr\n");
419 rc = -ENOMEM;
420 goto out;
421 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700422 mutex_lock(&lower_inode->i_mutex);
423 size = lower_inode->i_op->getxattr(lower_dentry, ECRYPTFS_XATTR_NAME,
424 xattr_virt, PAGE_CACHE_SIZE);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800425 if (size < 0)
426 size = 8;
Harvey Harrison0a688ad2008-07-23 21:30:07 -0700427 put_unaligned_be64(i_size_read(ecryptfs_inode), xattr_virt);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700428 rc = lower_inode->i_op->setxattr(lower_dentry, ECRYPTFS_XATTR_NAME,
429 xattr_virt, size, 0);
430 mutex_unlock(&lower_inode->i_mutex);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800431 if (rc)
432 printk(KERN_ERR "Error whilst attempting to write inode size "
433 "to lower file xattr; rc = [%d]\n", rc);
434 kmem_cache_free(ecryptfs_xattr_cache, xattr_virt);
435out:
436 return rc;
437}
438
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700439int ecryptfs_write_inode_size_to_metadata(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800440{
441 struct ecryptfs_crypt_stat *crypt_stat;
442
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700443 crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Tyler Hicks13a791b2009-04-13 15:29:27 -0500444 BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED));
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800445 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700446 return ecryptfs_write_inode_size_to_xattr(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800447 else
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700448 return ecryptfs_write_inode_size_to_header(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800449}
450
Michael Halcrow237fead2006-10-04 02:16:22 -0700451/**
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700452 * ecryptfs_write_end
Michael Halcrow237fead2006-10-04 02:16:22 -0700453 * @file: The eCryptfs file object
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700454 * @mapping: The eCryptfs object
455 * @pos: The file position
456 * @len: The length of the data (unused)
457 * @copied: The amount of data copied
Michael Halcrow237fead2006-10-04 02:16:22 -0700458 * @page: The eCryptfs page
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700459 * @fsdata: The fsdata (unused)
Michael Halcrow237fead2006-10-04 02:16:22 -0700460 *
461 * This is where we encrypt the data and pass the encrypted data to
462 * the lower filesystem. In OpenPGP-compatible mode, we operate on
463 * entire underlying packets.
464 */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700465static int ecryptfs_write_end(struct file *file,
466 struct address_space *mapping,
467 loff_t pos, unsigned len, unsigned copied,
468 struct page *page, void *fsdata)
Michael Halcrow237fead2006-10-04 02:16:22 -0700469{
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700470 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
471 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
472 unsigned to = from + copied;
473 struct inode *ecryptfs_inode = mapping->host;
Michael Halcrowbf12be12007-10-16 01:28:11 -0700474 struct ecryptfs_crypt_stat *crypt_stat =
475 &ecryptfs_inode_to_private(file->f_path.dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700476 int rc;
477
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800478 if (crypt_stat->flags & ECRYPTFS_NEW_FILE) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700479 ecryptfs_printk(KERN_DEBUG, "ECRYPTFS_NEW_FILE flag set in "
480 "crypt_stat at memory location [%p]\n", crypt_stat);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800481 crypt_stat->flags &= ~(ECRYPTFS_NEW_FILE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700482 } else
483 ecryptfs_printk(KERN_DEBUG, "Not a new file\n");
484 ecryptfs_printk(KERN_DEBUG, "Calling fill_zeros_to_end_of_page"
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700485 "(page w/ index = [0x%.16x], to = [%d])\n", index, to);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500486 if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
487 rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, page, 0,
488 to);
489 if (!rc) {
490 rc = copied;
491 fsstack_copy_inode_size(ecryptfs_inode,
492 ecryptfs_inode_to_lower(ecryptfs_inode));
493 }
494 goto out;
495 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700496 /* Fills in zeros if 'to' goes beyond inode size */
Michael Halcrow237fead2006-10-04 02:16:22 -0700497 rc = fill_zeros_to_end_of_page(page, to);
498 if (rc) {
499 ecryptfs_printk(KERN_WARNING, "Error attempting to fill "
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700500 "zeros in page with index = [0x%.16x]\n", index);
Michael Halcrow237fead2006-10-04 02:16:22 -0700501 goto out;
502 }
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700503 rc = ecryptfs_encrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700504 if (rc) {
505 ecryptfs_printk(KERN_WARNING, "Error encrypting page (upper "
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700506 "index [0x%.16x])\n", index);
Michael Halcrow237fead2006-10-04 02:16:22 -0700507 goto out;
508 }
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700509 if (pos + copied > i_size_read(ecryptfs_inode)) {
510 i_size_write(ecryptfs_inode, pos + copied);
Michael Halcrow237fead2006-10-04 02:16:22 -0700511 ecryptfs_printk(KERN_DEBUG, "Expanded file size to "
Michael Halcrowbf12be12007-10-16 01:28:11 -0700512 "[0x%.16x]\n", i_size_read(ecryptfs_inode));
Michael Halcrow237fead2006-10-04 02:16:22 -0700513 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700514 rc = ecryptfs_write_inode_size_to_metadata(ecryptfs_inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800515 if (rc)
516 printk(KERN_ERR "Error writing inode size to metadata; "
517 "rc = [%d]\n", rc);
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700518 else
519 rc = copied;
Michael Halcrow237fead2006-10-04 02:16:22 -0700520out:
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700521 unlock_page(page);
522 page_cache_release(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700523 return rc;
524}
525
Michael Halcrow237fead2006-10-04 02:16:22 -0700526static sector_t ecryptfs_bmap(struct address_space *mapping, sector_t block)
527{
528 int rc = 0;
529 struct inode *inode;
530 struct inode *lower_inode;
531
532 inode = (struct inode *)mapping->host;
533 lower_inode = ecryptfs_inode_to_lower(inode);
534 if (lower_inode->i_mapping->a_ops->bmap)
535 rc = lower_inode->i_mapping->a_ops->bmap(lower_inode->i_mapping,
536 block);
537 return rc;
538}
539
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700540const struct address_space_operations ecryptfs_aops = {
Michael Halcrow237fead2006-10-04 02:16:22 -0700541 .writepage = ecryptfs_writepage,
542 .readpage = ecryptfs_readpage,
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700543 .write_begin = ecryptfs_write_begin,
544 .write_end = ecryptfs_write_end,
Michael Halcrow237fead2006-10-04 02:16:22 -0700545 .bmap = ecryptfs_bmap,
Michael Halcrow237fead2006-10-04 02:16:22 -0700546};