1237fead6SMichael Halcrow /** 2237fead6SMichael Halcrow * eCryptfs: Linux filesystem encryption layer 3237fead6SMichael Halcrow * 4237fead6SMichael Halcrow * Copyright (C) 1997-2004 Erez Zadok 5237fead6SMichael Halcrow * Copyright (C) 2001-2004 Stony Brook University 6dd2a3b7aSMichael Halcrow * Copyright (C) 2004-2007 International Business Machines Corp. 7237fead6SMichael Halcrow * Author(s): Michael A. Halcrow <mhalcrow@us.ibm.com> 8237fead6SMichael Halcrow * Michael C. Thompson <mcthomps@us.ibm.com> 9237fead6SMichael Halcrow * 10237fead6SMichael Halcrow * This program is free software; you can redistribute it and/or 11237fead6SMichael Halcrow * modify it under the terms of the GNU General Public License as 12237fead6SMichael Halcrow * published by the Free Software Foundation; either version 2 of the 13237fead6SMichael Halcrow * License, or (at your option) any later version. 14237fead6SMichael Halcrow * 15237fead6SMichael Halcrow * This program is distributed in the hope that it will be useful, but 16237fead6SMichael Halcrow * WITHOUT ANY WARRANTY; without even the implied warranty of 17237fead6SMichael Halcrow * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18237fead6SMichael Halcrow * General Public License for more details. 19237fead6SMichael Halcrow * 20237fead6SMichael Halcrow * You should have received a copy of the GNU General Public License 21237fead6SMichael Halcrow * along with this program; if not, write to the Free Software 22237fead6SMichael Halcrow * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 23237fead6SMichael Halcrow * 02111-1307, USA. 24237fead6SMichael Halcrow */ 25237fead6SMichael Halcrow 26237fead6SMichael Halcrow #include <linux/file.h> 27237fead6SMichael Halcrow #include <linux/poll.h> 28237fead6SMichael Halcrow #include <linux/mount.h> 29237fead6SMichael Halcrow #include <linux/pagemap.h> 30237fead6SMichael Halcrow #include <linux/security.h> 31237fead6SMichael Halcrow #include <linux/compat.h> 320cc72dc7SJosef "Jeff" Sipek #include <linux/fs_stack.h> 33dda6445eSJonathan Corbet #include <linux/smp_lock.h> 34237fead6SMichael Halcrow #include "ecryptfs_kernel.h" 35237fead6SMichael Halcrow 36237fead6SMichael Halcrow /** 37237fead6SMichael Halcrow * ecryptfs_read_update_atime 38237fead6SMichael Halcrow * 39237fead6SMichael Halcrow * generic_file_read updates the atime of upper layer inode. But, it 40237fead6SMichael Halcrow * doesn't give us a chance to update the atime of the lower layer 41237fead6SMichael Halcrow * inode. This function is a wrapper to generic_file_read. It 42237fead6SMichael Halcrow * updates the atime of the lower level inode if generic_file_read 43237fead6SMichael Halcrow * returns without any errors. This is to be used only for file reads. 44237fead6SMichael Halcrow * The function to be used for directory reads is ecryptfs_read. 45237fead6SMichael Halcrow */ 46237fead6SMichael Halcrow static ssize_t ecryptfs_read_update_atime(struct kiocb *iocb, 47237fead6SMichael Halcrow const struct iovec *iov, 48237fead6SMichael Halcrow unsigned long nr_segs, loff_t pos) 49237fead6SMichael Halcrow { 50237fead6SMichael Halcrow int rc; 51237fead6SMichael Halcrow struct dentry *lower_dentry; 52237fead6SMichael Halcrow struct vfsmount *lower_vfsmount; 53237fead6SMichael Halcrow struct file *file = iocb->ki_filp; 54237fead6SMichael Halcrow 55237fead6SMichael Halcrow rc = generic_file_aio_read(iocb, iov, nr_segs, pos); 56237fead6SMichael Halcrow /* 57237fead6SMichael Halcrow * Even though this is a async interface, we need to wait 58237fead6SMichael Halcrow * for IO to finish to update atime 59237fead6SMichael Halcrow */ 60237fead6SMichael Halcrow if (-EIOCBQUEUED == rc) 61237fead6SMichael Halcrow rc = wait_on_sync_kiocb(iocb); 62237fead6SMichael Halcrow if (rc >= 0) { 63bd243a4bSJosef "Jeff" Sipek lower_dentry = ecryptfs_dentry_to_lower(file->f_path.dentry); 64bd243a4bSJosef "Jeff" Sipek lower_vfsmount = ecryptfs_dentry_to_lower_mnt(file->f_path.dentry); 65237fead6SMichael Halcrow touch_atime(lower_vfsmount, lower_dentry); 66237fead6SMichael Halcrow } 67237fead6SMichael Halcrow return rc; 68237fead6SMichael Halcrow } 69237fead6SMichael Halcrow 70237fead6SMichael Halcrow struct ecryptfs_getdents_callback { 71237fead6SMichael Halcrow void *dirent; 72237fead6SMichael Halcrow struct dentry *dentry; 73237fead6SMichael Halcrow filldir_t filldir; 74237fead6SMichael Halcrow int err; 75237fead6SMichael Halcrow int filldir_called; 76237fead6SMichael Halcrow int entries_written; 77237fead6SMichael Halcrow }; 78237fead6SMichael Halcrow 79237fead6SMichael Halcrow /* Inspired by generic filldir in fs/readir.c */ 80237fead6SMichael Halcrow static int 81237fead6SMichael Halcrow ecryptfs_filldir(void *dirent, const char *name, int namelen, loff_t offset, 82237fead6SMichael Halcrow u64 ino, unsigned int d_type) 83237fead6SMichael Halcrow { 84237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat; 85237fead6SMichael Halcrow struct ecryptfs_getdents_callback *buf = 86237fead6SMichael Halcrow (struct ecryptfs_getdents_callback *)dirent; 87237fead6SMichael Halcrow int rc; 88237fead6SMichael Halcrow int decoded_length; 89237fead6SMichael Halcrow char *decoded_name; 90237fead6SMichael Halcrow 91237fead6SMichael Halcrow crypt_stat = ecryptfs_dentry_to_private(buf->dentry)->crypt_stat; 92237fead6SMichael Halcrow buf->filldir_called++; 93237fead6SMichael Halcrow decoded_length = ecryptfs_decode_filename(crypt_stat, name, namelen, 94237fead6SMichael Halcrow &decoded_name); 95237fead6SMichael Halcrow if (decoded_length < 0) { 96237fead6SMichael Halcrow rc = decoded_length; 97237fead6SMichael Halcrow goto out; 98237fead6SMichael Halcrow } 99237fead6SMichael Halcrow rc = buf->filldir(buf->dirent, decoded_name, decoded_length, offset, 100237fead6SMichael Halcrow ino, d_type); 101237fead6SMichael Halcrow kfree(decoded_name); 102237fead6SMichael Halcrow if (rc >= 0) 103237fead6SMichael Halcrow buf->entries_written++; 104237fead6SMichael Halcrow out: 105237fead6SMichael Halcrow return rc; 106237fead6SMichael Halcrow } 107237fead6SMichael Halcrow 108237fead6SMichael Halcrow /** 109237fead6SMichael Halcrow * ecryptfs_readdir 110237fead6SMichael Halcrow * @file: The ecryptfs file struct 111237fead6SMichael Halcrow * @dirent: Directory entry 112237fead6SMichael Halcrow * @filldir: The filldir callback function 113237fead6SMichael Halcrow */ 114237fead6SMichael Halcrow static int ecryptfs_readdir(struct file *file, void *dirent, filldir_t filldir) 115237fead6SMichael Halcrow { 116237fead6SMichael Halcrow int rc; 117237fead6SMichael Halcrow struct file *lower_file; 118237fead6SMichael Halcrow struct inode *inode; 119237fead6SMichael Halcrow struct ecryptfs_getdents_callback buf; 120237fead6SMichael Halcrow 121237fead6SMichael Halcrow lower_file = ecryptfs_file_to_lower(file); 122237fead6SMichael Halcrow lower_file->f_pos = file->f_pos; 123bd243a4bSJosef "Jeff" Sipek inode = file->f_path.dentry->d_inode; 124237fead6SMichael Halcrow memset(&buf, 0, sizeof(buf)); 125237fead6SMichael Halcrow buf.dirent = dirent; 126bd243a4bSJosef "Jeff" Sipek buf.dentry = file->f_path.dentry; 127237fead6SMichael Halcrow buf.filldir = filldir; 128237fead6SMichael Halcrow retry: 129237fead6SMichael Halcrow buf.filldir_called = 0; 130237fead6SMichael Halcrow buf.entries_written = 0; 131237fead6SMichael Halcrow buf.err = 0; 132237fead6SMichael Halcrow rc = vfs_readdir(lower_file, ecryptfs_filldir, (void *)&buf); 133237fead6SMichael Halcrow if (buf.err) 134237fead6SMichael Halcrow rc = buf.err; 135237fead6SMichael Halcrow if (buf.filldir_called && !buf.entries_written) 136237fead6SMichael Halcrow goto retry; 137237fead6SMichael Halcrow file->f_pos = lower_file->f_pos; 138237fead6SMichael Halcrow if (rc >= 0) 139bd243a4bSJosef "Jeff" Sipek fsstack_copy_attr_atime(inode, lower_file->f_path.dentry->d_inode); 140237fead6SMichael Halcrow return rc; 141237fead6SMichael Halcrow } 142237fead6SMichael Halcrow 143237fead6SMichael Halcrow struct kmem_cache *ecryptfs_file_info_cache; 144237fead6SMichael Halcrow 145237fead6SMichael Halcrow /** 146237fead6SMichael Halcrow * ecryptfs_open 147237fead6SMichael Halcrow * @inode: inode speciying file to open 148237fead6SMichael Halcrow * @file: Structure to return filled in 149237fead6SMichael Halcrow * 150237fead6SMichael Halcrow * Opens the file specified by inode. 151237fead6SMichael Halcrow * 152237fead6SMichael Halcrow * Returns zero on success; non-zero otherwise 153237fead6SMichael Halcrow */ 154237fead6SMichael Halcrow static int ecryptfs_open(struct inode *inode, struct file *file) 155237fead6SMichael Halcrow { 156237fead6SMichael Halcrow int rc = 0; 157237fead6SMichael Halcrow struct ecryptfs_crypt_stat *crypt_stat = NULL; 158237fead6SMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat; 159bd243a4bSJosef "Jeff" Sipek struct dentry *ecryptfs_dentry = file->f_path.dentry; 160237fead6SMichael Halcrow /* Private value of ecryptfs_dentry allocated in 161237fead6SMichael Halcrow * ecryptfs_lookup() */ 162237fead6SMichael Halcrow struct dentry *lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry); 163237fead6SMichael Halcrow struct ecryptfs_file_info *file_info; 164237fead6SMichael Halcrow 165e77a56ddSMichael Halcrow mount_crypt_stat = &ecryptfs_superblock_to_private( 166e77a56ddSMichael Halcrow ecryptfs_dentry->d_sb)->mount_crypt_stat; 167e77a56ddSMichael Halcrow if ((mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) 168e77a56ddSMichael Halcrow && ((file->f_flags & O_WRONLY) || (file->f_flags & O_RDWR) 169e77a56ddSMichael Halcrow || (file->f_flags & O_CREAT) || (file->f_flags & O_TRUNC) 170e77a56ddSMichael Halcrow || (file->f_flags & O_APPEND))) { 171e77a56ddSMichael Halcrow printk(KERN_WARNING "Mount has encrypted view enabled; " 172e77a56ddSMichael Halcrow "files may only be read\n"); 173e77a56ddSMichael Halcrow rc = -EPERM; 174e77a56ddSMichael Halcrow goto out; 175e77a56ddSMichael Halcrow } 176237fead6SMichael Halcrow /* Released in ecryptfs_release or end of function if failure */ 177c3762229SRobert P. J. Day file_info = kmem_cache_zalloc(ecryptfs_file_info_cache, GFP_KERNEL); 178237fead6SMichael Halcrow ecryptfs_set_file_private(file, file_info); 179237fead6SMichael Halcrow if (!file_info) { 180237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, 181237fead6SMichael Halcrow "Error attempting to allocate memory\n"); 182237fead6SMichael Halcrow rc = -ENOMEM; 183237fead6SMichael Halcrow goto out; 184237fead6SMichael Halcrow } 185237fead6SMichael Halcrow lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry); 186237fead6SMichael Halcrow crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat; 187237fead6SMichael Halcrow mutex_lock(&crypt_stat->cs_mutex); 188e2bd99ecSMichael Halcrow if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)) { 189237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "Setting flags for stat...\n"); 190237fead6SMichael Halcrow /* Policy code enabled in future release */ 1912ed92554SMichael Halcrow crypt_stat->flags |= (ECRYPTFS_POLICY_APPLIED 1922ed92554SMichael Halcrow | ECRYPTFS_ENCRYPTED); 193237fead6SMichael Halcrow } 194237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_mutex); 195746f1e55SMichael Halcrow if ((ecryptfs_inode_to_private(inode)->lower_file->f_flags & O_RDONLY) 196746f1e55SMichael Halcrow && !(file->f_flags & O_RDONLY)) { 197746f1e55SMichael Halcrow rc = -EPERM; 198746f1e55SMichael Halcrow printk(KERN_WARNING "%s: Lower persistent file is RO; eCryptfs " 199746f1e55SMichael Halcrow "file must hence be opened RO\n", __func__); 200746f1e55SMichael Halcrow goto out; 201746f1e55SMichael Halcrow } 202*72b55fffSMichael Halcrow if (!ecryptfs_inode_to_private(inode)->lower_file) { 203*72b55fffSMichael Halcrow BUG_ON(!(crypt_stat->flags & ECRYPTFS_DELAY_PERSISTENT)); 204*72b55fffSMichael Halcrow mutex_lock(&crypt_stat->cs_mutex); 205*72b55fffSMichael Halcrow crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); 206*72b55fffSMichael Halcrow mutex_unlock(&crypt_stat->cs_mutex); 207*72b55fffSMichael Halcrow rc = ecryptfs_init_persistent_file(ecryptfs_dentry); 208*72b55fffSMichael Halcrow if (rc) { 209*72b55fffSMichael Halcrow printk(KERN_ERR "%s: Error attempting to initialize " 210*72b55fffSMichael Halcrow "the persistent file for the dentry with name " 211*72b55fffSMichael Halcrow "[%s]; rc = [%d]\n", __func__, 212*72b55fffSMichael Halcrow ecryptfs_dentry->d_name.name, rc); 213*72b55fffSMichael Halcrow goto out; 214*72b55fffSMichael Halcrow } 215*72b55fffSMichael Halcrow } 2162ed92554SMichael Halcrow ecryptfs_set_file_lower( 2172ed92554SMichael Halcrow file, ecryptfs_inode_to_private(inode)->lower_file); 218237fead6SMichael Halcrow if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) { 219237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "This is a directory\n"); 2202f9b12a3SMichael Halcrow mutex_lock(&crypt_stat->cs_mutex); 221e2bd99ecSMichael Halcrow crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); 2222f9b12a3SMichael Halcrow mutex_unlock(&crypt_stat->cs_mutex); 223237fead6SMichael Halcrow rc = 0; 224237fead6SMichael Halcrow goto out; 225237fead6SMichael Halcrow } 226237fead6SMichael Halcrow mutex_lock(&crypt_stat->cs_mutex); 227e2bd99ecSMichael Halcrow if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED) 228e2bd99ecSMichael Halcrow || !(crypt_stat->flags & ECRYPTFS_KEY_VALID)) { 229d7cdc5feSMichael Halcrow rc = ecryptfs_read_metadata(ecryptfs_dentry); 230237fead6SMichael Halcrow if (rc) { 231237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, 232237fead6SMichael Halcrow "Valid headers not found\n"); 233237fead6SMichael Halcrow if (!(mount_crypt_stat->flags 234237fead6SMichael Halcrow & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) { 235237fead6SMichael Halcrow rc = -EIO; 23625bd8174SMichael Halcrow printk(KERN_WARNING "Either the lower file " 237237fead6SMichael Halcrow "is not in a valid eCryptfs format, " 23825bd8174SMichael Halcrow "or the key could not be retrieved. " 23925bd8174SMichael Halcrow "Plaintext passthrough mode is not " 240237fead6SMichael Halcrow "enabled; returning -EIO\n"); 241237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_mutex); 2422ed92554SMichael Halcrow goto out_free; 243237fead6SMichael Halcrow } 244237fead6SMichael Halcrow rc = 0; 245e2bd99ecSMichael Halcrow crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); 246237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_mutex); 247237fead6SMichael Halcrow goto out; 248237fead6SMichael Halcrow } 249237fead6SMichael Halcrow } 250237fead6SMichael Halcrow mutex_unlock(&crypt_stat->cs_mutex); 251237fead6SMichael Halcrow ecryptfs_printk(KERN_DEBUG, "inode w/ addr = [0x%p], i_ino = [0x%.16x] " 252237fead6SMichael Halcrow "size: [0x%.16x]\n", inode, inode->i_ino, 253237fead6SMichael Halcrow i_size_read(inode)); 254237fead6SMichael Halcrow goto out; 2552ed92554SMichael Halcrow out_free: 256237fead6SMichael Halcrow kmem_cache_free(ecryptfs_file_info_cache, 257237fead6SMichael Halcrow ecryptfs_file_to_private(file)); 258237fead6SMichael Halcrow out: 259237fead6SMichael Halcrow return rc; 260237fead6SMichael Halcrow } 261237fead6SMichael Halcrow 262237fead6SMichael Halcrow static int ecryptfs_flush(struct file *file, fl_owner_t td) 263237fead6SMichael Halcrow { 264237fead6SMichael Halcrow int rc = 0; 265237fead6SMichael Halcrow struct file *lower_file = NULL; 266237fead6SMichael Halcrow 267237fead6SMichael Halcrow lower_file = ecryptfs_file_to_lower(file); 268237fead6SMichael Halcrow if (lower_file->f_op && lower_file->f_op->flush) 269237fead6SMichael Halcrow rc = lower_file->f_op->flush(lower_file, td); 270237fead6SMichael Halcrow return rc; 271237fead6SMichael Halcrow } 272237fead6SMichael Halcrow 273237fead6SMichael Halcrow static int ecryptfs_release(struct inode *inode, struct file *file) 274237fead6SMichael Halcrow { 2752ed92554SMichael Halcrow kmem_cache_free(ecryptfs_file_info_cache, 2762ed92554SMichael Halcrow ecryptfs_file_to_private(file)); 2772ed92554SMichael Halcrow return 0; 278237fead6SMichael Halcrow } 279237fead6SMichael Halcrow 280237fead6SMichael Halcrow static int 281237fead6SMichael Halcrow ecryptfs_fsync(struct file *file, struct dentry *dentry, int datasync) 282237fead6SMichael Halcrow { 283237fead6SMichael Halcrow struct file *lower_file = ecryptfs_file_to_lower(file); 284237fead6SMichael Halcrow struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry); 285237fead6SMichael Halcrow struct inode *lower_inode = lower_dentry->d_inode; 286237fead6SMichael Halcrow int rc = -EINVAL; 287237fead6SMichael Halcrow 288237fead6SMichael Halcrow if (lower_inode->i_fop->fsync) { 289237fead6SMichael Halcrow mutex_lock(&lower_inode->i_mutex); 290237fead6SMichael Halcrow rc = lower_inode->i_fop->fsync(lower_file, lower_dentry, 291237fead6SMichael Halcrow datasync); 292237fead6SMichael Halcrow mutex_unlock(&lower_inode->i_mutex); 293237fead6SMichael Halcrow } 294237fead6SMichael Halcrow return rc; 295237fead6SMichael Halcrow } 296237fead6SMichael Halcrow 297237fead6SMichael Halcrow static int ecryptfs_fasync(int fd, struct file *file, int flag) 298237fead6SMichael Halcrow { 299237fead6SMichael Halcrow int rc = 0; 300237fead6SMichael Halcrow struct file *lower_file = NULL; 301237fead6SMichael Halcrow 302dda6445eSJonathan Corbet lock_kernel(); 303237fead6SMichael Halcrow lower_file = ecryptfs_file_to_lower(file); 304237fead6SMichael Halcrow if (lower_file->f_op && lower_file->f_op->fasync) 305237fead6SMichael Halcrow rc = lower_file->f_op->fasync(fd, lower_file, flag); 306dda6445eSJonathan Corbet unlock_kernel(); 307237fead6SMichael Halcrow return rc; 308237fead6SMichael Halcrow } 309237fead6SMichael Halcrow 310237fead6SMichael Halcrow static int ecryptfs_ioctl(struct inode *inode, struct file *file, 311237fead6SMichael Halcrow unsigned int cmd, unsigned long arg); 312237fead6SMichael Halcrow 313237fead6SMichael Halcrow const struct file_operations ecryptfs_dir_fops = { 314237fead6SMichael Halcrow .readdir = ecryptfs_readdir, 315237fead6SMichael Halcrow .ioctl = ecryptfs_ioctl, 316237fead6SMichael Halcrow .mmap = generic_file_mmap, 317237fead6SMichael Halcrow .open = ecryptfs_open, 318237fead6SMichael Halcrow .flush = ecryptfs_flush, 319237fead6SMichael Halcrow .release = ecryptfs_release, 320237fead6SMichael Halcrow .fsync = ecryptfs_fsync, 321237fead6SMichael Halcrow .fasync = ecryptfs_fasync, 322e9f6a99cSMichael Halcrow .splice_read = generic_file_splice_read, 323237fead6SMichael Halcrow }; 324237fead6SMichael Halcrow 325237fead6SMichael Halcrow const struct file_operations ecryptfs_main_fops = { 32653a2731fSMichael Halcrow .llseek = generic_file_llseek, 327237fead6SMichael Halcrow .read = do_sync_read, 328237fead6SMichael Halcrow .aio_read = ecryptfs_read_update_atime, 329237fead6SMichael Halcrow .write = do_sync_write, 330237fead6SMichael Halcrow .aio_write = generic_file_aio_write, 331237fead6SMichael Halcrow .readdir = ecryptfs_readdir, 332237fead6SMichael Halcrow .ioctl = ecryptfs_ioctl, 333237fead6SMichael Halcrow .mmap = generic_file_mmap, 334237fead6SMichael Halcrow .open = ecryptfs_open, 335237fead6SMichael Halcrow .flush = ecryptfs_flush, 336237fead6SMichael Halcrow .release = ecryptfs_release, 337237fead6SMichael Halcrow .fsync = ecryptfs_fsync, 338237fead6SMichael Halcrow .fasync = ecryptfs_fasync, 339e9f6a99cSMichael Halcrow .splice_read = generic_file_splice_read, 340237fead6SMichael Halcrow }; 341237fead6SMichael Halcrow 342237fead6SMichael Halcrow static int 343237fead6SMichael Halcrow ecryptfs_ioctl(struct inode *inode, struct file *file, unsigned int cmd, 344237fead6SMichael Halcrow unsigned long arg) 345237fead6SMichael Halcrow { 346237fead6SMichael Halcrow int rc = 0; 347237fead6SMichael Halcrow struct file *lower_file = NULL; 348237fead6SMichael Halcrow 349237fead6SMichael Halcrow if (ecryptfs_file_to_private(file)) 350237fead6SMichael Halcrow lower_file = ecryptfs_file_to_lower(file); 351237fead6SMichael Halcrow if (lower_file && lower_file->f_op && lower_file->f_op->ioctl) 352237fead6SMichael Halcrow rc = lower_file->f_op->ioctl(ecryptfs_inode_to_lower(inode), 353237fead6SMichael Halcrow lower_file, cmd, arg); 354237fead6SMichael Halcrow else 355237fead6SMichael Halcrow rc = -ENOTTY; 356237fead6SMichael Halcrow return rc; 357237fead6SMichael Halcrow } 358