blob: 019572c6b39ac30bd8ce1982bdec256abd61efa4 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Michael Halcrow237fead2006-10-04 02:16:22 -07002/**
3 * eCryptfs: Linux filesystem encryption layer
4 * This is where eCryptfs coordinates the symmetric encryption and
5 * decryption of the file data as it passes between the lower
6 * encrypted file and the upper decrypted file.
7 *
8 * Copyright (C) 1997-2003 Erez Zadok
9 * Copyright (C) 2001-2003 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -080010 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -070011 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
Michael Halcrow237fead2006-10-04 02:16:22 -070012 */
13
14#include <linux/pagemap.h>
15#include <linux/writeback.h>
16#include <linux/page-flags.h>
17#include <linux/mount.h>
18#include <linux/file.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070019#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020021#include <linux/xattr.h>
Harvey Harrison0a688ad2008-07-23 21:30:07 -070022#include <asm/unaligned.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070023#include "ecryptfs_kernel.h"
24
Michael Halcrow237fead2006-10-04 02:16:22 -070025/**
Michael Halcrow16a72c42007-10-16 01:28:14 -070026 * ecryptfs_get_locked_page
Michael Halcrow237fead2006-10-04 02:16:22 -070027 *
28 * Get one page from cache or lower f/s, return error otherwise.
29 *
Michael Halcrow16a72c42007-10-16 01:28:14 -070030 * Returns locked and up-to-date page (if ok), with increased
Michael Halcrow237fead2006-10-04 02:16:22 -070031 * refcnt.
32 */
Al Viro02bd9792010-05-21 11:02:14 -040033struct page *ecryptfs_get_locked_page(struct inode *inode, loff_t index)
Michael Halcrow237fead2006-10-04 02:16:22 -070034{
Al Viro02bd9792010-05-21 11:02:14 -040035 struct page *page = read_mapping_page(inode->i_mapping, index, NULL);
Michael Halcrow16a72c42007-10-16 01:28:14 -070036 if (!IS_ERR(page))
37 lock_page(page);
38 return page;
Michael Halcrow237fead2006-10-04 02:16:22 -070039}
40
Michael Halcrow237fead2006-10-04 02:16:22 -070041/**
Michael Halcrow237fead2006-10-04 02:16:22 -070042 * ecryptfs_writepage
43 * @page: Page that is locked before this call is made
44 *
45 * Returns zero on success; non-zero otherwise
Li Wang1589cb12012-01-25 15:40:31 +080046 *
47 * This is where we encrypt the data and pass the encrypted data to
48 * the lower filesystem. In OpenPGP-compatible mode, we operate on
49 * entire underlying packets.
Michael Halcrow237fead2006-10-04 02:16:22 -070050 */
51static int ecryptfs_writepage(struct page *page, struct writeback_control *wbc)
52{
Michael Halcrow237fead2006-10-04 02:16:22 -070053 int rc;
54
Michael Halcrow0216f7f2007-10-16 01:28:08 -070055 rc = ecryptfs_encrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -070056 if (rc) {
57 ecryptfs_printk(KERN_WARNING, "Error encrypting "
Joe Perches888d57b2010-11-10 15:46:16 -080058 "page (upper index [0x%.16lx])\n", page->index);
Michael Halcrow237fead2006-10-04 02:16:22 -070059 ClearPageUptodate(page);
60 goto out;
61 }
62 SetPageUptodate(page);
Michael Halcrow237fead2006-10-04 02:16:22 -070063out:
Thieu Le57db4e82011-03-08 16:26:03 -080064 unlock_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -070065 return rc;
66}
67
Tyler Hicksf4e60e62010-02-11 00:02:32 -060068static void strip_xattr_flag(char *page_virt,
69 struct ecryptfs_crypt_stat *crypt_stat)
70{
71 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
72 size_t written;
73
74 crypt_stat->flags &= ~ECRYPTFS_METADATA_IN_XATTR;
75 ecryptfs_write_crypt_stat_flags(page_virt, crypt_stat,
76 &written);
77 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
78 }
79}
80
Michael Halcrow237fead2006-10-04 02:16:22 -070081/**
Michael Halcrowe77a56d2007-02-12 00:53:47 -080082 * Header Extent:
83 * Octets 0-7: Unencrypted file size (big-endian)
84 * Octets 8-15: eCryptfs special marker
85 * Octets 16-19: Flags
86 * Octet 16: File format version number (between 0 and 255)
87 * Octets 17-18: Reserved
88 * Octet 19: Bit 1 (lsb): Reserved
89 * Bit 2: Encrypted?
90 * Bits 3-8: Reserved
91 * Octets 20-23: Header extent size (big-endian)
92 * Octets 24-25: Number of header extents at front of file
93 * (big-endian)
94 * Octet 26: Begin RFC 2440 authentication token packet set
95 */
Michael Halcrow237fead2006-10-04 02:16:22 -070096
97/**
Michael Halcrowbf12be12007-10-16 01:28:11 -070098 * ecryptfs_copy_up_encrypted_with_header
99 * @page: Sort of a ``virtual'' representation of the encrypted lower
100 * file. The actual lower file does not have the metadata in
101 * the header. This is locked.
102 * @crypt_stat: The eCryptfs inode's cryptographic context
103 *
104 * The ``view'' is the version of the file that userspace winds up
105 * seeing, with the header information inserted.
106 */
107static int
108ecryptfs_copy_up_encrypted_with_header(struct page *page,
109 struct ecryptfs_crypt_stat *crypt_stat)
110{
111 loff_t extent_num_in_page = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300112 loff_t num_extents_per_page = (PAGE_SIZE
Michael Halcrowbf12be12007-10-16 01:28:11 -0700113 / crypt_stat->extent_size);
114 int rc = 0;
115
116 while (extent_num_in_page < num_extents_per_page) {
Michael Halcrowd6a13c12007-10-16 01:28:12 -0700117 loff_t view_extent_num = ((((loff_t)page->index)
118 * num_extents_per_page)
Michael Halcrowbf12be12007-10-16 01:28:11 -0700119 + extent_num_in_page);
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800120 size_t num_header_extents_at_front =
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600121 (crypt_stat->metadata_size / crypt_stat->extent_size);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700122
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800123 if (view_extent_num < num_header_extents_at_front) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700124 /* This is a header extent */
125 char *page_virt;
126
Cong Wang465c9342012-02-10 13:39:50 +0800127 page_virt = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300128 memset(page_virt, 0, PAGE_SIZE);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700129 /* TODO: Support more than one header extent */
130 if (view_extent_num == 0) {
Tyler Hicks157f1072010-02-11 07:10:38 -0600131 size_t written;
132
Michael Halcrowbf12be12007-10-16 01:28:11 -0700133 rc = ecryptfs_read_xattr_region(
134 page_virt, page->mapping->host);
Tyler Hicksf4e60e62010-02-11 00:02:32 -0600135 strip_xattr_flag(page_virt + 16, crypt_stat);
Tyler Hicks157f1072010-02-11 07:10:38 -0600136 ecryptfs_write_header_metadata(page_virt + 20,
137 crypt_stat,
138 &written);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700139 }
Cong Wang465c9342012-02-10 13:39:50 +0800140 kunmap_atomic(page_virt);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700141 flush_dcache_page(page);
142 if (rc) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700143 printk(KERN_ERR "%s: Error reading xattr "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700144 "region; rc = [%d]\n", __func__, rc);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700145 goto out;
146 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700147 } else {
148 /* This is an encrypted data extent */
149 loff_t lower_offset =
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800150 ((view_extent_num * crypt_stat->extent_size)
Tyler Hicksfa3ef1c2010-02-11 05:09:14 -0600151 - crypt_stat->metadata_size);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700152
153 rc = ecryptfs_read_lower_page_segment(
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300154 page, (lower_offset >> PAGE_SHIFT),
155 (lower_offset & ~PAGE_MASK),
Michael Halcrowbf12be12007-10-16 01:28:11 -0700156 crypt_stat->extent_size, page->mapping->host);
157 if (rc) {
158 printk(KERN_ERR "%s: Error attempting to read "
159 "extent at offset [%lld] in the lower "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700160 "file; rc = [%d]\n", __func__,
Michael Halcrowbf12be12007-10-16 01:28:11 -0700161 lower_offset, rc);
162 goto out;
163 }
164 }
165 extent_num_in_page++;
166 }
167out:
168 return rc;
169}
170
171/**
Michael Halcrow237fead2006-10-04 02:16:22 -0700172 * ecryptfs_readpage
Michael Halcrowbf12be12007-10-16 01:28:11 -0700173 * @file: An eCryptfs file
174 * @page: Page from eCryptfs inode mapping into which to stick the read data
Michael Halcrow237fead2006-10-04 02:16:22 -0700175 *
176 * Read in a page, decrypting if necessary.
177 *
178 * Returns zero on success; non-zero on error.
179 */
180static int ecryptfs_readpage(struct file *file, struct page *page)
181{
Michael Halcrowbf12be12007-10-16 01:28:11 -0700182 struct ecryptfs_crypt_stat *crypt_stat =
Al Virobef5bc22010-05-21 10:56:12 -0400183 &ecryptfs_inode_to_private(page->mapping->host)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700184 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700185
Tyler Hicksfed88592011-02-23 00:54:20 -0600186 if (!crypt_stat || !(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700187 rc = ecryptfs_read_lower_page_segment(page, page->index, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300188 PAGE_SIZE,
Michael Halcrowbf12be12007-10-16 01:28:11 -0700189 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800190 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
191 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700192 rc = ecryptfs_copy_up_encrypted_with_header(page,
193 crypt_stat);
194 if (rc) {
195 printk(KERN_ERR "%s: Error attempting to copy "
196 "the encrypted content from the lower "
197 "file whilst inserting the metadata "
198 "from the xattr into the header; rc = "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700199 "[%d]\n", __func__, rc);
Michael Halcrowbf12be12007-10-16 01:28:11 -0700200 goto out;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800201 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700202
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800203 } else {
Michael Halcrowbf12be12007-10-16 01:28:11 -0700204 rc = ecryptfs_read_lower_page_segment(
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300205 page, page->index, 0, PAGE_SIZE,
Michael Halcrowbf12be12007-10-16 01:28:11 -0700206 page->mapping->host);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800207 if (rc) {
208 printk(KERN_ERR "Error reading page; rc = "
209 "[%d]\n", rc);
210 goto out;
211 }
212 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700213 } else {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700214 rc = ecryptfs_decrypt_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700215 if (rc) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700216 ecryptfs_printk(KERN_ERR, "Error decrypting page; "
217 "rc = [%d]\n", rc);
218 goto out;
219 }
220 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700221out:
Michael Halcrow16a72c42007-10-16 01:28:14 -0700222 if (rc)
223 ClearPageUptodate(page);
224 else
225 SetPageUptodate(page);
Joe Perches888d57b2010-11-10 15:46:16 -0800226 ecryptfs_printk(KERN_DEBUG, "Unlocking page with index = [0x%.16lx]\n",
Michael Halcrow237fead2006-10-04 02:16:22 -0700227 page->index);
228 unlock_page(page);
229 return rc;
230}
231
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800232/**
233 * Called with lower inode mutex held.
234 */
Michael Halcrow237fead2006-10-04 02:16:22 -0700235static int fill_zeros_to_end_of_page(struct page *page, unsigned int to)
236{
237 struct inode *inode = page->mapping->host;
238 int end_byte_in_page;
Michael Halcrow237fead2006-10-04 02:16:22 -0700239
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300240 if ((i_size_read(inode) / PAGE_SIZE) != page->index)
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800241 goto out;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300242 end_byte_in_page = i_size_read(inode) % PAGE_SIZE;
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800243 if (to > end_byte_in_page)
244 end_byte_in_page = to;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300245 zero_user_segment(page, end_byte_in_page, PAGE_SIZE);
Michael Halcrow237fead2006-10-04 02:16:22 -0700246out:
Michael Halcrow9d8b8ce2007-02-12 00:53:48 -0800247 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700248}
249
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800250/**
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700251 * ecryptfs_write_begin
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800252 * @file: The eCryptfs file
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700253 * @mapping: The eCryptfs object
254 * @pos: The file offset at which to start writing
255 * @len: Length of the write
256 * @flags: Various flags
257 * @pagep: Pointer to return the page
258 * @fsdata: Pointer to return fs data (unused)
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800259 *
260 * This function must zero any hole we create
261 *
262 * Returns zero on success; non-zero otherwise
263 */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700264static int ecryptfs_write_begin(struct file *file,
265 struct address_space *mapping,
266 loff_t pos, unsigned len, unsigned flags,
267 struct page **pagep, void **fsdata)
Michael Halcrow53a27312007-05-23 13:58:15 -0700268{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300269 pgoff_t index = pos >> PAGE_SHIFT;
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700270 struct page *page;
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800271 loff_t prev_page_end_size;
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800272 int rc = 0;
Michael Halcrow53a27312007-05-23 13:58:15 -0700273
Nick Piggin54566b22009-01-04 12:00:53 -0800274 page = grab_cache_page_write_begin(mapping, index, flags);
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700275 if (!page)
276 return -ENOMEM;
277 *pagep = page;
278
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300279 prev_page_end_size = ((loff_t)index << PAGE_SHIFT);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700280 if (!PageUptodate(page)) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800281 struct ecryptfs_crypt_stat *crypt_stat =
Al Virobef5bc22010-05-21 10:56:12 -0400282 &ecryptfs_inode_to_private(mapping->host)->crypt_stat;
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800283
Tyler Hicksfed88592011-02-23 00:54:20 -0600284 if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800285 rc = ecryptfs_read_lower_page_segment(
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300286 page, index, 0, PAGE_SIZE, mapping->host);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800287 if (rc) {
Masanari Iida971bd8f2015-05-20 23:54:02 +0900288 printk(KERN_ERR "%s: Error attempting to read "
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800289 "lower page segment; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700290 __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800291 ClearPageUptodate(page);
292 goto out;
293 } else
294 SetPageUptodate(page);
295 } else if (crypt_stat->flags & ECRYPTFS_VIEW_AS_ENCRYPTED) {
296 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) {
297 rc = ecryptfs_copy_up_encrypted_with_header(
298 page, crypt_stat);
299 if (rc) {
300 printk(KERN_ERR "%s: Error attempting "
301 "to copy the encrypted content "
302 "from the lower file whilst "
303 "inserting the metadata from "
304 "the xattr into the header; rc "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700305 "= [%d]\n", __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800306 ClearPageUptodate(page);
307 goto out;
308 }
309 SetPageUptodate(page);
310 } else {
311 rc = ecryptfs_read_lower_page_segment(
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300312 page, index, 0, PAGE_SIZE,
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700313 mapping->host);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800314 if (rc) {
315 printk(KERN_ERR "%s: Error reading "
316 "page; rc = [%d]\n",
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700317 __func__, rc);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800318 ClearPageUptodate(page);
319 goto out;
320 }
321 SetPageUptodate(page);
322 }
323 } else {
Frank Swiderski24562482010-11-15 10:43:22 -0800324 if (prev_page_end_size
325 >= i_size_read(page->mapping->host)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300326 zero_user(page, 0, PAGE_SIZE);
Li Wange4bc6522012-10-30 19:52:40 +0800327 SetPageUptodate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300328 } else if (len < PAGE_SIZE) {
Frank Swiderski24562482010-11-15 10:43:22 -0800329 rc = ecryptfs_decrypt_page(page);
330 if (rc) {
331 printk(KERN_ERR "%s: Error decrypting "
332 "page at index [%ld]; "
333 "rc = [%d]\n",
334 __func__, page->index, rc);
335 ClearPageUptodate(page);
336 goto out;
337 }
Li Wange4bc6522012-10-30 19:52:40 +0800338 SetPageUptodate(page);
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800339 }
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800340 }
Michael Halcrow16a72c42007-10-16 01:28:14 -0700341 }
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800342 /* If creating a page or more of holes, zero them out via truncate.
343 * Note, this will increase i_size. */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700344 if (index != 0) {
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800345 if (prev_page_end_size > i_size_read(page->mapping->host)) {
Michael Halcrow240e2df2007-06-27 14:09:44 -0700346 rc = ecryptfs_truncate(file->f_path.dentry,
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800347 prev_page_end_size);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700348 if (rc) {
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800349 printk(KERN_ERR "%s: Error on attempt to "
Michael Halcrow240e2df2007-06-27 14:09:44 -0700350 "truncate to (higher) offset [%lld];"
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700351 " rc = [%d]\n", __func__,
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800352 prev_page_end_size, rc);
Michael Halcrow240e2df2007-06-27 14:09:44 -0700353 goto out;
354 }
Michael Halcrow53a27312007-05-23 13:58:15 -0700355 }
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800356 }
Michael Halcrowe4465fd2008-03-04 14:29:24 -0800357 /* Writing to a new page, and creating a small hole from start
358 * of page? Zero it out. */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700359 if ((i_size_read(mapping->host) == prev_page_end_size)
360 && (pos != 0))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300361 zero_user(page, 0, PAGE_SIZE);
Michael Halcrow53a27312007-05-23 13:58:15 -0700362out:
Tyler Hicks50f198a2011-03-09 11:49:13 -0600363 if (unlikely(rc)) {
364 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300365 put_page(page);
Tyler Hicks50f198a2011-03-09 11:49:13 -0600366 *pagep = NULL;
367 }
Michael Halcrow53a27312007-05-23 13:58:15 -0700368 return rc;
369}
370
Michael Halcrow237fead2006-10-04 02:16:22 -0700371/**
372 * ecryptfs_write_inode_size_to_header
373 *
374 * Writes the lower file size to the first 8 bytes of the header.
375 *
376 * Returns zero on success; non-zero on error.
377 */
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700378static int ecryptfs_write_inode_size_to_header(struct inode *ecryptfs_inode)
Michael Halcrow237fead2006-10-04 02:16:22 -0700379{
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700380 char *file_size_virt;
381 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700382
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700383 file_size_virt = kmalloc(sizeof(u64), GFP_KERNEL);
384 if (!file_size_virt) {
385 rc = -ENOMEM;
Michael Halcrow237fead2006-10-04 02:16:22 -0700386 goto out;
387 }
Harvey Harrison0a688ad2008-07-23 21:30:07 -0700388 put_unaligned_be64(i_size_read(ecryptfs_inode), file_size_virt);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700389 rc = ecryptfs_write_lower(ecryptfs_inode, file_size_virt, 0,
390 sizeof(u64));
391 kfree(file_size_virt);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500392 if (rc < 0)
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700393 printk(KERN_ERR "%s: Error writing file size to header; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700394 "rc = [%d]\n", __func__, rc);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500395 else
396 rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700397out:
398 return rc;
399}
400
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700401struct kmem_cache *ecryptfs_xattr_cache;
402
403static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800404{
405 ssize_t size;
406 void *xattr_virt;
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700407 struct dentry *lower_dentry =
Al Virob5830432014-10-31 01:22:04 -0400408 ecryptfs_inode_to_private(ecryptfs_inode)->lower_file->f_path.dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000409 struct inode *lower_inode = d_inode(lower_dentry);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800410 int rc;
411
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200412 if (!(lower_inode->i_opflags & IOP_XATTR)) {
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700413 printk(KERN_WARNING
414 "No support for setting xattr in lower filesystem\n");
415 rc = -ENOSYS;
416 goto out;
417 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800418 xattr_virt = kmem_cache_alloc(ecryptfs_xattr_cache, GFP_KERNEL);
419 if (!xattr_virt) {
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800420 rc = -ENOMEM;
421 goto out;
422 }
Al Viro59551022016-01-22 15:40:57 -0500423 inode_lock(lower_inode);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200424 size = __vfs_getxattr(lower_dentry, lower_inode, ECRYPTFS_XATTR_NAME,
425 xattr_virt, PAGE_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);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200429 rc = __vfs_setxattr(lower_dentry, lower_inode, ECRYPTFS_XATTR_NAME,
430 xattr_virt, size, 0);
Al Viro59551022016-01-22 15:40:57 -0500431 inode_unlock(lower_inode);
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 */
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700462static int ecryptfs_write_end(struct file *file,
463 struct address_space *mapping,
464 loff_t pos, unsigned len, unsigned copied,
465 struct page *page, void *fsdata)
Michael Halcrow237fead2006-10-04 02:16:22 -0700466{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300467 pgoff_t index = pos >> PAGE_SHIFT;
468 unsigned from = pos & (PAGE_SIZE - 1);
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700469 unsigned to = from + copied;
470 struct inode *ecryptfs_inode = mapping->host;
Michael Halcrowbf12be12007-10-16 01:28:11 -0700471 struct ecryptfs_crypt_stat *crypt_stat =
Al Virobef5bc22010-05-21 10:56:12 -0400472 &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700473 int rc;
474
Michael Halcrow237fead2006-10-04 02:16:22 -0700475 ecryptfs_printk(KERN_DEBUG, "Calling fill_zeros_to_end_of_page"
Joe Perches888d57b2010-11-10 15:46:16 -0800476 "(page w/ index = [0x%.16lx], to = [%d])\n", index, to);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500477 if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) {
478 rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, page, 0,
479 to);
480 if (!rc) {
481 rc = copied;
482 fsstack_copy_inode_size(ecryptfs_inode,
483 ecryptfs_inode_to_lower(ecryptfs_inode));
484 }
485 goto out;
486 }
Li Wange4bc6522012-10-30 19:52:40 +0800487 if (!PageUptodate(page)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300488 if (copied < PAGE_SIZE) {
Li Wange4bc6522012-10-30 19:52:40 +0800489 rc = 0;
490 goto out;
491 }
492 SetPageUptodate(page);
493 }
Michael Halcrowbf12be12007-10-16 01:28:11 -0700494 /* Fills in zeros if 'to' goes beyond inode size */
Michael Halcrow237fead2006-10-04 02:16:22 -0700495 rc = fill_zeros_to_end_of_page(page, to);
496 if (rc) {
497 ecryptfs_printk(KERN_WARNING, "Error attempting to fill "
Joe Perches888d57b2010-11-10 15:46:16 -0800498 "zeros in page with index = [0x%.16lx]\n", index);
Michael Halcrow237fead2006-10-04 02:16:22 -0700499 goto out;
500 }
Tyler Hicks821f7492012-07-03 16:50:57 -0700501 rc = ecryptfs_encrypt_page(page);
502 if (rc) {
503 ecryptfs_printk(KERN_WARNING, "Error encrypting page (upper "
504 "index [0x%.16lx])\n", index);
505 goto out;
506 }
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700507 if (pos + copied > i_size_read(ecryptfs_inode)) {
508 i_size_write(ecryptfs_inode, pos + copied);
Michael Halcrow237fead2006-10-04 02:16:22 -0700509 ecryptfs_printk(KERN_DEBUG, "Expanded file size to "
Joe Perches888d57b2010-11-10 15:46:16 -0800510 "[0x%.16llx]\n",
511 (unsigned long long)i_size_read(ecryptfs_inode));
Michael Halcrow237fead2006-10-04 02:16:22 -0700512 }
Tyler Hicks821f7492012-07-03 16:50:57 -0700513 rc = ecryptfs_write_inode_size_to_metadata(ecryptfs_inode);
514 if (rc)
515 printk(KERN_ERR "Error writing inode size to metadata; "
516 "rc = [%d]\n", rc);
517 else
518 rc = copied;
Michael Halcrow237fead2006-10-04 02:16:22 -0700519out:
Tyler Hicks821f7492012-07-03 16:50:57 -0700520 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300521 put_page(page);
Michael Halcrow237fead2006-10-04 02:16:22 -0700522 return rc;
523}
524
Michael Halcrow237fead2006-10-04 02:16:22 -0700525static sector_t ecryptfs_bmap(struct address_space *mapping, sector_t block)
526{
Carlos Maiolino569d2052020-01-09 14:30:43 +0100527 struct inode *lower_inode = ecryptfs_inode_to_lower(mapping->host);
528 int ret = bmap(lower_inode, &block);
Michael Halcrow237fead2006-10-04 02:16:22 -0700529
Carlos Maiolino569d2052020-01-09 14:30:43 +0100530 if (ret)
531 return 0;
532 return block;
Michael Halcrow237fead2006-10-04 02:16:22 -0700533}
534
Alexey Dobriyan7f094102009-09-21 17:01:10 -0700535const struct address_space_operations ecryptfs_aops = {
Michael Halcrow237fead2006-10-04 02:16:22 -0700536 .writepage = ecryptfs_writepage,
537 .readpage = ecryptfs_readpage,
Badari Pulavarty807b7eb2008-10-15 22:02:50 -0700538 .write_begin = ecryptfs_write_begin,
539 .write_end = ecryptfs_write_end,
Michael Halcrow237fead2006-10-04 02:16:22 -0700540 .bmap = ecryptfs_bmap,
Michael Halcrow237fead2006-10-04 02:16:22 -0700541};