Blame view

fs/ecryptfs/read_write.c 11 KB
da0102a10   Michael Halcrow   eCryptfs: read_wr...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  /**
   * eCryptfs: Linux filesystem encryption layer
   *
   * Copyright (C) 2007 International Business Machines Corp.
   *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License as
   * published by the Free Software Foundation; either version 2 of the
   * License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful, but
   * WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
   * 02111-1307, USA.
   */
  
  #include <linux/fs.h>
  #include <linux/pagemap.h>
  #include "ecryptfs_kernel.h"
  
  /**
   * ecryptfs_write_lower
   * @ecryptfs_inode: The eCryptfs inode
   * @data: Data to write
   * @offset: Byte offset in the lower file to which to write the data
   * @size: Number of bytes from @data to write at @offset in the lower
   *        file
   *
   * Write data to the lower file.
   *
96a7b9c2f   Tyler Hicks   eCryptfs: Propaga...
37
   * Returns bytes written on success; less than zero on error
da0102a10   Michael Halcrow   eCryptfs: read_wr...
38
39
40
41
   */
  int ecryptfs_write_lower(struct inode *ecryptfs_inode, char *data,
  			 loff_t offset, size_t size)
  {
f61500e00   Tyler Hicks   eCryptfs: Return ...
42
  	struct file *lower_file;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
43
  	mm_segment_t fs_save;
96a7b9c2f   Tyler Hicks   eCryptfs: Propaga...
44
  	ssize_t rc;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
45

f61500e00   Tyler Hicks   eCryptfs: Return ...
46
47
48
  	lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file;
  	if (!lower_file)
  		return -EIO;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
49
50
  	fs_save = get_fs();
  	set_fs(get_ds());
f61500e00   Tyler Hicks   eCryptfs: Return ...
51
  	rc = vfs_write(lower_file, data, size, &offset);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
52
  	set_fs(fs_save);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  	mark_inode_dirty_sync(ecryptfs_inode);
  	return rc;
  }
  
  /**
   * ecryptfs_write_lower_page_segment
   * @ecryptfs_inode: The eCryptfs inode
   * @page_for_lower: The page containing the data to be written to the
   *                  lower file
   * @offset_in_page: The offset in the @page_for_lower from which to
   *                  start writing the data
   * @size: The amount of data from @page_for_lower to write to the
   *        lower file
   *
   * Determines the byte offset in the file for the given page and
   * offset within the page, maps the page, and makes the call to write
   * the contents of @page_for_lower to the lower inode.
   *
   * Returns zero on success; non-zero otherwise
   */
  int ecryptfs_write_lower_page_segment(struct inode *ecryptfs_inode,
  				      struct page *page_for_lower,
  				      size_t offset_in_page, size_t size)
  {
  	char *virt;
  	loff_t offset;
  	int rc;
8a146a2b0   Michael Halcrow   eCryptfs: cast pa...
80
  	offset = ((((loff_t)page_for_lower->index) << PAGE_CACHE_SHIFT)
d6a13c171   Michael Halcrow   eCryptfs: fix dat...
81
  		  + offset_in_page);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
82
83
  	virt = kmap(page_for_lower);
  	rc = ecryptfs_write_lower(ecryptfs_inode, virt, offset, size);
96a7b9c2f   Tyler Hicks   eCryptfs: Propaga...
84
85
  	if (rc > 0)
  		rc = 0;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
86
87
88
89
90
91
  	kunmap(page_for_lower);
  	return rc;
  }
  
  /**
   * ecryptfs_write
48c1e44ac   Al Viro   switch ecryptfs_w...
92
   * @ecryptfs_inode: The eCryptfs file into which to write
da0102a10   Michael Halcrow   eCryptfs: read_wr...
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
   * @data: Virtual address where data to write is located
   * @offset: Offset in the eCryptfs file at which to begin writing the
   *          data from @data
   * @size: The number of bytes to write from @data
   *
   * Write an arbitrary amount of data to an arbitrary location in the
   * eCryptfs inode page cache. This is done on a page-by-page, and then
   * by an extent-by-extent, basis; individual extents are encrypted and
   * written to the lower page cache (via VFS writes). This function
   * takes care of all the address translation to locations in the lower
   * filesystem; it also handles truncate events, writing out zeros
   * where necessary.
   *
   * Returns zero on success; non-zero otherwise
   */
48c1e44ac   Al Viro   switch ecryptfs_w...
108
  int ecryptfs_write(struct inode *ecryptfs_inode, char *data, loff_t offset,
da0102a10   Michael Halcrow   eCryptfs: read_wr...
109
110
111
  		   size_t size)
  {
  	struct page *ecryptfs_page;
13a791b4e   Tyler Hicks   eCryptfs: Fix dat...
112
  	struct ecryptfs_crypt_stat *crypt_stat;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
113
  	char *ecryptfs_page_virt;
13a791b4e   Tyler Hicks   eCryptfs: Fix dat...
114
  	loff_t ecryptfs_file_size = i_size_read(ecryptfs_inode);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
115
116
117
  	loff_t data_offset = 0;
  	loff_t pos;
  	int rc = 0;
13a791b4e   Tyler Hicks   eCryptfs: Fix dat...
118
  	crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat;
7a3f595cc   Eric Sandeen   ecryptfs: fix fsx...
119
120
121
122
  	/*
  	 * if we are writing beyond current size, then start pos
  	 * at the current size - we'll fill in zeros from there.
  	 */
da0102a10   Michael Halcrow   eCryptfs: read_wr...
123
124
125
126
127
128
129
130
131
132
133
134
135
  	if (offset > ecryptfs_file_size)
  		pos = ecryptfs_file_size;
  	else
  		pos = offset;
  	while (pos < (offset + size)) {
  		pgoff_t ecryptfs_page_idx = (pos >> PAGE_CACHE_SHIFT);
  		size_t start_offset_in_page = (pos & ~PAGE_CACHE_MASK);
  		size_t num_bytes = (PAGE_CACHE_SIZE - start_offset_in_page);
  		size_t total_remaining_bytes = ((offset + size) - pos);
  
  		if (num_bytes > total_remaining_bytes)
  			num_bytes = total_remaining_bytes;
  		if (pos < offset) {
7a3f595cc   Eric Sandeen   ecryptfs: fix fsx...
136
  			/* remaining zeros to write, up to destination offset */
da0102a10   Michael Halcrow   eCryptfs: read_wr...
137
138
139
140
141
  			size_t total_remaining_zeros = (offset - pos);
  
  			if (num_bytes > total_remaining_zeros)
  				num_bytes = total_remaining_zeros;
  		}
02bd97997   Al Viro   switch ecryptfs_g...
142
  		ecryptfs_page = ecryptfs_get_locked_page(ecryptfs_inode,
16a72c455   Michael Halcrow   ecryptfs: clean u...
143
  							 ecryptfs_page_idx);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
144
145
146
147
  		if (IS_ERR(ecryptfs_page)) {
  			rc = PTR_ERR(ecryptfs_page);
  			printk(KERN_ERR "%s: Error getting page at "
  			       "index [%ld] from eCryptfs inode "
18d1dbf1d   Harvey Harrison   ecryptfs: replace...
148
149
  			       "mapping; rc = [%d]
  ", __func__,
da0102a10   Michael Halcrow   eCryptfs: read_wr...
150
151
152
  			       ecryptfs_page_idx, rc);
  			goto out;
  		}
da0102a10   Michael Halcrow   eCryptfs: read_wr...
153
  		ecryptfs_page_virt = kmap_atomic(ecryptfs_page, KM_USER0);
7a3f595cc   Eric Sandeen   ecryptfs: fix fsx...
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  
  		/*
  		 * pos: where we're now writing, offset: where the request was
  		 * If current pos is before request, we are filling zeros
  		 * If we are at or beyond request, we are writing the *data*
  		 * If we're in a fresh page beyond eof, zero it in either case
  		 */
  		if (pos < offset || !start_offset_in_page) {
  			/* We are extending past the previous end of the file.
  			 * Fill in zero values to the end of the page */
  			memset(((char *)ecryptfs_page_virt
  				+ start_offset_in_page), 0,
  				PAGE_CACHE_SIZE - start_offset_in_page);
  		}
  
  		/* pos >= offset, we are now writing the data request */
da0102a10   Michael Halcrow   eCryptfs: read_wr...
170
171
172
173
174
  		if (pos >= offset) {
  			memcpy(((char *)ecryptfs_page_virt
  				+ start_offset_in_page),
  			       (data + data_offset), num_bytes);
  			data_offset += num_bytes;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
175
176
177
  		}
  		kunmap_atomic(ecryptfs_page_virt, KM_USER0);
  		flush_dcache_page(ecryptfs_page);
16a72c455   Michael Halcrow   ecryptfs: clean u...
178
179
  		SetPageUptodate(ecryptfs_page);
  		unlock_page(ecryptfs_page);
13a791b4e   Tyler Hicks   eCryptfs: Fix dat...
180
181
182
183
184
185
186
  		if (crypt_stat->flags & ECRYPTFS_ENCRYPTED)
  			rc = ecryptfs_encrypt_page(ecryptfs_page);
  		else
  			rc = ecryptfs_write_lower_page_segment(ecryptfs_inode,
  						ecryptfs_page,
  						start_offset_in_page,
  						data_offset);
16a72c455   Michael Halcrow   ecryptfs: clean u...
187
  		page_cache_release(ecryptfs_page);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
188
189
  		if (rc) {
  			printk(KERN_ERR "%s: Error encrypting "
18d1dbf1d   Harvey Harrison   ecryptfs: replace...
190
191
  			       "page; rc = [%d]
  ", __func__, rc);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
192
193
  			goto out;
  		}
da0102a10   Michael Halcrow   eCryptfs: read_wr...
194
195
196
  		pos += num_bytes;
  	}
  	if ((offset + size) > ecryptfs_file_size) {
13a791b4e   Tyler Hicks   eCryptfs: Fix dat...
197
198
199
200
201
202
203
204
205
206
207
  		i_size_write(ecryptfs_inode, (offset + size));
  		if (crypt_stat->flags & ECRYPTFS_ENCRYPTED) {
  			rc = ecryptfs_write_inode_size_to_metadata(
  								ecryptfs_inode);
  			if (rc) {
  				printk(KERN_ERR	"Problem with "
  				       "ecryptfs_write_inode_size_to_metadata; "
  				       "rc = [%d]
  ", rc);
  				goto out;
  			}
da0102a10   Michael Halcrow   eCryptfs: read_wr...
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
  		}
  	}
  out:
  	return rc;
  }
  
  /**
   * ecryptfs_read_lower
   * @data: The read data is stored here by this function
   * @offset: Byte offset in the lower file from which to read the data
   * @size: Number of bytes to read from @offset of the lower file and
   *        store into @data
   * @ecryptfs_inode: The eCryptfs inode
   *
   * Read @size bytes of data at byte offset @offset from the lower
   * inode into memory location @data.
   *
96a7b9c2f   Tyler Hicks   eCryptfs: Propaga...
225
   * Returns bytes read on success; 0 on EOF; less than zero on error
da0102a10   Michael Halcrow   eCryptfs: read_wr...
226
227
228
229
   */
  int ecryptfs_read_lower(char *data, loff_t offset, size_t size,
  			struct inode *ecryptfs_inode)
  {
f61500e00   Tyler Hicks   eCryptfs: Return ...
230
  	struct file *lower_file;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
231
  	mm_segment_t fs_save;
96a7b9c2f   Tyler Hicks   eCryptfs: Propaga...
232
  	ssize_t rc;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
233

f61500e00   Tyler Hicks   eCryptfs: Return ...
234
235
236
  	lower_file = ecryptfs_inode_to_private(ecryptfs_inode)->lower_file;
  	if (!lower_file)
  		return -EIO;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
237
238
  	fs_save = get_fs();
  	set_fs(get_ds());
f61500e00   Tyler Hicks   eCryptfs: Return ...
239
  	rc = vfs_read(lower_file, data, size, &offset);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
240
  	set_fs(fs_save);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
  	return rc;
  }
  
  /**
   * ecryptfs_read_lower_page_segment
   * @page_for_ecryptfs: The page into which data for eCryptfs will be
   *                     written
   * @offset_in_page: Offset in @page_for_ecryptfs from which to start
   *                  writing
   * @size: The number of bytes to write into @page_for_ecryptfs
   * @ecryptfs_inode: The eCryptfs inode
   *
   * Determines the byte offset in the file for the given page and
   * offset within the page, maps the page, and makes the call to read
   * the contents of @page_for_ecryptfs from the lower inode.
   *
   * Returns zero on success; non-zero otherwise
   */
  int ecryptfs_read_lower_page_segment(struct page *page_for_ecryptfs,
  				     pgoff_t page_index,
  				     size_t offset_in_page, size_t size,
  				     struct inode *ecryptfs_inode)
  {
  	char *virt;
  	loff_t offset;
  	int rc;
d6a13c171   Michael Halcrow   eCryptfs: fix dat...
267
  	offset = ((((loff_t)page_index) << PAGE_CACHE_SHIFT) + offset_in_page);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
268
269
  	virt = kmap(page_for_ecryptfs);
  	rc = ecryptfs_read_lower(virt, offset, size, ecryptfs_inode);
96a7b9c2f   Tyler Hicks   eCryptfs: Propaga...
270
271
  	if (rc > 0)
  		rc = 0;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
272
  	kunmap(page_for_ecryptfs);
16a72c455   Michael Halcrow   ecryptfs: clean u...
273
  	flush_dcache_page(page_for_ecryptfs);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
274
275
  	return rc;
  }
7896b6318   Adrian Bunk   fs/ecryptfs/: pos...
276
  #if 0
da0102a10   Michael Halcrow   eCryptfs: read_wr...
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  /**
   * ecryptfs_read
   * @data: The virtual address into which to write the data read (and
   *        possibly decrypted) from the lower file
   * @offset: The offset in the decrypted view of the file from which to
   *          read into @data
   * @size: The number of bytes to read into @data
   * @ecryptfs_file: The eCryptfs file from which to read
   *
   * Read an arbitrary amount of data from an arbitrary location in the
   * eCryptfs page cache. This is done on an extent-by-extent basis;
   * individual extents are decrypted and read from the lower page
   * cache (via VFS reads). This function takes care of all the
   * address translation to locations in the lower filesystem.
   *
   * Returns zero on success; non-zero otherwise
   */
  int ecryptfs_read(char *data, loff_t offset, size_t size,
  		  struct file *ecryptfs_file)
  {
02bd97997   Al Viro   switch ecryptfs_g...
297
  	struct inode *ecryptfs_inode = ecryptfs_file->f_dentry->d_inode;
da0102a10   Michael Halcrow   eCryptfs: read_wr...
298
299
  	struct page *ecryptfs_page;
  	char *ecryptfs_page_virt;
02bd97997   Al Viro   switch ecryptfs_g...
300
  	loff_t ecryptfs_file_size = i_size_read(ecryptfs_inode);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
301
302
303
304
305
306
307
308
309
310
  	loff_t data_offset = 0;
  	loff_t pos;
  	int rc = 0;
  
  	if ((offset + size) > ecryptfs_file_size) {
  		rc = -EINVAL;
  		printk(KERN_ERR "%s: Attempt to read data past the end of the "
  			"file; offset = [%lld]; size = [%td]; "
  		       "ecryptfs_file_size = [%lld]
  ",
18d1dbf1d   Harvey Harrison   ecryptfs: replace...
311
  		       __func__, offset, size, ecryptfs_file_size);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
312
313
314
315
316
317
318
319
320
321
322
  		goto out;
  	}
  	pos = offset;
  	while (pos < (offset + size)) {
  		pgoff_t ecryptfs_page_idx = (pos >> PAGE_CACHE_SHIFT);
  		size_t start_offset_in_page = (pos & ~PAGE_CACHE_MASK);
  		size_t num_bytes = (PAGE_CACHE_SIZE - start_offset_in_page);
  		size_t total_remaining_bytes = ((offset + size) - pos);
  
  		if (num_bytes > total_remaining_bytes)
  			num_bytes = total_remaining_bytes;
02bd97997   Al Viro   switch ecryptfs_g...
323
  		ecryptfs_page = ecryptfs_get_locked_page(ecryptfs_inode,
16a72c455   Michael Halcrow   ecryptfs: clean u...
324
  							 ecryptfs_page_idx);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
325
326
327
328
  		if (IS_ERR(ecryptfs_page)) {
  			rc = PTR_ERR(ecryptfs_page);
  			printk(KERN_ERR "%s: Error getting page at "
  			       "index [%ld] from eCryptfs inode "
18d1dbf1d   Harvey Harrison   ecryptfs: replace...
329
330
  			       "mapping; rc = [%d]
  ", __func__,
da0102a10   Michael Halcrow   eCryptfs: read_wr...
331
332
333
  			       ecryptfs_page_idx, rc);
  			goto out;
  		}
da0102a10   Michael Halcrow   eCryptfs: read_wr...
334
335
336
337
338
  		ecryptfs_page_virt = kmap_atomic(ecryptfs_page, KM_USER0);
  		memcpy((data + data_offset),
  		       ((char *)ecryptfs_page_virt + start_offset_in_page),
  		       num_bytes);
  		kunmap_atomic(ecryptfs_page_virt, KM_USER0);
16a72c455   Michael Halcrow   ecryptfs: clean u...
339
340
341
  		flush_dcache_page(ecryptfs_page);
  		SetPageUptodate(ecryptfs_page);
  		unlock_page(ecryptfs_page);
da0102a10   Michael Halcrow   eCryptfs: read_wr...
342
343
344
345
346
347
348
  		page_cache_release(ecryptfs_page);
  		pos += num_bytes;
  		data_offset += num_bytes;
  	}
  out:
  	return rc;
  }
7896b6318   Adrian Bunk   fs/ecryptfs/: pos...
349
  #endif  /*  0  */