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.
7 * Copyright (C) 1997-2003 Erez Zadok
8 * Copyright (C) 2001-2003 Stony Brook University
9 * Copyright (C) 2004-2006 International Business Machines Corp.
10 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
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.
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.
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
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"
37 struct kmem_cache
*ecryptfs_lower_page_cache
;
42 * Get one page from cache or lower f/s, return error otherwise.
44 * Returns unlocked and up-to-date page (if ok), with increased
47 static struct page
*ecryptfs_get1page(struct file
*file
, int index
)
50 struct dentry
*dentry
;
52 struct address_space
*mapping
;
54 dentry
= file
->f_dentry
;
55 inode
= dentry
->d_inode
;
56 mapping
= inode
->i_mapping
;
57 page
= read_cache_page(mapping
, index
,
58 (filler_t
*)mapping
->a_ops
->readpage
,
62 wait_on_page_locked(page
);
68 int write_zeros(struct file
*file
, pgoff_t index
, int start
, int num_zeros
);
72 * @file: The ecryptfs file
73 * @new_length: The new length of the data in the underlying file;
74 * everything between the prior end of the file and the
75 * new end of the file will be filled with zero's.
76 * new_length must be greater than current length
78 * Function for handling lseek-ing past the end of the file.
80 * This function does not support shrinking, only growing a file.
82 * Returns zero on success; non-zero otherwise.
84 int ecryptfs_fill_zeros(struct file
*file
, loff_t new_length
)
87 struct dentry
*dentry
= file
->f_dentry
;
88 struct inode
*inode
= dentry
->d_inode
;
89 pgoff_t old_end_page_index
= 0;
90 pgoff_t index
= old_end_page_index
;
91 int old_end_pos_in_page
= -1;
92 pgoff_t new_end_page_index
;
93 int new_end_pos_in_page
;
94 loff_t cur_length
= i_size_read(inode
);
96 if (cur_length
!= 0) {
97 index
= old_end_page_index
=
98 ((cur_length
- 1) >> PAGE_CACHE_SHIFT
);
99 old_end_pos_in_page
= ((cur_length
- 1) & ~PAGE_CACHE_MASK
);
101 new_end_page_index
= ((new_length
- 1) >> PAGE_CACHE_SHIFT
);
102 new_end_pos_in_page
= ((new_length
- 1) & ~PAGE_CACHE_MASK
);
103 ecryptfs_printk(KERN_DEBUG
, "old_end_page_index = [0x%.16x]; "
104 "old_end_pos_in_page = [%d]; "
105 "new_end_page_index = [0x%.16x]; "
106 "new_end_pos_in_page = [%d]\n",
107 old_end_page_index
, old_end_pos_in_page
,
108 new_end_page_index
, new_end_pos_in_page
);
109 if (old_end_page_index
== new_end_page_index
) {
110 /* Start and end are in the same page; we just need to
111 * set a portion of the existing page to zero's */
112 rc
= write_zeros(file
, index
, (old_end_pos_in_page
+ 1),
113 (new_end_pos_in_page
- old_end_pos_in_page
));
115 ecryptfs_printk(KERN_ERR
, "write_zeros(file=[%p], "
117 "old_end_pos_in_page=[d], "
118 "(PAGE_CACHE_SIZE - new_end_pos_in_page"
120 ")=[d]) returned [%d]\n", file
, index
,
123 (PAGE_CACHE_SIZE
- new_end_pos_in_page
),
127 /* Fill the remainder of the previous last page with zeros */
128 rc
= write_zeros(file
, index
, (old_end_pos_in_page
+ 1),
129 ((PAGE_CACHE_SIZE
- 1) - old_end_pos_in_page
));
131 ecryptfs_printk(KERN_ERR
, "write_zeros(file=[%p], "
132 "index=[0x%.16x], old_end_pos_in_page=[d], "
133 "(PAGE_CACHE_SIZE - old_end_pos_in_page)=[d]) "
134 "returned [%d]\n", file
, index
,
136 (PAGE_CACHE_SIZE
- old_end_pos_in_page
), rc
);
140 while (index
< new_end_page_index
) {
141 /* Fill all intermediate pages with zeros */
142 rc
= write_zeros(file
, index
, 0, PAGE_CACHE_SIZE
);
144 ecryptfs_printk(KERN_ERR
, "write_zeros(file=[%p], "
146 "old_end_pos_in_page=[d], "
147 "(PAGE_CACHE_SIZE - new_end_pos_in_page"
149 ")=[d]) returned [%d]\n", file
, index
,
152 (PAGE_CACHE_SIZE
- new_end_pos_in_page
),
158 /* Fill the portion at the beginning of the last new page with
160 rc
= write_zeros(file
, index
, 0, (new_end_pos_in_page
+ 1));
162 ecryptfs_printk(KERN_ERR
, "write_zeros(file="
163 "[%p], index=[0x%.16x], 0, "
164 "new_end_pos_in_page=[%d]"
165 "returned [%d]\n", file
, index
,
166 new_end_pos_in_page
, rc
);
175 * @page: Page that is locked before this call is made
177 * Returns zero on success; non-zero otherwise
179 static int ecryptfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
181 struct ecryptfs_page_crypt_context ctx
;
185 ctx
.mode
= ECRYPTFS_WRITEPAGE_MODE
;
187 rc
= ecryptfs_encrypt_page(&ctx
);
189 ecryptfs_printk(KERN_WARNING
, "Error encrypting "
190 "page (upper index [0x%.16x])\n", page
->index
);
191 ClearPageUptodate(page
);
194 SetPageUptodate(page
);
201 * Reads the data from the lower file file at index lower_page_index
202 * and copies that data into page.
204 * @param page Page to fill
205 * @param lower_page_index Index of the page in the lower file to get
207 int ecryptfs_do_readpage(struct file
*file
, struct page
*page
,
208 pgoff_t lower_page_index
)
211 struct dentry
*dentry
;
212 struct file
*lower_file
;
213 struct dentry
*lower_dentry
;
215 struct inode
*lower_inode
;
217 struct page
*lower_page
= NULL
;
218 char *lower_page_data
;
219 const struct address_space_operations
*lower_a_ops
;
221 dentry
= file
->f_dentry
;
222 lower_file
= ecryptfs_file_to_lower(file
);
223 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
224 inode
= dentry
->d_inode
;
225 lower_inode
= ecryptfs_inode_to_lower(inode
);
226 lower_a_ops
= lower_inode
->i_mapping
->a_ops
;
227 lower_page
= read_cache_page(lower_inode
->i_mapping
, lower_page_index
,
228 (filler_t
*)lower_a_ops
->readpage
,
230 if (IS_ERR(lower_page
)) {
231 rc
= PTR_ERR(lower_page
);
233 ecryptfs_printk(KERN_ERR
, "Error reading from page cache\n");
236 wait_on_page_locked(lower_page
);
237 page_data
= (char *)kmap(page
);
240 ecryptfs_printk(KERN_ERR
, "Error mapping page\n");
243 lower_page_data
= (char *)kmap(lower_page
);
244 if (!lower_page_data
) {
246 ecryptfs_printk(KERN_ERR
, "Error mapping page\n");
250 memcpy(page_data
, lower_page_data
, PAGE_CACHE_SIZE
);
255 if (likely(lower_page
))
256 page_cache_release(lower_page
);
258 SetPageUptodate(page
);
260 ClearPageUptodate(page
);
266 * @file: This is an ecryptfs file
267 * @page: ecryptfs associated page to stick the read data into
269 * Read in a page, decrypting if necessary.
271 * Returns zero on success; non-zero on error.
273 static int ecryptfs_readpage(struct file
*file
, struct page
*page
)
276 struct ecryptfs_crypt_stat
*crypt_stat
;
278 BUG_ON(!(file
&& file
->f_dentry
&& file
->f_dentry
->d_inode
));
280 &ecryptfs_inode_to_private(file
->f_dentry
->d_inode
)->crypt_stat
;
282 || !ECRYPTFS_CHECK_FLAG(crypt_stat
->flags
, ECRYPTFS_ENCRYPTED
)
283 || ECRYPTFS_CHECK_FLAG(crypt_stat
->flags
, ECRYPTFS_NEW_FILE
)) {
284 ecryptfs_printk(KERN_DEBUG
,
285 "Passing through unencrypted page\n");
286 rc
= ecryptfs_do_readpage(file
, page
, page
->index
);
288 ecryptfs_printk(KERN_ERR
, "Error reading page; rc = "
293 rc
= ecryptfs_decrypt_page(file
, page
);
296 ecryptfs_printk(KERN_ERR
, "Error decrypting page; "
301 SetPageUptodate(page
);
304 ClearPageUptodate(page
);
305 ecryptfs_printk(KERN_DEBUG
, "Unlocking page with index = [0x%.16x]\n",
311 static int fill_zeros_to_end_of_page(struct page
*page
, unsigned int to
)
313 struct inode
*inode
= page
->mapping
->host
;
314 int end_byte_in_page
;
318 if ((i_size_read(inode
) / PAGE_CACHE_SIZE
) == page
->index
) {
319 end_byte_in_page
= i_size_read(inode
) % PAGE_CACHE_SIZE
;
320 if (to
> end_byte_in_page
)
321 end_byte_in_page
= to
;
322 page_virt
= kmap(page
);
325 ecryptfs_printk(KERN_WARNING
,
326 "Could not map page\n");
329 memset((page_virt
+ end_byte_in_page
), 0,
330 (PAGE_CACHE_SIZE
- end_byte_in_page
));
337 static int ecryptfs_prepare_write(struct file
*file
, struct page
*page
,
338 unsigned from
, unsigned to
)
343 if (from
== 0 && to
== PAGE_CACHE_SIZE
)
344 goto out
; /* If we are writing a full page, it will be
346 if (!PageUptodate(page
))
347 rc
= ecryptfs_do_readpage(file
, page
, page
->index
);
352 int ecryptfs_grab_and_map_lower_page(struct page
**lower_page
,
354 struct inode
*lower_inode
,
355 unsigned long lower_page_index
)
359 (*lower_page
) = grab_cache_page(lower_inode
->i_mapping
,
361 if (!(*lower_page
)) {
362 ecryptfs_printk(KERN_ERR
, "grab_cache_page for "
363 "lower_page_index = [0x%.16x] failed\n",
369 (*lower_virt
) = kmap((*lower_page
));
376 int ecryptfs_writepage_and_release_lower_page(struct page
*lower_page
,
377 struct inode
*lower_inode
,
378 struct writeback_control
*wbc
)
382 rc
= lower_inode
->i_mapping
->a_ops
->writepage(lower_page
, wbc
);
384 ecryptfs_printk(KERN_ERR
, "Error calling lower writepage(); "
388 lower_inode
->i_mtime
= lower_inode
->i_ctime
= CURRENT_TIME
;
389 page_cache_release(lower_page
);
394 static void ecryptfs_unmap_and_release_lower_page(struct page
*lower_page
)
397 ecryptfs_printk(KERN_DEBUG
, "Unlocking lower page with index = "
398 "[0x%.16x]\n", lower_page
->index
);
399 unlock_page(lower_page
);
400 page_cache_release(lower_page
);
404 * ecryptfs_write_inode_size_to_header
406 * Writes the lower file size to the first 8 bytes of the header.
408 * Returns zero on success; non-zero on error.
411 ecryptfs_write_inode_size_to_header(struct file
*lower_file
,
412 struct inode
*lower_inode
,
416 struct page
*header_page
;
418 const struct address_space_operations
*lower_a_ops
;
421 rc
= ecryptfs_grab_and_map_lower_page(&header_page
, &header_virt
,
424 ecryptfs_printk(KERN_ERR
, "grab_cache_page for header page "
428 lower_a_ops
= lower_inode
->i_mapping
->a_ops
;
429 rc
= lower_a_ops
->prepare_write(lower_file
, header_page
, 0, 8);
430 file_size
= (u64
)i_size_read(inode
);
431 ecryptfs_printk(KERN_DEBUG
, "Writing size: [0x%.16x]\n", file_size
);
432 file_size
= cpu_to_be64(file_size
);
433 memcpy(header_virt
, &file_size
, sizeof(u64
));
434 rc
= lower_a_ops
->commit_write(lower_file
, header_page
, 0, 8);
436 ecryptfs_printk(KERN_ERR
, "Error commiting header page "
438 ecryptfs_unmap_and_release_lower_page(header_page
);
439 lower_inode
->i_mtime
= lower_inode
->i_ctime
= CURRENT_TIME
;
440 mark_inode_dirty_sync(inode
);
445 int ecryptfs_get_lower_page(struct page
**lower_page
, struct inode
*lower_inode
,
446 struct file
*lower_file
,
447 unsigned long lower_page_index
, int byte_offset
,
452 rc
= ecryptfs_grab_and_map_lower_page(lower_page
, NULL
, lower_inode
,
455 ecryptfs_printk(KERN_ERR
, "Error attempting to grab and map "
456 "lower page with index [0x%.16x]\n",
460 rc
= lower_inode
->i_mapping
->a_ops
->prepare_write(lower_file
,
465 ecryptfs_printk(KERN_ERR
, "prepare_write for "
466 "lower_page_index = [0x%.16x] failed; rc = "
467 "[%d]\n", lower_page_index
, rc
);
470 if (rc
&& (*lower_page
)) {
471 ecryptfs_unmap_and_release_lower_page(*lower_page
);
472 (*lower_page
) = NULL
;
478 * ecryptfs_commit_lower_page
480 * Returns zero on success; non-zero on error
483 ecryptfs_commit_lower_page(struct page
*lower_page
, struct inode
*lower_inode
,
484 struct file
*lower_file
, int byte_offset
,
489 rc
= lower_inode
->i_mapping
->a_ops
->commit_write(
490 lower_file
, lower_page
, byte_offset
, region_size
);
492 ecryptfs_printk(KERN_ERR
,
493 "Error committing write; rc = [%d]\n", rc
);
496 ecryptfs_unmap_and_release_lower_page(lower_page
);
501 * ecryptfs_copy_page_to_lower
503 * Used for plaintext pass-through; no page index interpolation
506 int ecryptfs_copy_page_to_lower(struct page
*page
, struct inode
*lower_inode
,
507 struct file
*lower_file
)
510 struct page
*lower_page
;
512 rc
= ecryptfs_get_lower_page(&lower_page
, lower_inode
, lower_file
,
513 page
->index
, 0, PAGE_CACHE_SIZE
);
515 ecryptfs_printk(KERN_ERR
, "Error attempting to get page "
516 "at index [0x%.16x]\n", page
->index
);
520 memcpy((char *)page_address(lower_page
), page_address(page
),
522 rc
= ecryptfs_commit_lower_page(lower_page
, lower_inode
, lower_file
,
525 ecryptfs_printk(KERN_ERR
, "Error attempting to commit page "
526 "at index [0x%.16x]\n", page
->index
);
532 process_new_file(struct ecryptfs_crypt_stat
*crypt_stat
,
533 struct file
*file
, struct inode
*inode
)
535 struct page
*header_page
;
536 const struct address_space_operations
*lower_a_ops
;
537 struct inode
*lower_inode
;
538 struct file
*lower_file
;
541 int current_header_page
= 0;
543 int more_header_data_to_be_written
= 1;
545 lower_inode
= ecryptfs_inode_to_lower(inode
);
546 lower_file
= ecryptfs_file_to_lower(file
);
547 lower_a_ops
= lower_inode
->i_mapping
->a_ops
;
548 header_pages
= ((crypt_stat
->header_extent_size
549 * crypt_stat
->num_header_extents_at_front
)
551 BUG_ON(header_pages
< 1);
552 while (current_header_page
< header_pages
) {
553 rc
= ecryptfs_grab_and_map_lower_page(&header_page
,
556 current_header_page
);
558 ecryptfs_printk(KERN_ERR
, "grab_cache_page for "
559 "header page [%d] failed; rc = [%d]\n",
560 current_header_page
, rc
);
563 rc
= lower_a_ops
->prepare_write(lower_file
, header_page
, 0,
566 ecryptfs_printk(KERN_ERR
, "Error preparing to write "
567 "header page out; rc = [%d]\n", rc
);
570 memset(header_virt
, 0, PAGE_CACHE_SIZE
);
571 if (more_header_data_to_be_written
) {
572 rc
= ecryptfs_write_headers_virt(header_virt
,
576 ecryptfs_printk(KERN_WARNING
, "Error "
577 "generating header; rc = "
580 memset(header_virt
, 0, PAGE_CACHE_SIZE
);
581 ecryptfs_unmap_and_release_lower_page(
585 if (current_header_page
== 0)
586 memset(header_virt
, 0, 8);
587 more_header_data_to_be_written
= 0;
589 rc
= lower_a_ops
->commit_write(lower_file
, header_page
, 0,
591 ecryptfs_unmap_and_release_lower_page(header_page
);
593 ecryptfs_printk(KERN_ERR
,
594 "Error commiting header page write; "
598 current_header_page
++;
602 ecryptfs_printk(KERN_DEBUG
, "lower_inode->i_blocks = "
603 "[0x%.16x]\n", lower_inode
->i_blocks
);
604 i_size_write(inode
, 0);
605 lower_inode
->i_mtime
= lower_inode
->i_ctime
= CURRENT_TIME
;
606 mark_inode_dirty_sync(inode
);
608 ecryptfs_printk(KERN_DEBUG
, "Clearing ECRYPTFS_NEW_FILE flag in "
609 "crypt_stat at memory location [%p]\n", crypt_stat
);
610 ECRYPTFS_CLEAR_FLAG(crypt_stat
->flags
, ECRYPTFS_NEW_FILE
);
616 * ecryptfs_commit_write
617 * @file: The eCryptfs file object
618 * @page: The eCryptfs page
619 * @from: Ignored (we rotate the page IV on each write)
622 * This is where we encrypt the data and pass the encrypted data to
623 * the lower filesystem. In OpenPGP-compatible mode, we operate on
624 * entire underlying packets.
626 static int ecryptfs_commit_write(struct file
*file
, struct page
*page
,
627 unsigned from
, unsigned to
)
629 struct ecryptfs_page_crypt_context ctx
;
632 struct inode
*lower_inode
;
633 struct file
*lower_file
;
634 struct ecryptfs_crypt_stat
*crypt_stat
;
637 inode
= page
->mapping
->host
;
638 lower_inode
= ecryptfs_inode_to_lower(inode
);
639 lower_file
= ecryptfs_file_to_lower(file
);
640 mutex_lock(&lower_inode
->i_mutex
);
642 &ecryptfs_inode_to_private(file
->f_dentry
->d_inode
)->crypt_stat
;
643 if (ECRYPTFS_CHECK_FLAG(crypt_stat
->flags
, ECRYPTFS_NEW_FILE
)) {
644 ecryptfs_printk(KERN_DEBUG
, "ECRYPTFS_NEW_FILE flag set in "
645 "crypt_stat at memory location [%p]\n", crypt_stat
);
646 rc
= process_new_file(crypt_stat
, file
, inode
);
648 ecryptfs_printk(KERN_ERR
, "Error processing new "
649 "file; rc = [%d]\n", rc
);
653 ecryptfs_printk(KERN_DEBUG
, "Not a new file\n");
654 ecryptfs_printk(KERN_DEBUG
, "Calling fill_zeros_to_end_of_page"
655 "(page w/ index = [0x%.16x], to = [%d])\n", page
->index
,
657 rc
= fill_zeros_to_end_of_page(page
, to
);
659 ecryptfs_printk(KERN_WARNING
, "Error attempting to fill "
660 "zeros in page with index = [0x%.16x]\n",
665 ctx
.mode
= ECRYPTFS_PREPARE_COMMIT_MODE
;
666 ctx
.param
.lower_file
= lower_file
;
667 rc
= ecryptfs_encrypt_page(&ctx
);
669 ecryptfs_printk(KERN_WARNING
, "Error encrypting page (upper "
670 "index [0x%.16x])\n", page
->index
);
674 inode
->i_blocks
= lower_inode
->i_blocks
;
675 pos
= (page
->index
<< PAGE_CACHE_SHIFT
) + to
;
676 if (pos
> i_size_read(inode
)) {
677 i_size_write(inode
, pos
);
678 ecryptfs_printk(KERN_DEBUG
, "Expanded file size to "
679 "[0x%.16x]\n", i_size_read(inode
));
681 ecryptfs_write_inode_size_to_header(lower_file
, lower_inode
, inode
);
682 lower_inode
->i_mtime
= lower_inode
->i_ctime
= CURRENT_TIME
;
683 mark_inode_dirty_sync(inode
);
685 kunmap(page
); /* mapped in prior call (prepare_write) */
687 ClearPageUptodate(page
);
689 SetPageUptodate(page
);
690 mutex_unlock(&lower_inode
->i_mutex
);
696 * @file: The ecryptfs file
697 * @index: The index in which we are writing
698 * @start: The position after the last block of data
699 * @num_zeros: The number of zeros to write
701 * Write a specified number of zero's to a page.
703 * (start + num_zeros) must be less than or equal to PAGE_CACHE_SIZE
706 int write_zeros(struct file
*file
, pgoff_t index
, int start
, int num_zeros
)
709 struct page
*tmp_page
;
711 tmp_page
= ecryptfs_get1page(file
, index
);
712 if (IS_ERR(tmp_page
)) {
713 ecryptfs_printk(KERN_ERR
, "Error getting page at index "
714 "[0x%.16x]\n", index
);
715 rc
= PTR_ERR(tmp_page
);
719 rc
= ecryptfs_prepare_write(file
, tmp_page
, start
, start
+ num_zeros
);
721 ecryptfs_printk(KERN_ERR
, "Error preparing to write zero's "
722 "to remainder of page at index [0x%.16x]\n",
725 page_cache_release(tmp_page
);
728 memset(((char *)page_address(tmp_page
) + start
), 0, num_zeros
);
729 rc
= ecryptfs_commit_write(file
, tmp_page
, start
, start
+ num_zeros
);
731 ecryptfs_printk(KERN_ERR
, "Error attempting to write zero's "
732 "to remainder of page at index [0x%.16x]\n",
735 page_cache_release(tmp_page
);
740 page_cache_release(tmp_page
);
745 static sector_t
ecryptfs_bmap(struct address_space
*mapping
, sector_t block
)
749 struct inode
*lower_inode
;
751 inode
= (struct inode
*)mapping
->host
;
752 lower_inode
= ecryptfs_inode_to_lower(inode
);
753 if (lower_inode
->i_mapping
->a_ops
->bmap
)
754 rc
= lower_inode
->i_mapping
->a_ops
->bmap(lower_inode
->i_mapping
,
759 static void ecryptfs_sync_page(struct page
*page
)
762 struct inode
*lower_inode
;
763 struct page
*lower_page
;
765 inode
= page
->mapping
->host
;
766 lower_inode
= ecryptfs_inode_to_lower(inode
);
767 /* NOTE: Recently swapped with grab_cache_page(), since
768 * sync_page() just makes sure that pending I/O gets done. */
769 lower_page
= find_lock_page(lower_inode
->i_mapping
, page
->index
);
771 ecryptfs_printk(KERN_DEBUG
, "find_lock_page failed\n");
774 lower_page
->mapping
->a_ops
->sync_page(lower_page
);
775 ecryptfs_printk(KERN_DEBUG
, "Unlocking page with index = [0x%.16x]\n",
777 unlock_page(lower_page
);
778 page_cache_release(lower_page
);
781 struct address_space_operations ecryptfs_aops
= {
782 .writepage
= ecryptfs_writepage
,
783 .readpage
= ecryptfs_readpage
,
784 .prepare_write
= ecryptfs_prepare_write
,
785 .commit_write
= ecryptfs_commit_write
,
786 .bmap
= ecryptfs_bmap
,
787 .sync_page
= ecryptfs_sync_page
,