Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
Loading...
v3.1
 
  1/**
  2 * eCryptfs: Linux filesystem encryption layer
  3 *
  4 * Copyright (C) 1997-2004 Erez Zadok
  5 * Copyright (C) 2001-2004 Stony Brook University
  6 * Copyright (C) 2004-2007 International Business Machines Corp.
  7 *   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/slab.h>
 29#include <linux/mount.h>
 30#include <linux/pagemap.h>
 31#include <linux/security.h>
 32#include <linux/compat.h>
 33#include <linux/fs_stack.h>
 34#include "ecryptfs_kernel.h"
 35
 36/**
 37 * 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	ssize_t 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) {
 63		lower_dentry = ecryptfs_dentry_to_lower(file->f_path.dentry);
 64		lower_vfsmount = ecryptfs_dentry_to_lower_mnt(file->f_path.dentry);
 65		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 filldir_called;
 75	int entries_written;
 76};
 77
 78/* Inspired by generic filldir in fs/readdir.c */
 79static int
 80ecryptfs_filldir(void *dirent, const char *lower_name, int lower_namelen,
 81		 loff_t offset, u64 ino, unsigned int d_type)
 82{
 83	struct ecryptfs_getdents_callback *buf =
 84	    (struct ecryptfs_getdents_callback *)dirent;
 85	size_t name_size;
 86	char *name;
 87	int rc;
 88
 89	buf->filldir_called++;
 90	rc = ecryptfs_decode_and_decrypt_filename(&name, &name_size,
 91						  buf->dentry, lower_name,
 92						  lower_namelen);
 93	if (rc) {
 94		printk(KERN_ERR "%s: Error attempting to decode and decrypt "
 95		       "filename [%s]; rc = [%d]\n", __func__, lower_name,
 96		       rc);
 97		goto out;
 
 
 
 
 
 
 
 
 
 
 98	}
 99	rc = buf->filldir(buf->dirent, name, name_size, offset, ino, d_type);
 
 
100	kfree(name);
101	if (rc >= 0)
102		buf->entries_written++;
103out:
104	return rc;
105}
106
107/**
108 * ecryptfs_readdir
109 * @file: The eCryptfs directory file
110 * @dirent: Directory entry handle
111 * @filldir: The filldir callback function
112 */
113static int ecryptfs_readdir(struct file *file, void *dirent, filldir_t filldir)
114{
115	int rc;
116	struct file *lower_file;
117	struct inode *inode;
118	struct ecryptfs_getdents_callback buf;
119
 
 
 
120	lower_file = ecryptfs_file_to_lower(file);
121	lower_file->f_pos = file->f_pos;
122	inode = file->f_path.dentry->d_inode;
123	memset(&buf, 0, sizeof(buf));
124	buf.dirent = dirent;
125	buf.dentry = file->f_path.dentry;
126	buf.filldir = filldir;
127	buf.filldir_called = 0;
128	buf.entries_written = 0;
129	rc = vfs_readdir(lower_file, ecryptfs_filldir, (void *)&buf);
130	file->f_pos = lower_file->f_pos;
131	if (rc < 0)
132		goto out;
133	if (buf.filldir_called && !buf.entries_written)
134		goto out;
135	if (rc >= 0)
136		fsstack_copy_attr_atime(inode,
137					lower_file->f_path.dentry->d_inode);
138out:
139	return rc;
140}
141
142struct kmem_cache *ecryptfs_file_info_cache;
143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144/**
145 * ecryptfs_open
146 * @inode: inode speciying file to open
147 * @file: Structure to return filled in
148 *
149 * Opens the file specified by inode.
150 *
151 * Returns zero on success; non-zero otherwise
152 */
153static int ecryptfs_open(struct inode *inode, struct file *file)
154{
155	int rc = 0;
156	struct ecryptfs_crypt_stat *crypt_stat = NULL;
157	struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
158	struct dentry *ecryptfs_dentry = file->f_path.dentry;
159	/* Private value of ecryptfs_dentry allocated in
160	 * ecryptfs_lookup() */
161	struct dentry *lower_dentry;
162	struct ecryptfs_file_info *file_info;
163
164	mount_crypt_stat = &ecryptfs_superblock_to_private(
165		ecryptfs_dentry->d_sb)->mount_crypt_stat;
166	if ((mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED)
167	    && ((file->f_flags & O_WRONLY) || (file->f_flags & O_RDWR)
168		|| (file->f_flags & O_CREAT) || (file->f_flags & O_TRUNC)
169		|| (file->f_flags & O_APPEND))) {
170		printk(KERN_WARNING "Mount has encrypted view enabled; "
171		       "files may only be read\n");
172		rc = -EPERM;
173		goto out;
174	}
175	/* Released in ecryptfs_release or end of function if failure */
176	file_info = kmem_cache_zalloc(ecryptfs_file_info_cache, GFP_KERNEL);
177	ecryptfs_set_file_private(file, file_info);
178	if (!file_info) {
179		ecryptfs_printk(KERN_ERR,
180				"Error attempting to allocate memory\n");
181		rc = -ENOMEM;
182		goto out;
183	}
184	lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry);
185	crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
186	mutex_lock(&crypt_stat->cs_mutex);
187	if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)) {
188		ecryptfs_printk(KERN_DEBUG, "Setting flags for stat...\n");
189		/* Policy code enabled in future release */
190		crypt_stat->flags |= (ECRYPTFS_POLICY_APPLIED
191				      | ECRYPTFS_ENCRYPTED);
192	}
193	mutex_unlock(&crypt_stat->cs_mutex);
194	rc = ecryptfs_get_lower_file(ecryptfs_dentry, inode);
195	if (rc) {
196		printk(KERN_ERR "%s: Error attempting to initialize "
197			"the lower file for the dentry with name "
198			"[%s]; rc = [%d]\n", __func__,
199			ecryptfs_dentry->d_name.name, rc);
200		goto out_free;
201	}
202	if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_ACCMODE)
203	    == O_RDONLY && (file->f_flags & O_ACCMODE) != O_RDONLY) {
204		rc = -EPERM;
205		printk(KERN_WARNING "%s: Lower file is RO; eCryptfs "
206		       "file must hence be opened RO\n", __func__);
207		goto out_put;
208	}
209	ecryptfs_set_file_lower(
210		file, ecryptfs_inode_to_private(inode)->lower_file);
211	if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) {
212		ecryptfs_printk(KERN_DEBUG, "This is a directory\n");
213		mutex_lock(&crypt_stat->cs_mutex);
214		crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
215		mutex_unlock(&crypt_stat->cs_mutex);
216		rc = 0;
217		goto out;
218	}
219	mutex_lock(&crypt_stat->cs_mutex);
220	if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)
221	    || !(crypt_stat->flags & ECRYPTFS_KEY_VALID)) {
222		rc = ecryptfs_read_metadata(ecryptfs_dentry);
223		if (rc) {
224			ecryptfs_printk(KERN_DEBUG,
225					"Valid headers not found\n");
226			if (!(mount_crypt_stat->flags
227			      & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) {
228				rc = -EIO;
229				printk(KERN_WARNING "Either the lower file "
230				       "is not in a valid eCryptfs format, "
231				       "or the key could not be retrieved. "
232				       "Plaintext passthrough mode is not "
233				       "enabled; returning -EIO\n");
234				mutex_unlock(&crypt_stat->cs_mutex);
235				goto out_put;
236			}
237			rc = 0;
238			crypt_stat->flags &= ~(ECRYPTFS_I_SIZE_INITIALIZED
239					       | ECRYPTFS_ENCRYPTED);
240			mutex_unlock(&crypt_stat->cs_mutex);
241			goto out;
242		}
243	}
244	mutex_unlock(&crypt_stat->cs_mutex);
245	ecryptfs_printk(KERN_DEBUG, "inode w/ addr = [0x%p], i_ino = "
246			"[0x%.16lx] size: [0x%.16llx]\n", inode, inode->i_ino,
247			(unsigned long long)i_size_read(inode));
248	goto out;
249out_put:
250	ecryptfs_put_lower_file(inode);
251out_free:
252	kmem_cache_free(ecryptfs_file_info_cache,
253			ecryptfs_file_to_private(file));
254out:
255	return rc;
256}
257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258static int ecryptfs_flush(struct file *file, fl_owner_t td)
259{
260	return file->f_mode & FMODE_WRITE
261	       ? filemap_write_and_wait(file->f_mapping) : 0;
 
 
 
 
 
 
262}
263
264static int ecryptfs_release(struct inode *inode, struct file *file)
265{
266	ecryptfs_put_lower_file(inode);
267	kmem_cache_free(ecryptfs_file_info_cache,
268			ecryptfs_file_to_private(file));
269	return 0;
270}
271
 
 
 
 
 
 
 
 
 
 
 
 
 
272static int
273ecryptfs_fsync(struct file *file, loff_t start, loff_t end, int datasync)
274{
275	int rc = 0;
276
277	rc = generic_file_fsync(file, start, end, datasync);
278	if (rc)
279		goto out;
280	rc = vfs_fsync_range(ecryptfs_file_to_lower(file), start, end,
281			     datasync);
282out:
283	return rc;
284}
285
286static int ecryptfs_fasync(int fd, struct file *file, int flag)
287{
288	int rc = 0;
289	struct file *lower_file = NULL;
290
291	lower_file = ecryptfs_file_to_lower(file);
292	if (lower_file->f_op && lower_file->f_op->fasync)
293		rc = lower_file->f_op->fasync(fd, lower_file, flag);
294	return rc;
295}
296
297static long
298ecryptfs_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
299{
300	struct file *lower_file = NULL;
301	long rc = -ENOTTY;
302
303	if (ecryptfs_file_to_private(file))
304		lower_file = ecryptfs_file_to_lower(file);
305	if (lower_file && lower_file->f_op && lower_file->f_op->unlocked_ioctl)
 
 
 
 
 
 
306		rc = lower_file->f_op->unlocked_ioctl(lower_file, cmd, arg);
307	return rc;
 
 
 
 
 
308}
309
310#ifdef CONFIG_COMPAT
311static long
312ecryptfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
313{
314	struct file *lower_file = NULL;
315	long rc = -ENOIOCTLCMD;
316
317	if (ecryptfs_file_to_private(file))
318		lower_file = ecryptfs_file_to_lower(file);
319	if (lower_file && lower_file->f_op && lower_file->f_op->compat_ioctl)
 
 
 
 
 
320		rc = lower_file->f_op->compat_ioctl(lower_file, cmd, arg);
321	return rc;
 
 
 
 
 
322}
323#endif
324
325const struct file_operations ecryptfs_dir_fops = {
326	.readdir = ecryptfs_readdir,
327	.read = generic_read_dir,
328	.unlocked_ioctl = ecryptfs_unlocked_ioctl,
329#ifdef CONFIG_COMPAT
330	.compat_ioctl = ecryptfs_compat_ioctl,
331#endif
332	.open = ecryptfs_open,
333	.flush = ecryptfs_flush,
334	.release = ecryptfs_release,
335	.fsync = ecryptfs_fsync,
336	.fasync = ecryptfs_fasync,
337	.splice_read = generic_file_splice_read,
338	.llseek = default_llseek,
339};
340
341const struct file_operations ecryptfs_main_fops = {
342	.llseek = generic_file_llseek,
343	.read = do_sync_read,
344	.aio_read = ecryptfs_read_update_atime,
345	.write = do_sync_write,
346	.aio_write = generic_file_aio_write,
347	.readdir = ecryptfs_readdir,
348	.unlocked_ioctl = ecryptfs_unlocked_ioctl,
349#ifdef CONFIG_COMPAT
350	.compat_ioctl = ecryptfs_compat_ioctl,
351#endif
352	.mmap = generic_file_mmap,
353	.open = ecryptfs_open,
354	.flush = ecryptfs_flush,
355	.release = ecryptfs_release,
356	.fsync = ecryptfs_fsync,
357	.fasync = ecryptfs_fasync,
358	.splice_read = generic_file_splice_read,
359};
v5.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/**
  3 * eCryptfs: Linux filesystem encryption layer
  4 *
  5 * Copyright (C) 1997-2004 Erez Zadok
  6 * Copyright (C) 2001-2004 Stony Brook University
  7 * Copyright (C) 2004-2007 International Business Machines Corp.
  8 *   Author(s): Michael A. Halcrow <mhalcrow@us.ibm.com>
  9 *   		Michael C. Thompson <mcthomps@us.ibm.com>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 10 */
 11
 12#include <linux/file.h>
 13#include <linux/poll.h>
 14#include <linux/slab.h>
 15#include <linux/mount.h>
 16#include <linux/pagemap.h>
 17#include <linux/security.h>
 18#include <linux/compat.h>
 19#include <linux/fs_stack.h>
 20#include "ecryptfs_kernel.h"
 21
 22/**
 23 * ecryptfs_read_update_atime
 24 *
 25 * generic_file_read updates the atime of upper layer inode.  But, it
 26 * doesn't give us a chance to update the atime of the lower layer
 27 * inode.  This function is a wrapper to generic_file_read.  It
 28 * updates the atime of the lower level inode if generic_file_read
 29 * returns without any errors. This is to be used only for file reads.
 30 * The function to be used for directory reads is ecryptfs_read.
 31 */
 32static ssize_t ecryptfs_read_update_atime(struct kiocb *iocb,
 33				struct iov_iter *to)
 
 34{
 35	ssize_t rc;
 36	struct path *path;
 
 37	struct file *file = iocb->ki_filp;
 38
 39	rc = generic_file_read_iter(iocb, to);
 
 
 
 
 
 
 40	if (rc >= 0) {
 41		path = ecryptfs_dentry_to_lower_path(file->f_path.dentry);
 42		touch_atime(path);
 
 43	}
 44	return rc;
 45}
 46
 47struct ecryptfs_getdents_callback {
 48	struct dir_context ctx;
 49	struct dir_context *caller;
 50	struct super_block *sb;
 51	int filldir_called;
 52	int entries_written;
 53};
 54
 55/* Inspired by generic filldir in fs/readdir.c */
 56static int
 57ecryptfs_filldir(struct dir_context *ctx, const char *lower_name,
 58		 int lower_namelen, loff_t offset, u64 ino, unsigned int d_type)
 59{
 60	struct ecryptfs_getdents_callback *buf =
 61		container_of(ctx, struct ecryptfs_getdents_callback, ctx);
 62	size_t name_size;
 63	char *name;
 64	int rc;
 65
 66	buf->filldir_called++;
 67	rc = ecryptfs_decode_and_decrypt_filename(&name, &name_size,
 68						  buf->sb, lower_name,
 69						  lower_namelen);
 70	if (rc) {
 71		if (rc != -EINVAL) {
 72			ecryptfs_printk(KERN_DEBUG,
 73					"%s: Error attempting to decode and decrypt filename [%s]; rc = [%d]\n",
 74					__func__, lower_name, rc);
 75			return rc;
 76		}
 77
 78		/* Mask -EINVAL errors as these are most likely due a plaintext
 79		 * filename present in the lower filesystem despite filename
 80		 * encryption being enabled. One unavoidable example would be
 81		 * the "lost+found" dentry in the root directory of an Ext4
 82		 * filesystem.
 83		 */
 84		return 0;
 85	}
 86
 87	buf->caller->pos = buf->ctx.pos;
 88	rc = !dir_emit(buf->caller, name, name_size, ino, d_type);
 89	kfree(name);
 90	if (!rc)
 91		buf->entries_written++;
 92
 93	return rc;
 94}
 95
 96/**
 97 * ecryptfs_readdir
 98 * @file: The eCryptfs directory file
 99 * @ctx: The actor to feed the entries to
 
100 */
101static int ecryptfs_readdir(struct file *file, struct dir_context *ctx)
102{
103	int rc;
104	struct file *lower_file;
105	struct inode *inode = file_inode(file);
106	struct ecryptfs_getdents_callback buf = {
107		.ctx.actor = ecryptfs_filldir,
108		.caller = ctx,
109		.sb = inode->i_sb,
110	};
111	lower_file = ecryptfs_file_to_lower(file);
112	rc = iterate_dir(lower_file, &buf.ctx);
113	ctx->pos = buf.ctx.pos;
 
 
 
 
 
 
 
 
114	if (rc < 0)
115		goto out;
116	if (buf.filldir_called && !buf.entries_written)
117		goto out;
118	if (rc >= 0)
119		fsstack_copy_attr_atime(inode,
120					file_inode(lower_file));
121out:
122	return rc;
123}
124
125struct kmem_cache *ecryptfs_file_info_cache;
126
127static int read_or_initialize_metadata(struct dentry *dentry)
128{
129	struct inode *inode = d_inode(dentry);
130	struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
131	struct ecryptfs_crypt_stat *crypt_stat;
132	int rc;
133
134	crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
135	mount_crypt_stat = &ecryptfs_superblock_to_private(
136						inode->i_sb)->mount_crypt_stat;
137	mutex_lock(&crypt_stat->cs_mutex);
138
139	if (crypt_stat->flags & ECRYPTFS_POLICY_APPLIED &&
140	    crypt_stat->flags & ECRYPTFS_KEY_VALID) {
141		rc = 0;
142		goto out;
143	}
144
145	rc = ecryptfs_read_metadata(dentry);
146	if (!rc)
147		goto out;
148
149	if (mount_crypt_stat->flags & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED) {
150		crypt_stat->flags &= ~(ECRYPTFS_I_SIZE_INITIALIZED
151				       | ECRYPTFS_ENCRYPTED);
152		rc = 0;
153		goto out;
154	}
155
156	if (!(mount_crypt_stat->flags & ECRYPTFS_XATTR_METADATA_ENABLED) &&
157	    !i_size_read(ecryptfs_inode_to_lower(inode))) {
158		rc = ecryptfs_initialize_file(dentry, inode);
159		if (!rc)
160			goto out;
161	}
162
163	rc = -EIO;
164out:
165	mutex_unlock(&crypt_stat->cs_mutex);
166	return rc;
167}
168
169static int ecryptfs_mmap(struct file *file, struct vm_area_struct *vma)
170{
171	struct file *lower_file = ecryptfs_file_to_lower(file);
172	/*
173	 * Don't allow mmap on top of file systems that don't support it
174	 * natively.  If FILESYSTEM_MAX_STACK_DEPTH > 2 or ecryptfs
175	 * allows recursive mounting, this will need to be extended.
176	 */
177	if (!lower_file->f_op->mmap)
178		return -ENODEV;
179	return generic_file_mmap(file, vma);
180}
181
182/**
183 * ecryptfs_open
184 * @inode: inode specifying file to open
185 * @file: Structure to return filled in
186 *
187 * Opens the file specified by inode.
188 *
189 * Returns zero on success; non-zero otherwise
190 */
191static int ecryptfs_open(struct inode *inode, struct file *file)
192{
193	int rc = 0;
194	struct ecryptfs_crypt_stat *crypt_stat = NULL;
 
195	struct dentry *ecryptfs_dentry = file->f_path.dentry;
196	/* Private value of ecryptfs_dentry allocated in
197	 * ecryptfs_lookup() */
 
198	struct ecryptfs_file_info *file_info;
199
 
 
 
 
 
 
 
 
 
 
 
200	/* Released in ecryptfs_release or end of function if failure */
201	file_info = kmem_cache_zalloc(ecryptfs_file_info_cache, GFP_KERNEL);
202	ecryptfs_set_file_private(file, file_info);
203	if (!file_info) {
204		ecryptfs_printk(KERN_ERR,
205				"Error attempting to allocate memory\n");
206		rc = -ENOMEM;
207		goto out;
208	}
 
209	crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
210	mutex_lock(&crypt_stat->cs_mutex);
211	if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)) {
212		ecryptfs_printk(KERN_DEBUG, "Setting flags for stat...\n");
213		/* Policy code enabled in future release */
214		crypt_stat->flags |= (ECRYPTFS_POLICY_APPLIED
215				      | ECRYPTFS_ENCRYPTED);
216	}
217	mutex_unlock(&crypt_stat->cs_mutex);
218	rc = ecryptfs_get_lower_file(ecryptfs_dentry, inode);
219	if (rc) {
220		printk(KERN_ERR "%s: Error attempting to initialize "
221			"the lower file for the dentry with name "
222			"[%pd]; rc = [%d]\n", __func__,
223			ecryptfs_dentry, rc);
224		goto out_free;
225	}
226	if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_ACCMODE)
227	    == O_RDONLY && (file->f_flags & O_ACCMODE) != O_RDONLY) {
228		rc = -EPERM;
229		printk(KERN_WARNING "%s: Lower file is RO; eCryptfs "
230		       "file must hence be opened RO\n", __func__);
231		goto out_put;
232	}
233	ecryptfs_set_file_lower(
234		file, ecryptfs_inode_to_private(inode)->lower_file);
235	rc = read_or_initialize_metadata(ecryptfs_dentry);
236	if (rc)
237		goto out_put;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238	ecryptfs_printk(KERN_DEBUG, "inode w/ addr = [0x%p], i_ino = "
239			"[0x%.16lx] size: [0x%.16llx]\n", inode, inode->i_ino,
240			(unsigned long long)i_size_read(inode));
241	goto out;
242out_put:
243	ecryptfs_put_lower_file(inode);
244out_free:
245	kmem_cache_free(ecryptfs_file_info_cache,
246			ecryptfs_file_to_private(file));
247out:
248	return rc;
249}
250
251/**
252 * ecryptfs_dir_open
253 * @inode: inode specifying file to open
254 * @file: Structure to return filled in
255 *
256 * Opens the file specified by inode.
257 *
258 * Returns zero on success; non-zero otherwise
259 */
260static int ecryptfs_dir_open(struct inode *inode, struct file *file)
261{
262	struct dentry *ecryptfs_dentry = file->f_path.dentry;
263	/* Private value of ecryptfs_dentry allocated in
264	 * ecryptfs_lookup() */
265	struct ecryptfs_file_info *file_info;
266	struct file *lower_file;
267
268	/* Released in ecryptfs_release or end of function if failure */
269	file_info = kmem_cache_zalloc(ecryptfs_file_info_cache, GFP_KERNEL);
270	ecryptfs_set_file_private(file, file_info);
271	if (unlikely(!file_info)) {
272		ecryptfs_printk(KERN_ERR,
273				"Error attempting to allocate memory\n");
274		return -ENOMEM;
275	}
276	lower_file = dentry_open(ecryptfs_dentry_to_lower_path(ecryptfs_dentry),
277				 file->f_flags, current_cred());
278	if (IS_ERR(lower_file)) {
279		printk(KERN_ERR "%s: Error attempting to initialize "
280			"the lower file for the dentry with name "
281			"[%pd]; rc = [%ld]\n", __func__,
282			ecryptfs_dentry, PTR_ERR(lower_file));
283		kmem_cache_free(ecryptfs_file_info_cache, file_info);
284		return PTR_ERR(lower_file);
285	}
286	ecryptfs_set_file_lower(file, lower_file);
287	return 0;
288}
289
290static int ecryptfs_flush(struct file *file, fl_owner_t td)
291{
292	struct file *lower_file = ecryptfs_file_to_lower(file);
293
294	if (lower_file->f_op->flush) {
295		filemap_write_and_wait(file->f_mapping);
296		return lower_file->f_op->flush(lower_file, td);
297	}
298
299	return 0;
300}
301
302static int ecryptfs_release(struct inode *inode, struct file *file)
303{
304	ecryptfs_put_lower_file(inode);
305	kmem_cache_free(ecryptfs_file_info_cache,
306			ecryptfs_file_to_private(file));
307	return 0;
308}
309
310static int ecryptfs_dir_release(struct inode *inode, struct file *file)
311{
312	fput(ecryptfs_file_to_lower(file));
313	kmem_cache_free(ecryptfs_file_info_cache,
314			ecryptfs_file_to_private(file));
315	return 0;
316}
317
318static loff_t ecryptfs_dir_llseek(struct file *file, loff_t offset, int whence)
319{
320	return vfs_llseek(ecryptfs_file_to_lower(file), offset, whence);
321}
322
323static int
324ecryptfs_fsync(struct file *file, loff_t start, loff_t end, int datasync)
325{
326	int rc;
327
328	rc = file_write_and_wait(file);
329	if (rc)
330		return rc;
331
332	return vfs_fsync(ecryptfs_file_to_lower(file), datasync);
 
 
333}
334
335static int ecryptfs_fasync(int fd, struct file *file, int flag)
336{
337	int rc = 0;
338	struct file *lower_file = NULL;
339
340	lower_file = ecryptfs_file_to_lower(file);
341	if (lower_file->f_op->fasync)
342		rc = lower_file->f_op->fasync(fd, lower_file, flag);
343	return rc;
344}
345
346static long
347ecryptfs_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
348{
349	struct file *lower_file = ecryptfs_file_to_lower(file);
350	long rc = -ENOTTY;
351
352	if (!lower_file->f_op->unlocked_ioctl)
353		return rc;
354
355	switch (cmd) {
356	case FITRIM:
357	case FS_IOC_GETFLAGS:
358	case FS_IOC_SETFLAGS:
359	case FS_IOC_GETVERSION:
360	case FS_IOC_SETVERSION:
361		rc = lower_file->f_op->unlocked_ioctl(lower_file, cmd, arg);
362		fsstack_copy_attr_all(file_inode(file), file_inode(lower_file));
363
364		return rc;
365	default:
366		return rc;
367	}
368}
369
370#ifdef CONFIG_COMPAT
371static long
372ecryptfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
373{
374	struct file *lower_file = ecryptfs_file_to_lower(file);
375	long rc = -ENOIOCTLCMD;
376
377	if (!lower_file->f_op->compat_ioctl)
378		return rc;
379
380	switch (cmd) {
381	case FS_IOC32_GETFLAGS:
382	case FS_IOC32_SETFLAGS:
383	case FS_IOC32_GETVERSION:
384	case FS_IOC32_SETVERSION:
385		rc = lower_file->f_op->compat_ioctl(lower_file, cmd, arg);
386		fsstack_copy_attr_all(file_inode(file), file_inode(lower_file));
387
388		return rc;
389	default:
390		return rc;
391	}
392}
393#endif
394
395const struct file_operations ecryptfs_dir_fops = {
396	.iterate_shared = ecryptfs_readdir,
397	.read = generic_read_dir,
398	.unlocked_ioctl = ecryptfs_unlocked_ioctl,
399#ifdef CONFIG_COMPAT
400	.compat_ioctl = ecryptfs_compat_ioctl,
401#endif
402	.open = ecryptfs_dir_open,
403	.release = ecryptfs_dir_release,
 
404	.fsync = ecryptfs_fsync,
405	.llseek = ecryptfs_dir_llseek,
 
 
406};
407
408const struct file_operations ecryptfs_main_fops = {
409	.llseek = generic_file_llseek,
410	.read_iter = ecryptfs_read_update_atime,
411	.write_iter = generic_file_write_iter,
 
 
 
412	.unlocked_ioctl = ecryptfs_unlocked_ioctl,
413#ifdef CONFIG_COMPAT
414	.compat_ioctl = ecryptfs_compat_ioctl,
415#endif
416	.mmap = ecryptfs_mmap,
417	.open = ecryptfs_open,
418	.flush = ecryptfs_flush,
419	.release = ecryptfs_release,
420	.fsync = ecryptfs_fsync,
421	.fasync = ecryptfs_fasync,
422	.splice_read = generic_file_splice_read,
423};