blob: 60bdcaddcbe57e2bb55ab04bcf061139cd367755 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Lee Jones09d02ef2021-03-30 17:44:46 +01002/*
Michael Halcrowda0102a2007-10-16 01:28:07 -07003 * eCryptfs: Linux filesystem encryption layer
4 *
5 * Copyright (C) 2007 International Business Machines Corp.
6 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
Michael Halcrowda0102a2007-10-16 01:28:07 -07007 */
8
9#include <linux/fs.h>
10#include <linux/pagemap.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010011#include <linux/sched/signal.h>
12
Michael Halcrowda0102a2007-10-16 01:28:07 -070013#include "ecryptfs_kernel.h"
14
15/**
16 * ecryptfs_write_lower
17 * @ecryptfs_inode: The eCryptfs inode
18 * @data: Data to write
19 * @offset: Byte offset in the lower file to which to write the data
20 * @size: Number of bytes from @data to write at @offset in the lower
21 * file
22 *
23 * Write data to the lower file.
24 *
Tyler Hicks96a7b9c2009-09-16 19:04:20 -050025 * Returns bytes written on success; less than zero on error
Michael Halcrowda0102a2007-10-16 01:28:07 -070026 */
27int ecryptfs_write_lower(struct inode *ecryptfs_inode, char *data,
28 loff_t offset, size_t size)
29{
Tyler Hicksf61500e2011-08-04 22:58:51 -050030 struct file *lower_file;
Tyler Hicks96a7b9c2009-09-16 19:04:20 -050031 ssize_t rc;
Michael Halcrowda0102a2007-10-16 01:28:07 -070032
Tyler Hicksf61500e2011-08-04 22:58:51 -050033 lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file;
34 if (!lower_file)
35 return -EIO;
Christoph Hellwige13ec932017-09-01 17:39:14 +020036 rc = kernel_write(lower_file, data, size, &offset);
Michael Halcrowda0102a2007-10-16 01:28:07 -070037 mark_inode_dirty_sync(ecryptfs_inode);
38 return rc;
39}
40
41/**
42 * ecryptfs_write_lower_page_segment
43 * @ecryptfs_inode: The eCryptfs inode
44 * @page_for_lower: The page containing the data to be written to the
45 * lower file
46 * @offset_in_page: The offset in the @page_for_lower from which to
47 * start writing the data
48 * @size: The amount of data from @page_for_lower to write to the
49 * lower file
50 *
51 * Determines the byte offset in the file for the given page and
52 * offset within the page, maps the page, and makes the call to write
53 * the contents of @page_for_lower to the lower inode.
54 *
55 * Returns zero on success; non-zero otherwise
56 */
57int ecryptfs_write_lower_page_segment(struct inode *ecryptfs_inode,
58 struct page *page_for_lower,
59 size_t offset_in_page, size_t size)
60{
61 char *virt;
62 loff_t offset;
63 int rc;
64
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030065 offset = ((((loff_t)page_for_lower->index) << PAGE_SHIFT)
Michael Halcrowd6a13c12007-10-16 01:28:12 -070066 + offset_in_page);
Michael Halcrowda0102a2007-10-16 01:28:07 -070067 virt = kmap(page_for_lower);
68 rc = ecryptfs_write_lower(ecryptfs_inode, virt, offset, size);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -050069 if (rc > 0)
70 rc = 0;
Michael Halcrowda0102a2007-10-16 01:28:07 -070071 kunmap(page_for_lower);
72 return rc;
73}
74
75/**
76 * ecryptfs_write
Al Viro48c1e442010-05-21 11:09:58 -040077 * @ecryptfs_inode: The eCryptfs file into which to write
Michael Halcrowda0102a2007-10-16 01:28:07 -070078 * @data: Virtual address where data to write is located
79 * @offset: Offset in the eCryptfs file at which to begin writing the
80 * data from @data
81 * @size: The number of bytes to write from @data
82 *
83 * Write an arbitrary amount of data to an arbitrary location in the
84 * eCryptfs inode page cache. This is done on a page-by-page, and then
85 * by an extent-by-extent, basis; individual extents are encrypted and
86 * written to the lower page cache (via VFS writes). This function
87 * takes care of all the address translation to locations in the lower
88 * filesystem; it also handles truncate events, writing out zeros
89 * where necessary.
90 *
91 * Returns zero on success; non-zero otherwise
92 */
Al Viro48c1e442010-05-21 11:09:58 -040093int ecryptfs_write(struct inode *ecryptfs_inode, char *data, loff_t offset,
Michael Halcrowda0102a2007-10-16 01:28:07 -070094 size_t size)
95{
96 struct page *ecryptfs_page;
Tyler Hicks13a791b2009-04-13 15:29:27 -050097 struct ecryptfs_crypt_stat *crypt_stat;
Michael Halcrowda0102a2007-10-16 01:28:07 -070098 char *ecryptfs_page_virt;
Tyler Hicks13a791b2009-04-13 15:29:27 -050099 loff_t ecryptfs_file_size = i_size_read(ecryptfs_inode);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700100 loff_t data_offset = 0;
101 loff_t pos;
102 int rc = 0;
103
Tyler Hicks13a791b2009-04-13 15:29:27 -0500104 crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800105 /*
106 * if we are writing beyond current size, then start pos
107 * at the current size - we'll fill in zeros from there.
108 */
Michael Halcrowda0102a2007-10-16 01:28:07 -0700109 if (offset > ecryptfs_file_size)
110 pos = ecryptfs_file_size;
111 else
112 pos = offset;
113 while (pos < (offset + size)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300114 pgoff_t ecryptfs_page_idx = (pos >> PAGE_SHIFT);
115 size_t start_offset_in_page = (pos & ~PAGE_MASK);
116 size_t num_bytes = (PAGE_SIZE - start_offset_in_page);
Li Wang684a3ff2012-01-19 09:44:36 +0800117 loff_t total_remaining_bytes = ((offset + size) - pos);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700118
Tyler Hicks5e6f0d72012-01-18 18:30:04 -0600119 if (fatal_signal_pending(current)) {
120 rc = -EINTR;
121 break;
122 }
123
Michael Halcrowda0102a2007-10-16 01:28:07 -0700124 if (num_bytes > total_remaining_bytes)
125 num_bytes = total_remaining_bytes;
126 if (pos < offset) {
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800127 /* remaining zeros to write, up to destination offset */
Li Wang684a3ff2012-01-19 09:44:36 +0800128 loff_t total_remaining_zeros = (offset - pos);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700129
130 if (num_bytes > total_remaining_zeros)
131 num_bytes = total_remaining_zeros;
132 }
Al Viro02bd9792010-05-21 11:02:14 -0400133 ecryptfs_page = ecryptfs_get_locked_page(ecryptfs_inode,
Michael Halcrow16a72c42007-10-16 01:28:14 -0700134 ecryptfs_page_idx);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700135 if (IS_ERR(ecryptfs_page)) {
136 rc = PTR_ERR(ecryptfs_page);
137 printk(KERN_ERR "%s: Error getting page at "
138 "index [%ld] from eCryptfs inode "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700139 "mapping; rc = [%d]\n", __func__,
Michael Halcrowda0102a2007-10-16 01:28:07 -0700140 ecryptfs_page_idx, rc);
141 goto out;
142 }
Cong Wang465c9342012-02-10 13:39:50 +0800143 ecryptfs_page_virt = kmap_atomic(ecryptfs_page);
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800144
145 /*
146 * pos: where we're now writing, offset: where the request was
147 * If current pos is before request, we are filling zeros
148 * If we are at or beyond request, we are writing the *data*
149 * If we're in a fresh page beyond eof, zero it in either case
150 */
151 if (pos < offset || !start_offset_in_page) {
152 /* We are extending past the previous end of the file.
153 * Fill in zero values to the end of the page */
154 memset(((char *)ecryptfs_page_virt
155 + start_offset_in_page), 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300156 PAGE_SIZE - start_offset_in_page);
Eric Sandeen7a3f5952007-12-17 16:20:10 -0800157 }
158
159 /* pos >= offset, we are now writing the data request */
Michael Halcrowda0102a2007-10-16 01:28:07 -0700160 if (pos >= offset) {
161 memcpy(((char *)ecryptfs_page_virt
162 + start_offset_in_page),
163 (data + data_offset), num_bytes);
164 data_offset += num_bytes;
Michael Halcrowda0102a2007-10-16 01:28:07 -0700165 }
Cong Wang465c9342012-02-10 13:39:50 +0800166 kunmap_atomic(ecryptfs_page_virt);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700167 flush_dcache_page(ecryptfs_page);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700168 SetPageUptodate(ecryptfs_page);
169 unlock_page(ecryptfs_page);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500170 if (crypt_stat->flags & ECRYPTFS_ENCRYPTED)
171 rc = ecryptfs_encrypt_page(ecryptfs_page);
172 else
173 rc = ecryptfs_write_lower_page_segment(ecryptfs_inode,
174 ecryptfs_page,
175 start_offset_in_page,
176 data_offset);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300177 put_page(ecryptfs_page);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700178 if (rc) {
179 printk(KERN_ERR "%s: Error encrypting "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700180 "page; rc = [%d]\n", __func__, rc);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700181 goto out;
182 }
Michael Halcrowda0102a2007-10-16 01:28:07 -0700183 pos += num_bytes;
184 }
Tyler Hicks5e6f0d72012-01-18 18:30:04 -0600185 if (pos > ecryptfs_file_size) {
186 i_size_write(ecryptfs_inode, pos);
Tyler Hicks13a791b2009-04-13 15:29:27 -0500187 if (crypt_stat->flags & ECRYPTFS_ENCRYPTED) {
Tyler Hicks5e6f0d72012-01-18 18:30:04 -0600188 int rc2;
189
190 rc2 = ecryptfs_write_inode_size_to_metadata(
Tyler Hicks13a791b2009-04-13 15:29:27 -0500191 ecryptfs_inode);
Tyler Hicks5e6f0d72012-01-18 18:30:04 -0600192 if (rc2) {
Tyler Hicks13a791b2009-04-13 15:29:27 -0500193 printk(KERN_ERR "Problem with "
194 "ecryptfs_write_inode_size_to_metadata; "
Tyler Hicks5e6f0d72012-01-18 18:30:04 -0600195 "rc = [%d]\n", rc2);
196 if (!rc)
197 rc = rc2;
Tyler Hicks13a791b2009-04-13 15:29:27 -0500198 goto out;
199 }
Michael Halcrowda0102a2007-10-16 01:28:07 -0700200 }
201 }
202out:
203 return rc;
204}
205
206/**
207 * ecryptfs_read_lower
208 * @data: The read data is stored here by this function
209 * @offset: Byte offset in the lower file from which to read the data
210 * @size: Number of bytes to read from @offset of the lower file and
211 * store into @data
212 * @ecryptfs_inode: The eCryptfs inode
213 *
214 * Read @size bytes of data at byte offset @offset from the lower
215 * inode into memory location @data.
216 *
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500217 * Returns bytes read on success; 0 on EOF; less than zero on error
Michael Halcrowda0102a2007-10-16 01:28:07 -0700218 */
219int ecryptfs_read_lower(char *data, loff_t offset, size_t size,
220 struct inode *ecryptfs_inode)
221{
Tyler Hicksf61500e2011-08-04 22:58:51 -0500222 struct file *lower_file;
Tyler Hicksf61500e2011-08-04 22:58:51 -0500223 lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file;
224 if (!lower_file)
225 return -EIO;
Christoph Hellwigbdd1d2d2017-09-01 17:39:13 +0200226 return kernel_read(lower_file, data, size, &offset);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700227}
228
229/**
230 * ecryptfs_read_lower_page_segment
231 * @page_for_ecryptfs: The page into which data for eCryptfs will be
232 * written
Lee Jones09d02ef2021-03-30 17:44:46 +0100233 * @page_index: Page index in @page_for_ecryptfs from which to start
234 * writing
Michael Halcrowda0102a2007-10-16 01:28:07 -0700235 * @offset_in_page: Offset in @page_for_ecryptfs from which to start
236 * writing
237 * @size: The number of bytes to write into @page_for_ecryptfs
238 * @ecryptfs_inode: The eCryptfs inode
239 *
240 * Determines the byte offset in the file for the given page and
241 * offset within the page, maps the page, and makes the call to read
242 * the contents of @page_for_ecryptfs from the lower inode.
243 *
244 * Returns zero on success; non-zero otherwise
245 */
246int ecryptfs_read_lower_page_segment(struct page *page_for_ecryptfs,
247 pgoff_t page_index,
248 size_t offset_in_page, size_t size,
249 struct inode *ecryptfs_inode)
250{
251 char *virt;
252 loff_t offset;
253 int rc;
254
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300255 offset = ((((loff_t)page_index) << PAGE_SHIFT) + offset_in_page);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700256 virt = kmap(page_for_ecryptfs);
257 rc = ecryptfs_read_lower(virt, offset, size, ecryptfs_inode);
Tyler Hicks96a7b9c2009-09-16 19:04:20 -0500258 if (rc > 0)
259 rc = 0;
Michael Halcrowda0102a2007-10-16 01:28:07 -0700260 kunmap(page_for_ecryptfs);
Michael Halcrow16a72c42007-10-16 01:28:14 -0700261 flush_dcache_page(page_for_ecryptfs);
Michael Halcrowda0102a2007-10-16 01:28:07 -0700262 return rc;
263}