blob: 2c2d60df3f607e99abc81d3caf1579794f32e5e3 [file] [log] [blame]
Michael Halcrow237fead2006-10-04 02:16:22 -07001/**
2 * eCryptfs: Linux filesystem encryption layer
3 *
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08006 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -07007 * Author(s): Michael A. Halcrow <mhalcrow@us.ibm.com>
8 * Michael C. Thompson <mcthomps@us.ibm.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 * 02111-1307, USA.
24 */
25
26#include <linux/file.h>
27#include <linux/poll.h>
28#include <linux/mount.h>
29#include <linux/pagemap.h>
30#include <linux/security.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070031#include <linux/compat.h>
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -080032#include <linux/fs_stack.h>
Jonathan Corbetdda64452008-06-19 16:18:25 -060033#include <linux/smp_lock.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070034#include "ecryptfs_kernel.h"
35
36/**
Michael Halcrow237fead2006-10-04 02:16:22 -070037 * ecryptfs_read_update_atime
38 *
39 * generic_file_read updates the atime of upper layer inode. But, it
40 * doesn't give us a chance to update the atime of the lower layer
41 * inode. This function is a wrapper to generic_file_read. It
42 * updates the atime of the lower level inode if generic_file_read
43 * returns without any errors. This is to be used only for file reads.
44 * The function to be used for directory reads is ecryptfs_read.
45 */
46static ssize_t ecryptfs_read_update_atime(struct kiocb *iocb,
47 const struct iovec *iov,
48 unsigned long nr_segs, loff_t pos)
49{
50 int rc;
51 struct dentry *lower_dentry;
52 struct vfsmount *lower_vfsmount;
53 struct file *file = iocb->ki_filp;
54
55 rc = generic_file_aio_read(iocb, iov, nr_segs, pos);
56 /*
57 * Even though this is a async interface, we need to wait
58 * for IO to finish to update atime
59 */
60 if (-EIOCBQUEUED == rc)
61 rc = wait_on_sync_kiocb(iocb);
62 if (rc >= 0) {
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -080063 lower_dentry = ecryptfs_dentry_to_lower(file->f_path.dentry);
64 lower_vfsmount = ecryptfs_dentry_to_lower_mnt(file->f_path.dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -070065 touch_atime(lower_vfsmount, lower_dentry);
66 }
67 return rc;
68}
69
70struct ecryptfs_getdents_callback {
71 void *dirent;
72 struct dentry *dentry;
73 filldir_t filldir;
74 int err;
75 int filldir_called;
76 int entries_written;
77};
78
79/* Inspired by generic filldir in fs/readir.c */
80static int
81ecryptfs_filldir(void *dirent, const char *name, int namelen, loff_t offset,
82 u64 ino, unsigned int d_type)
83{
84 struct ecryptfs_crypt_stat *crypt_stat;
85 struct ecryptfs_getdents_callback *buf =
86 (struct ecryptfs_getdents_callback *)dirent;
87 int rc;
88 int decoded_length;
89 char *decoded_name;
90
91 crypt_stat = ecryptfs_dentry_to_private(buf->dentry)->crypt_stat;
92 buf->filldir_called++;
93 decoded_length = ecryptfs_decode_filename(crypt_stat, name, namelen,
94 &decoded_name);
95 if (decoded_length < 0) {
96 rc = decoded_length;
97 goto out;
98 }
99 rc = buf->filldir(buf->dirent, decoded_name, decoded_length, offset,
100 ino, d_type);
101 kfree(decoded_name);
102 if (rc >= 0)
103 buf->entries_written++;
104out:
105 return rc;
106}
107
108/**
109 * ecryptfs_readdir
110 * @file: The ecryptfs file struct
111 * @dirent: Directory entry
112 * @filldir: The filldir callback function
113 */
114static int ecryptfs_readdir(struct file *file, void *dirent, filldir_t filldir)
115{
116 int rc;
117 struct file *lower_file;
118 struct inode *inode;
119 struct ecryptfs_getdents_callback buf;
120
121 lower_file = ecryptfs_file_to_lower(file);
122 lower_file->f_pos = file->f_pos;
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800123 inode = file->f_path.dentry->d_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700124 memset(&buf, 0, sizeof(buf));
125 buf.dirent = dirent;
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800126 buf.dentry = file->f_path.dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700127 buf.filldir = filldir;
128retry:
129 buf.filldir_called = 0;
130 buf.entries_written = 0;
131 buf.err = 0;
132 rc = vfs_readdir(lower_file, ecryptfs_filldir, (void *)&buf);
133 if (buf.err)
134 rc = buf.err;
135 if (buf.filldir_called && !buf.entries_written)
136 goto retry;
137 file->f_pos = lower_file->f_pos;
138 if (rc >= 0)
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800139 fsstack_copy_attr_atime(inode, lower_file->f_path.dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700140 return rc;
141}
142
143struct kmem_cache *ecryptfs_file_info_cache;
144
145/**
146 * ecryptfs_open
147 * @inode: inode speciying file to open
148 * @file: Structure to return filled in
149 *
150 * Opens the file specified by inode.
151 *
152 * Returns zero on success; non-zero otherwise
153 */
154static int ecryptfs_open(struct inode *inode, struct file *file)
155{
156 int rc = 0;
157 struct ecryptfs_crypt_stat *crypt_stat = NULL;
158 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800159 struct dentry *ecryptfs_dentry = file->f_path.dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700160 /* Private value of ecryptfs_dentry allocated in
161 * ecryptfs_lookup() */
162 struct dentry *lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700163 struct ecryptfs_file_info *file_info;
Michael Halcrow237fead2006-10-04 02:16:22 -0700164
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800165 mount_crypt_stat = &ecryptfs_superblock_to_private(
166 ecryptfs_dentry->d_sb)->mount_crypt_stat;
167 if ((mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
168 && ((file->f_flags & O_WRONLY) || (file->f_flags & O_RDWR)
169 || (file->f_flags & O_CREAT) || (file->f_flags & O_TRUNC)
170 || (file->f_flags & O_APPEND))) {
171 printk(KERN_WARNING "Mount has encrypted view enabled; "
172 "files may only be read\n");
173 rc = -EPERM;
174 goto out;
175 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700176 /* Released in ecryptfs_release or end of function if failure */
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800177 file_info = kmem_cache_zalloc(ecryptfs_file_info_cache, GFP_KERNEL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700178 ecryptfs_set_file_private(file, file_info);
179 if (!file_info) {
180 ecryptfs_printk(KERN_ERR,
181 "Error attempting to allocate memory\n");
182 rc = -ENOMEM;
183 goto out;
184 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700185 lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry);
186 crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700187 mutex_lock(&crypt_stat->cs_mutex);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800188 if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700189 ecryptfs_printk(KERN_DEBUG, "Setting flags for stat...\n");
190 /* Policy code enabled in future release */
Michael Halcrow2ed92552007-10-16 01:28:10 -0700191 crypt_stat->flags |= (ECRYPTFS_POLICY_APPLIED
192 | ECRYPTFS_ENCRYPTED);
Michael Halcrow237fead2006-10-04 02:16:22 -0700193 }
194 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrow746f1e52008-07-23 21:30:02 -0700195 if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_RDONLY)
196 && !(file->f_flags & O_RDONLY)) {
197 rc = -EPERM;
198 printk(KERN_WARNING "%s: Lower persistent file is RO; eCryptfs "
199 "file must hence be opened RO\n", __func__);
200 goto out;
201 }
Michael Halcrow72b55ff2008-07-23 21:30:07 -0700202 if (!ecryptfs_inode_to_private(inode)->lower_file) {
203 BUG_ON(!(crypt_stat->flags & ECRYPTFS_DELAY_PERSISTENT));
204 mutex_lock(&crypt_stat->cs_mutex);
205 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
206 mutex_unlock(&crypt_stat->cs_mutex);
207 rc = ecryptfs_init_persistent_file(ecryptfs_dentry);
208 if (rc) {
209 printk(KERN_ERR "%s: Error attempting to initialize "
210 "the persistent file for the dentry with name "
211 "[%s]; rc = [%d]\n", __func__,
212 ecryptfs_dentry->d_name.name, rc);
213 goto out;
214 }
215 }
Michael Halcrow2ed92552007-10-16 01:28:10 -0700216 ecryptfs_set_file_lower(
217 file, ecryptfs_inode_to_private(inode)->lower_file);
Michael Halcrow237fead2006-10-04 02:16:22 -0700218 if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) {
219 ecryptfs_printk(KERN_DEBUG, "This is a directory\n");
Michael Halcrow2f9b12a2008-04-29 00:59:52 -0700220 mutex_lock(&crypt_stat->cs_mutex);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800221 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
Michael Halcrow2f9b12a2008-04-29 00:59:52 -0700222 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700223 rc = 0;
224 goto out;
225 }
226 mutex_lock(&crypt_stat->cs_mutex);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800227 if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)
228 || !(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700229 rc = ecryptfs_read_metadata(ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700230 if (rc) {
231 ecryptfs_printk(KERN_DEBUG,
232 "Valid headers not found\n");
233 if (!(mount_crypt_stat->flags
234 & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) {
235 rc = -EIO;
Michael Halcrow25bd8172008-02-06 01:38:35 -0800236 printk(KERN_WARNING "Either the lower file "
Michael Halcrow237fead2006-10-04 02:16:22 -0700237 "is not in a valid eCryptfs format, "
Michael Halcrow25bd8172008-02-06 01:38:35 -0800238 "or the key could not be retrieved. "
239 "Plaintext passthrough mode is not "
Michael Halcrow237fead2006-10-04 02:16:22 -0700240 "enabled; returning -EIO\n");
241 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrow2ed92552007-10-16 01:28:10 -0700242 goto out_free;
Michael Halcrow237fead2006-10-04 02:16:22 -0700243 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700244 rc = 0;
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800245 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
Michael Halcrow237fead2006-10-04 02:16:22 -0700246 mutex_unlock(&crypt_stat->cs_mutex);
247 goto out;
248 }
249 }
250 mutex_unlock(&crypt_stat->cs_mutex);
251 ecryptfs_printk(KERN_DEBUG, "inode w/ addr = [0x%p], i_ino = [0x%.16x] "
252 "size: [0x%.16x]\n", inode, inode->i_ino,
253 i_size_read(inode));
Michael Halcrow237fead2006-10-04 02:16:22 -0700254 goto out;
Michael Halcrow2ed92552007-10-16 01:28:10 -0700255out_free:
Michael Halcrow237fead2006-10-04 02:16:22 -0700256 kmem_cache_free(ecryptfs_file_info_cache,
257 ecryptfs_file_to_private(file));
258out:
259 return rc;
260}
261
262static int ecryptfs_flush(struct file *file, fl_owner_t td)
263{
264 int rc = 0;
265 struct file *lower_file = NULL;
266
267 lower_file = ecryptfs_file_to_lower(file);
268 if (lower_file->f_op && lower_file->f_op->flush)
269 rc = lower_file->f_op->flush(lower_file, td);
270 return rc;
271}
272
273static int ecryptfs_release(struct inode *inode, struct file *file)
274{
Michael Halcrow2ed92552007-10-16 01:28:10 -0700275 kmem_cache_free(ecryptfs_file_info_cache,
276 ecryptfs_file_to_private(file));
277 return 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700278}
279
280static int
281ecryptfs_fsync(struct file *file, struct dentry *dentry, int datasync)
282{
283 struct file *lower_file = ecryptfs_file_to_lower(file);
284 struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
285 struct inode *lower_inode = lower_dentry->d_inode;
286 int rc = -EINVAL;
287
288 if (lower_inode->i_fop->fsync) {
289 mutex_lock(&lower_inode->i_mutex);
290 rc = lower_inode->i_fop->fsync(lower_file, lower_dentry,
291 datasync);
292 mutex_unlock(&lower_inode->i_mutex);
293 }
294 return rc;
295}
296
297static int ecryptfs_fasync(int fd, struct file *file, int flag)
298{
299 int rc = 0;
300 struct file *lower_file = NULL;
301
Jonathan Corbetdda64452008-06-19 16:18:25 -0600302 lock_kernel();
Michael Halcrow237fead2006-10-04 02:16:22 -0700303 lower_file = ecryptfs_file_to_lower(file);
304 if (lower_file->f_op && lower_file->f_op->fasync)
305 rc = lower_file->f_op->fasync(fd, lower_file, flag);
Jonathan Corbetdda64452008-06-19 16:18:25 -0600306 unlock_kernel();
Michael Halcrow237fead2006-10-04 02:16:22 -0700307 return rc;
308}
309
Michael Halcrow237fead2006-10-04 02:16:22 -0700310static int ecryptfs_ioctl(struct inode *inode, struct file *file,
311 unsigned int cmd, unsigned long arg);
312
313const struct file_operations ecryptfs_dir_fops = {
314 .readdir = ecryptfs_readdir,
315 .ioctl = ecryptfs_ioctl,
316 .mmap = generic_file_mmap,
317 .open = ecryptfs_open,
318 .flush = ecryptfs_flush,
319 .release = ecryptfs_release,
320 .fsync = ecryptfs_fsync,
321 .fasync = ecryptfs_fasync,
Michael Halcrowe9f6a992007-10-16 01:28:04 -0700322 .splice_read = generic_file_splice_read,
Michael Halcrow237fead2006-10-04 02:16:22 -0700323};
324
325const struct file_operations ecryptfs_main_fops = {
Michael Halcrow53a27312007-05-23 13:58:15 -0700326 .llseek = generic_file_llseek,
Michael Halcrow237fead2006-10-04 02:16:22 -0700327 .read = do_sync_read,
328 .aio_read = ecryptfs_read_update_atime,
329 .write = do_sync_write,
330 .aio_write = generic_file_aio_write,
331 .readdir = ecryptfs_readdir,
332 .ioctl = ecryptfs_ioctl,
333 .mmap = generic_file_mmap,
334 .open = ecryptfs_open,
335 .flush = ecryptfs_flush,
336 .release = ecryptfs_release,
337 .fsync = ecryptfs_fsync,
338 .fasync = ecryptfs_fasync,
Michael Halcrowe9f6a992007-10-16 01:28:04 -0700339 .splice_read = generic_file_splice_read,
Michael Halcrow237fead2006-10-04 02:16:22 -0700340};
341
342static int
343ecryptfs_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
344 unsigned long arg)
345{
346 int rc = 0;
347 struct file *lower_file = NULL;
348
349 if (ecryptfs_file_to_private(file))
350 lower_file = ecryptfs_file_to_lower(file);
351 if (lower_file && lower_file->f_op && lower_file->f_op->ioctl)
352 rc = lower_file->f_op->ioctl(ecryptfs_inode_to_lower(inode),
353 lower_file, cmd, arg);
354 else
355 rc = -ENOTTY;
356 return rc;
357}