Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1 | /** |
| 2 | * eCryptfs: Linux filesystem encryption layer |
| 3 | * |
| 4 | * Copyright (C) 1997-2004 Erez Zadok |
| 5 | * Copyright (C) 2001-2004 Stony Brook University |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 6 | * Copyright (C) 2004-2007 International Business Machines Corp. |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 7 | * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com> |
| 8 | * Michael C. Thompsion <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/vmalloc.h> |
| 28 | #include <linux/pagemap.h> |
| 29 | #include <linux/dcache.h> |
| 30 | #include <linux/namei.h> |
| 31 | #include <linux/mount.h> |
| 32 | #include <linux/crypto.h> |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 33 | #include <linux/fs_stack.h> |
Harvey Harrison | 0a688ad | 2008-07-23 21:30:07 -0700 | [diff] [blame] | 34 | #include <asm/unaligned.h> |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 35 | #include "ecryptfs_kernel.h" |
| 36 | |
| 37 | static struct dentry *lock_parent(struct dentry *dentry) |
| 38 | { |
| 39 | struct dentry *dir; |
| 40 | |
Miklos Szeredi | 8dc4e37 | 2008-05-12 14:02:04 -0700 | [diff] [blame] | 41 | dir = dget_parent(dentry); |
Peter Zijlstra | 908e0a8 | 2007-03-07 20:41:30 -0800 | [diff] [blame] | 42 | mutex_lock_nested(&(dir->d_inode->i_mutex), I_MUTEX_PARENT); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 43 | return dir; |
| 44 | } |
| 45 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 46 | static void unlock_dir(struct dentry *dir) |
| 47 | { |
| 48 | mutex_unlock(&dir->d_inode->i_mutex); |
| 49 | dput(dir); |
| 50 | } |
| 51 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 52 | /** |
| 53 | * ecryptfs_create_underlying_file |
| 54 | * @lower_dir_inode: inode of the parent in the lower fs of the new file |
| 55 | * @lower_dentry: New file's dentry in the lower fs |
| 56 | * @ecryptfs_dentry: New file's dentry in ecryptfs |
| 57 | * @mode: The mode of the new file |
| 58 | * @nd: nameidata of ecryptfs' parent's dentry & vfsmount |
| 59 | * |
| 60 | * Creates the file in the lower file system. |
| 61 | * |
| 62 | * Returns zero on success; non-zero on error condition |
| 63 | */ |
| 64 | static int |
| 65 | ecryptfs_create_underlying_file(struct inode *lower_dir_inode, |
| 66 | struct dentry *dentry, int mode, |
| 67 | struct nameidata *nd) |
| 68 | { |
| 69 | struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 70 | struct vfsmount *lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry); |
| 71 | struct dentry *dentry_save; |
| 72 | struct vfsmount *vfsmount_save; |
| 73 | int rc; |
| 74 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 75 | dentry_save = nd->path.dentry; |
| 76 | vfsmount_save = nd->path.mnt; |
| 77 | nd->path.dentry = lower_dentry; |
| 78 | nd->path.mnt = lower_mnt; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 79 | rc = vfs_create(lower_dir_inode, lower_dentry, mode, nd); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 80 | nd->path.dentry = dentry_save; |
| 81 | nd->path.mnt = vfsmount_save; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 82 | return rc; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * ecryptfs_do_create |
| 87 | * @directory_inode: inode of the new file's dentry's parent in ecryptfs |
| 88 | * @ecryptfs_dentry: New file's dentry in ecryptfs |
| 89 | * @mode: The mode of the new file |
| 90 | * @nd: nameidata of ecryptfs' parent's dentry & vfsmount |
| 91 | * |
| 92 | * Creates the underlying file and the eCryptfs inode which will link to |
| 93 | * it. It will also update the eCryptfs directory inode to mimic the |
| 94 | * stat of the lower directory inode. |
| 95 | * |
| 96 | * Returns zero on success; non-zero on error condition |
| 97 | */ |
| 98 | static int |
| 99 | ecryptfs_do_create(struct inode *directory_inode, |
| 100 | struct dentry *ecryptfs_dentry, int mode, |
| 101 | struct nameidata *nd) |
| 102 | { |
| 103 | int rc; |
| 104 | struct dentry *lower_dentry; |
| 105 | struct dentry *lower_dir_dentry; |
| 106 | |
| 107 | lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry); |
| 108 | lower_dir_dentry = lock_parent(lower_dentry); |
Hirofumi Nakagawa | 801678c | 2008-04-29 01:03:09 -0700 | [diff] [blame] | 109 | if (IS_ERR(lower_dir_dentry)) { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 110 | ecryptfs_printk(KERN_ERR, "Error locking directory of " |
| 111 | "dentry\n"); |
| 112 | rc = PTR_ERR(lower_dir_dentry); |
| 113 | goto out; |
| 114 | } |
| 115 | rc = ecryptfs_create_underlying_file(lower_dir_dentry->d_inode, |
| 116 | ecryptfs_dentry, mode, nd); |
Michael Halcrow | 4981e08 | 2007-10-16 01:28:09 -0700 | [diff] [blame] | 117 | if (rc) { |
Michael Halcrow | caeeeec | 2008-01-08 15:33:02 -0800 | [diff] [blame] | 118 | printk(KERN_ERR "%s: Failure to create dentry in lower fs; " |
Harvey Harrison | 18d1dbf | 2008-04-29 00:59:48 -0700 | [diff] [blame] | 119 | "rc = [%d]\n", __func__, rc); |
Michael Halcrow | caeeeec | 2008-01-08 15:33:02 -0800 | [diff] [blame] | 120 | goto out_lock; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 121 | } |
| 122 | rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry, |
| 123 | directory_inode->i_sb, 0); |
| 124 | if (rc) { |
| 125 | ecryptfs_printk(KERN_ERR, "Failure in ecryptfs_interpose\n"); |
| 126 | goto out_lock; |
| 127 | } |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 128 | fsstack_copy_attr_times(directory_inode, lower_dir_dentry->d_inode); |
| 129 | fsstack_copy_inode_size(directory_inode, lower_dir_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 130 | out_lock: |
| 131 | unlock_dir(lower_dir_dentry); |
| 132 | out: |
| 133 | return rc; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * grow_file |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 138 | * @ecryptfs_dentry: the eCryptfs dentry |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 139 | * |
| 140 | * This is the code which will grow the file to its correct size. |
| 141 | */ |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 142 | static int grow_file(struct dentry *ecryptfs_dentry) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 143 | { |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 144 | struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 145 | struct file fake_file; |
| 146 | struct ecryptfs_file_info tmp_file_info; |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 147 | char zero_virt[] = { 0x00 }; |
| 148 | int rc = 0; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 149 | |
| 150 | memset(&fake_file, 0, sizeof(fake_file)); |
Josef "Jeff" Sipek | bd243a4 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 151 | fake_file.f_path.dentry = ecryptfs_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 152 | memset(&tmp_file_info, 0, sizeof(tmp_file_info)); |
| 153 | ecryptfs_set_file_private(&fake_file, &tmp_file_info); |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 154 | ecryptfs_set_file_lower( |
| 155 | &fake_file, |
| 156 | ecryptfs_inode_to_private(ecryptfs_inode)->lower_file); |
| 157 | rc = ecryptfs_write(&fake_file, zero_virt, 0, 1); |
| 158 | i_size_write(ecryptfs_inode, 0); |
| 159 | rc = ecryptfs_write_inode_size_to_metadata(ecryptfs_inode); |
| 160 | ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat.flags |= |
| 161 | ECRYPTFS_NEW_FILE; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 162 | return rc; |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * ecryptfs_initialize_file |
| 167 | * |
| 168 | * Cause the file to be changed from a basic empty file to an ecryptfs |
| 169 | * file with a header and first data page. |
| 170 | * |
| 171 | * Returns zero on success |
| 172 | */ |
| 173 | static int ecryptfs_initialize_file(struct dentry *ecryptfs_dentry) |
| 174 | { |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 175 | struct ecryptfs_crypt_stat *crypt_stat = |
| 176 | &ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 177 | int rc = 0; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 178 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 179 | if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) { |
| 180 | ecryptfs_printk(KERN_DEBUG, "This is a directory\n"); |
Michael Halcrow | e2bd99e | 2007-02-12 00:53:49 -0800 | [diff] [blame] | 181 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 182 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 183 | } |
Michael Halcrow | e2bd99e | 2007-02-12 00:53:49 -0800 | [diff] [blame] | 184 | crypt_stat->flags |= ECRYPTFS_NEW_FILE; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 185 | ecryptfs_printk(KERN_DEBUG, "Initializing crypto context\n"); |
| 186 | rc = ecryptfs_new_file_context(ecryptfs_dentry); |
| 187 | if (rc) { |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 188 | ecryptfs_printk(KERN_ERR, "Error creating new file " |
| 189 | "context; rc = [%d]\n", rc); |
| 190 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 191 | } |
Michael Halcrow | 391b52f | 2008-07-23 21:30:08 -0700 | [diff] [blame] | 192 | if (!ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->lower_file) { |
| 193 | rc = ecryptfs_init_persistent_file(ecryptfs_dentry); |
| 194 | if (rc) { |
| 195 | printk(KERN_ERR "%s: Error attempting to initialize " |
| 196 | "the persistent file for the dentry with name " |
| 197 | "[%s]; rc = [%d]\n", __func__, |
| 198 | ecryptfs_dentry->d_name.name, rc); |
| 199 | goto out; |
| 200 | } |
| 201 | } |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 202 | rc = ecryptfs_write_metadata(ecryptfs_dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 203 | if (rc) { |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 204 | printk(KERN_ERR "Error writing headers; rc = [%d]\n", rc); |
| 205 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 206 | } |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 207 | rc = grow_file(ecryptfs_dentry); |
Michael Halcrow | 5dda699 | 2007-10-16 01:28:06 -0700 | [diff] [blame] | 208 | if (rc) |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 209 | printk(KERN_ERR "Error growing file; rc = [%d]\n", rc); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 210 | out: |
| 211 | return rc; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * ecryptfs_create |
| 216 | * @dir: The inode of the directory in which to create the file. |
| 217 | * @dentry: The eCryptfs dentry |
| 218 | * @mode: The mode of the new file. |
| 219 | * @nd: nameidata |
| 220 | * |
| 221 | * Creates a new file. |
| 222 | * |
| 223 | * Returns zero on success; non-zero on error condition |
| 224 | */ |
| 225 | static int |
| 226 | ecryptfs_create(struct inode *directory_inode, struct dentry *ecryptfs_dentry, |
| 227 | int mode, struct nameidata *nd) |
| 228 | { |
| 229 | int rc; |
| 230 | |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 231 | /* ecryptfs_do_create() calls ecryptfs_interpose() */ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 232 | rc = ecryptfs_do_create(directory_inode, ecryptfs_dentry, mode, nd); |
| 233 | if (unlikely(rc)) { |
| 234 | ecryptfs_printk(KERN_WARNING, "Failed to create file in" |
| 235 | "lower filesystem\n"); |
| 236 | goto out; |
| 237 | } |
| 238 | /* At this point, a file exists on "disk"; we need to make sure |
| 239 | * that this on disk file is prepared to be an ecryptfs file */ |
| 240 | rc = ecryptfs_initialize_file(ecryptfs_dentry); |
| 241 | out: |
| 242 | return rc; |
| 243 | } |
| 244 | |
| 245 | /** |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 246 | * ecryptfs_lookup_and_interpose_lower - Perform a lookup |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 247 | */ |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 248 | int ecryptfs_lookup_and_interpose_lower(struct dentry *ecryptfs_dentry, |
| 249 | struct dentry *lower_dentry, |
| 250 | struct ecryptfs_crypt_stat *crypt_stat, |
| 251 | struct inode *ecryptfs_dir_inode, |
| 252 | struct nameidata *ecryptfs_nd) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 253 | { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 254 | struct dentry *lower_dir_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 255 | struct vfsmount *lower_mnt; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 256 | struct inode *lower_inode; |
Michael Halcrow | e77a56d | 2007-02-12 00:53:47 -0800 | [diff] [blame] | 257 | struct ecryptfs_mount_crypt_stat *mount_crypt_stat; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 258 | char *page_virt = NULL; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 259 | u64 file_size; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 260 | int rc = 0; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 261 | |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 262 | lower_dir_dentry = lower_dentry->d_parent; |
| 263 | lower_mnt = mntget(ecryptfs_dentry_to_lower_mnt( |
| 264 | ecryptfs_dentry->d_parent)); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 265 | lower_inode = lower_dentry->d_inode; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 266 | fsstack_copy_attr_atime(ecryptfs_dir_inode, lower_dir_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 267 | BUG_ON(!atomic_read(&lower_dentry->d_count)); |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 268 | ecryptfs_set_dentry_private(ecryptfs_dentry, |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 269 | kmem_cache_alloc(ecryptfs_dentry_info_cache, |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 270 | GFP_KERNEL)); |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 271 | if (!ecryptfs_dentry_to_private(ecryptfs_dentry)) { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 272 | rc = -ENOMEM; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 273 | printk(KERN_ERR "%s: Out of memory whilst attempting " |
| 274 | "to allocate ecryptfs_dentry_info struct\n", |
| 275 | __func__); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 276 | goto out_dput; |
| 277 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 278 | ecryptfs_set_dentry_lower(ecryptfs_dentry, lower_dentry); |
| 279 | ecryptfs_set_dentry_lower_mnt(ecryptfs_dentry, lower_mnt); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 280 | if (!lower_dentry->d_inode) { |
| 281 | /* We want to add because we couldn't find in lower */ |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 282 | d_add(ecryptfs_dentry, NULL); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 283 | goto out; |
| 284 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 285 | rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry, |
| 286 | ecryptfs_dir_inode->i_sb, 1); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 287 | if (rc) { |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 288 | printk(KERN_ERR "%s: Error interposing; rc = [%d]\n", |
| 289 | __func__, rc); |
Michael Halcrow | 391b52f | 2008-07-23 21:30:08 -0700 | [diff] [blame] | 290 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 291 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 292 | if (S_ISDIR(lower_inode->i_mode)) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 293 | goto out; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 294 | if (S_ISLNK(lower_inode->i_mode)) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 295 | goto out; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 296 | if (special_file(lower_inode->i_mode)) |
Ryusuke Konishi | 202a21d | 2007-08-10 13:00:51 -0700 | [diff] [blame] | 297 | goto out; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 298 | if (!ecryptfs_nd) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 299 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 300 | /* Released in this function */ |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 301 | page_virt = kmem_cache_zalloc(ecryptfs_header_cache_2, GFP_USER); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 302 | if (!page_virt) { |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 303 | printk(KERN_ERR "%s: Cannot kmem_cache_zalloc() a page\n", |
| 304 | __func__); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 305 | rc = -ENOMEM; |
Michael Halcrow | 391b52f | 2008-07-23 21:30:08 -0700 | [diff] [blame] | 306 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 307 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 308 | if (!ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->lower_file) { |
| 309 | rc = ecryptfs_init_persistent_file(ecryptfs_dentry); |
Michael Halcrow | 391b52f | 2008-07-23 21:30:08 -0700 | [diff] [blame] | 310 | if (rc) { |
| 311 | printk(KERN_ERR "%s: Error attempting to initialize " |
| 312 | "the persistent file for the dentry with name " |
| 313 | "[%s]; rc = [%d]\n", __func__, |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 314 | ecryptfs_dentry->d_name.name, rc); |
| 315 | goto out_free_kmem; |
Michael Halcrow | 391b52f | 2008-07-23 21:30:08 -0700 | [diff] [blame] | 316 | } |
| 317 | } |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 318 | rc = ecryptfs_read_and_validate_header_region(page_virt, |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 319 | ecryptfs_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 320 | if (rc) { |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 321 | rc = ecryptfs_read_and_validate_xattr_region(page_virt, |
| 322 | ecryptfs_dentry); |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 323 | if (rc) { |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 324 | rc = 0; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 325 | goto out_free_kmem; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 326 | } |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 327 | crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 328 | } |
Michael Halcrow | e77a56d | 2007-02-12 00:53:47 -0800 | [diff] [blame] | 329 | mount_crypt_stat = &ecryptfs_superblock_to_private( |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 330 | ecryptfs_dentry->d_sb)->mount_crypt_stat; |
Michael Halcrow | e77a56d | 2007-02-12 00:53:47 -0800 | [diff] [blame] | 331 | if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) { |
| 332 | if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) |
Michael Halcrow | cc11bef | 2008-02-06 01:38:32 -0800 | [diff] [blame] | 333 | file_size = (crypt_stat->num_header_bytes_at_front |
Michael Halcrow | e77a56d | 2007-02-12 00:53:47 -0800 | [diff] [blame] | 334 | + i_size_read(lower_dentry->d_inode)); |
| 335 | else |
| 336 | file_size = i_size_read(lower_dentry->d_inode); |
| 337 | } else { |
Harvey Harrison | 0a688ad | 2008-07-23 21:30:07 -0700 | [diff] [blame] | 338 | file_size = get_unaligned_be64(page_virt); |
Michael Halcrow | e77a56d | 2007-02-12 00:53:47 -0800 | [diff] [blame] | 339 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 340 | i_size_write(ecryptfs_dentry->d_inode, (loff_t)file_size); |
| 341 | out_free_kmem: |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 342 | kmem_cache_free(ecryptfs_header_cache_2, page_virt); |
| 343 | goto out; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 344 | out_dput: |
| 345 | dput(lower_dentry); |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 346 | d_drop(ecryptfs_dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 347 | out: |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 348 | return rc; |
| 349 | } |
| 350 | |
| 351 | /** |
| 352 | * ecryptfs_lookup |
| 353 | * @ecryptfs_dir_inode: The eCryptfs directory inode |
| 354 | * @ecryptfs_dentry: The eCryptfs dentry that we are looking up |
| 355 | * @ecryptfs_nd: nameidata; may be NULL |
| 356 | * |
| 357 | * Find a file on disk. If the file does not exist, then we'll add it to the |
| 358 | * dentry cache and continue on to read it from the disk. |
| 359 | */ |
| 360 | static struct dentry *ecryptfs_lookup(struct inode *ecryptfs_dir_inode, |
| 361 | struct dentry *ecryptfs_dentry, |
| 362 | struct nameidata *ecryptfs_nd) |
| 363 | { |
| 364 | char *encrypted_and_encoded_name = NULL; |
| 365 | int encrypted_and_encoded_name_size; |
| 366 | struct ecryptfs_crypt_stat *crypt_stat = NULL; |
| 367 | struct ecryptfs_mount_crypt_stat *mount_crypt_stat = NULL; |
| 368 | struct ecryptfs_inode_info *inode_info; |
| 369 | struct dentry *lower_dir_dentry, *lower_dentry; |
| 370 | int rc = 0; |
| 371 | |
| 372 | ecryptfs_dentry->d_op = &ecryptfs_dops; |
| 373 | if ((ecryptfs_dentry->d_name.len == 1 |
| 374 | && !strcmp(ecryptfs_dentry->d_name.name, ".")) |
| 375 | || (ecryptfs_dentry->d_name.len == 2 |
| 376 | && !strcmp(ecryptfs_dentry->d_name.name, ".."))) { |
| 377 | goto out_d_drop; |
| 378 | } |
| 379 | lower_dir_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry->d_parent); |
| 380 | lower_dentry = lookup_one_len(ecryptfs_dentry->d_name.name, |
| 381 | lower_dir_dentry, |
| 382 | ecryptfs_dentry->d_name.len); |
| 383 | if (IS_ERR(lower_dentry)) { |
| 384 | rc = PTR_ERR(lower_dentry); |
| 385 | printk(KERN_ERR "%s: lookup_one_len() returned [%d] on " |
| 386 | "lower_dentry = [%s]\n", __func__, rc, |
| 387 | ecryptfs_dentry->d_name.name); |
| 388 | goto out_d_drop; |
| 389 | } |
| 390 | if (lower_dentry->d_inode) |
| 391 | goto lookup_and_interpose; |
| 392 | inode_info = ecryptfs_inode_to_private(ecryptfs_dentry->d_inode); |
| 393 | if (inode_info) { |
| 394 | crypt_stat = &inode_info->crypt_stat; |
| 395 | /* TODO: lock for crypt_stat comparison */ |
| 396 | if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)) |
| 397 | ecryptfs_set_default_sizes(crypt_stat); |
| 398 | } |
| 399 | if (crypt_stat) |
| 400 | mount_crypt_stat = crypt_stat->mount_crypt_stat; |
| 401 | else |
| 402 | mount_crypt_stat = &ecryptfs_superblock_to_private( |
| 403 | ecryptfs_dentry->d_sb)->mount_crypt_stat; |
| 404 | if (!(crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCRYPT_FILENAMES)) |
| 405 | && !(mount_crypt_stat && (mount_crypt_stat->flags |
| 406 | & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES))) |
| 407 | goto lookup_and_interpose; |
| 408 | dput(lower_dentry); |
| 409 | rc = ecryptfs_encrypt_and_encode_filename( |
| 410 | &encrypted_and_encoded_name, &encrypted_and_encoded_name_size, |
| 411 | crypt_stat, mount_crypt_stat, ecryptfs_dentry->d_name.name, |
| 412 | ecryptfs_dentry->d_name.len); |
| 413 | if (rc) { |
| 414 | printk(KERN_ERR "%s: Error attempting to encrypt and encode " |
| 415 | "filename; rc = [%d]\n", __func__, rc); |
| 416 | goto out_d_drop; |
| 417 | } |
| 418 | lower_dentry = lookup_one_len(encrypted_and_encoded_name, |
| 419 | lower_dir_dentry, |
| 420 | encrypted_and_encoded_name_size - 1); |
| 421 | if (IS_ERR(lower_dentry)) { |
| 422 | rc = PTR_ERR(lower_dentry); |
| 423 | printk(KERN_ERR "%s: lookup_one_len() returned [%d] on " |
| 424 | "lower_dentry = [%s]\n", __func__, rc, |
| 425 | encrypted_and_encoded_name); |
| 426 | goto out_d_drop; |
| 427 | } |
| 428 | lookup_and_interpose: |
| 429 | rc = ecryptfs_lookup_and_interpose_lower(ecryptfs_dentry, lower_dentry, |
| 430 | crypt_stat, ecryptfs_dir_inode, |
| 431 | ecryptfs_nd); |
| 432 | goto out; |
| 433 | out_d_drop: |
| 434 | d_drop(ecryptfs_dentry); |
| 435 | out: |
| 436 | kfree(encrypted_and_encoded_name); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 437 | return ERR_PTR(rc); |
| 438 | } |
| 439 | |
| 440 | static int ecryptfs_link(struct dentry *old_dentry, struct inode *dir, |
| 441 | struct dentry *new_dentry) |
| 442 | { |
| 443 | struct dentry *lower_old_dentry; |
| 444 | struct dentry *lower_new_dentry; |
| 445 | struct dentry *lower_dir_dentry; |
| 446 | u64 file_size_save; |
| 447 | int rc; |
| 448 | |
| 449 | file_size_save = i_size_read(old_dentry->d_inode); |
| 450 | lower_old_dentry = ecryptfs_dentry_to_lower(old_dentry); |
| 451 | lower_new_dentry = ecryptfs_dentry_to_lower(new_dentry); |
| 452 | dget(lower_old_dentry); |
| 453 | dget(lower_new_dentry); |
| 454 | lower_dir_dentry = lock_parent(lower_new_dentry); |
| 455 | rc = vfs_link(lower_old_dentry, lower_dir_dentry->d_inode, |
| 456 | lower_new_dentry); |
| 457 | if (rc || !lower_new_dentry->d_inode) |
| 458 | goto out_lock; |
| 459 | rc = ecryptfs_interpose(lower_new_dentry, new_dentry, dir->i_sb, 0); |
| 460 | if (rc) |
| 461 | goto out_lock; |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 462 | fsstack_copy_attr_times(dir, lower_new_dentry->d_inode); |
| 463 | fsstack_copy_inode_size(dir, lower_new_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 464 | old_dentry->d_inode->i_nlink = |
| 465 | ecryptfs_inode_to_lower(old_dentry->d_inode)->i_nlink; |
| 466 | i_size_write(new_dentry->d_inode, file_size_save); |
| 467 | out_lock: |
| 468 | unlock_dir(lower_dir_dentry); |
| 469 | dput(lower_new_dentry); |
| 470 | dput(lower_old_dentry); |
Michael Halcrow | ae56fb1 | 2006-11-16 01:19:30 -0800 | [diff] [blame] | 471 | d_drop(lower_old_dentry); |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 472 | d_drop(new_dentry); |
| 473 | d_drop(old_dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 474 | return rc; |
| 475 | } |
| 476 | |
| 477 | static int ecryptfs_unlink(struct inode *dir, struct dentry *dentry) |
| 478 | { |
| 479 | int rc = 0; |
| 480 | struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 481 | struct inode *lower_dir_inode = ecryptfs_inode_to_lower(dir); |
Miklos Szeredi | 8dc4e37 | 2008-05-12 14:02:04 -0700 | [diff] [blame] | 482 | struct dentry *lower_dir_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 483 | |
Miklos Szeredi | 8dc4e37 | 2008-05-12 14:02:04 -0700 | [diff] [blame] | 484 | lower_dir_dentry = lock_parent(lower_dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 485 | rc = vfs_unlink(lower_dir_inode, lower_dentry); |
| 486 | if (rc) { |
Michael Halcrow | ae56fb1 | 2006-11-16 01:19:30 -0800 | [diff] [blame] | 487 | printk(KERN_ERR "Error in vfs_unlink; rc = [%d]\n", rc); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 488 | goto out_unlock; |
| 489 | } |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 490 | fsstack_copy_attr_times(dir, lower_dir_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 491 | dentry->d_inode->i_nlink = |
| 492 | ecryptfs_inode_to_lower(dentry->d_inode)->i_nlink; |
| 493 | dentry->d_inode->i_ctime = dir->i_ctime; |
Michael Halcrow | caeeeec | 2008-01-08 15:33:02 -0800 | [diff] [blame] | 494 | d_drop(dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 495 | out_unlock: |
Miklos Szeredi | 8dc4e37 | 2008-05-12 14:02:04 -0700 | [diff] [blame] | 496 | unlock_dir(lower_dir_dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 497 | return rc; |
| 498 | } |
| 499 | |
| 500 | static int ecryptfs_symlink(struct inode *dir, struct dentry *dentry, |
| 501 | const char *symname) |
| 502 | { |
| 503 | int rc; |
| 504 | struct dentry *lower_dentry; |
| 505 | struct dentry *lower_dir_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 506 | char *encoded_symname; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 507 | size_t encoded_symlen; |
| 508 | struct ecryptfs_mount_crypt_stat *mount_crypt_stat = NULL; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 509 | |
| 510 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 511 | dget(lower_dentry); |
| 512 | lower_dir_dentry = lock_parent(lower_dentry); |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 513 | mount_crypt_stat = &ecryptfs_superblock_to_private( |
| 514 | dir->i_sb)->mount_crypt_stat; |
| 515 | rc = ecryptfs_encrypt_and_encode_filename(&encoded_symname, |
| 516 | &encoded_symlen, |
| 517 | NULL, |
| 518 | mount_crypt_stat, symname, |
| 519 | strlen(symname)); |
| 520 | if (rc) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 521 | goto out_lock; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 522 | rc = vfs_symlink(lower_dir_dentry->d_inode, lower_dentry, |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 523 | encoded_symname); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 524 | kfree(encoded_symname); |
| 525 | if (rc || !lower_dentry->d_inode) |
| 526 | goto out_lock; |
| 527 | rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0); |
| 528 | if (rc) |
| 529 | goto out_lock; |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 530 | fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode); |
| 531 | fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 532 | out_lock: |
| 533 | unlock_dir(lower_dir_dentry); |
| 534 | dput(lower_dentry); |
| 535 | if (!dentry->d_inode) |
| 536 | d_drop(dentry); |
| 537 | return rc; |
| 538 | } |
| 539 | |
| 540 | static int ecryptfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) |
| 541 | { |
| 542 | int rc; |
| 543 | struct dentry *lower_dentry; |
| 544 | struct dentry *lower_dir_dentry; |
| 545 | |
| 546 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 547 | lower_dir_dentry = lock_parent(lower_dentry); |
| 548 | rc = vfs_mkdir(lower_dir_dentry->d_inode, lower_dentry, mode); |
| 549 | if (rc || !lower_dentry->d_inode) |
| 550 | goto out; |
| 551 | rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0); |
| 552 | if (rc) |
| 553 | goto out; |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 554 | fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode); |
| 555 | fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 556 | dir->i_nlink = lower_dir_dentry->d_inode->i_nlink; |
| 557 | out: |
| 558 | unlock_dir(lower_dir_dentry); |
| 559 | if (!dentry->d_inode) |
| 560 | d_drop(dentry); |
| 561 | return rc; |
| 562 | } |
| 563 | |
| 564 | static int ecryptfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 565 | { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 566 | struct dentry *lower_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 567 | struct dentry *lower_dir_dentry; |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 568 | int rc; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 569 | |
| 570 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 571 | dget(dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 572 | lower_dir_dentry = lock_parent(lower_dentry); |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 573 | dget(lower_dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 574 | rc = vfs_rmdir(lower_dir_dentry->d_inode, lower_dentry); |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 575 | dput(lower_dentry); |
| 576 | if (!rc) |
| 577 | d_delete(lower_dentry); |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 578 | fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 579 | dir->i_nlink = lower_dir_dentry->d_inode->i_nlink; |
| 580 | unlock_dir(lower_dir_dentry); |
| 581 | if (!rc) |
| 582 | d_drop(dentry); |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 583 | dput(dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 584 | return rc; |
| 585 | } |
| 586 | |
| 587 | static int |
| 588 | ecryptfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev) |
| 589 | { |
| 590 | int rc; |
| 591 | struct dentry *lower_dentry; |
| 592 | struct dentry *lower_dir_dentry; |
| 593 | |
| 594 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 595 | lower_dir_dentry = lock_parent(lower_dentry); |
| 596 | rc = vfs_mknod(lower_dir_dentry->d_inode, lower_dentry, mode, dev); |
| 597 | if (rc || !lower_dentry->d_inode) |
| 598 | goto out; |
Michael Halcrow | 391b52f | 2008-07-23 21:30:08 -0700 | [diff] [blame] | 599 | rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 600 | if (rc) |
| 601 | goto out; |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 602 | fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode); |
| 603 | fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 604 | out: |
| 605 | unlock_dir(lower_dir_dentry); |
| 606 | if (!dentry->d_inode) |
| 607 | d_drop(dentry); |
| 608 | return rc; |
| 609 | } |
| 610 | |
| 611 | static int |
| 612 | ecryptfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 613 | struct inode *new_dir, struct dentry *new_dentry) |
| 614 | { |
| 615 | int rc; |
| 616 | struct dentry *lower_old_dentry; |
| 617 | struct dentry *lower_new_dentry; |
| 618 | struct dentry *lower_old_dir_dentry; |
| 619 | struct dentry *lower_new_dir_dentry; |
| 620 | |
| 621 | lower_old_dentry = ecryptfs_dentry_to_lower(old_dentry); |
| 622 | lower_new_dentry = ecryptfs_dentry_to_lower(new_dentry); |
| 623 | dget(lower_old_dentry); |
| 624 | dget(lower_new_dentry); |
| 625 | lower_old_dir_dentry = dget_parent(lower_old_dentry); |
| 626 | lower_new_dir_dentry = dget_parent(lower_new_dentry); |
| 627 | lock_rename(lower_old_dir_dentry, lower_new_dir_dentry); |
| 628 | rc = vfs_rename(lower_old_dir_dentry->d_inode, lower_old_dentry, |
| 629 | lower_new_dir_dentry->d_inode, lower_new_dentry); |
| 630 | if (rc) |
| 631 | goto out_lock; |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 632 | fsstack_copy_attr_all(new_dir, lower_new_dir_dentry->d_inode, NULL); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 633 | if (new_dir != old_dir) |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 634 | fsstack_copy_attr_all(old_dir, lower_old_dir_dentry->d_inode, NULL); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 635 | out_lock: |
| 636 | unlock_rename(lower_old_dir_dentry, lower_new_dir_dentry); |
Michael Halcrow | a908308 | 2006-11-16 01:19:16 -0800 | [diff] [blame] | 637 | dput(lower_new_dentry->d_parent); |
| 638 | dput(lower_old_dentry->d_parent); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 639 | dput(lower_new_dentry); |
| 640 | dput(lower_old_dentry); |
| 641 | return rc; |
| 642 | } |
| 643 | |
| 644 | static int |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 645 | ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 646 | { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 647 | char *lower_buf; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 648 | struct dentry *lower_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 649 | struct ecryptfs_crypt_stat *crypt_stat; |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 650 | char *plaintext_name; |
| 651 | size_t plaintext_name_size; |
| 652 | mm_segment_t old_fs; |
| 653 | int rc; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 654 | |
| 655 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 656 | if (!lower_dentry->d_inode->i_op->readlink) { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 657 | rc = -EINVAL; |
| 658 | goto out; |
| 659 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 660 | crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 661 | /* Released in this function */ |
| 662 | lower_buf = kmalloc(bufsiz, GFP_KERNEL); |
| 663 | if (lower_buf == NULL) { |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 664 | printk(KERN_ERR "%s: Out of memory whilst attempting to " |
| 665 | "kmalloc [%d] bytes\n", __func__, bufsiz); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 666 | rc = -ENOMEM; |
| 667 | goto out; |
| 668 | } |
| 669 | old_fs = get_fs(); |
| 670 | set_fs(get_ds()); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 671 | rc = lower_dentry->d_inode->i_op->readlink(lower_dentry, |
| 672 | (char __user *)lower_buf, |
| 673 | bufsiz); |
| 674 | set_fs(old_fs); |
| 675 | if (rc >= 0) { |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 676 | rc = ecryptfs_decode_and_decrypt_filename(&plaintext_name, |
| 677 | &plaintext_name_size, |
| 678 | dentry, lower_buf, |
| 679 | rc); |
| 680 | if (rc) { |
| 681 | printk(KERN_ERR "%s: Error attempting to decode and " |
| 682 | "decrypt filename; rc = [%d]\n", __func__, |
| 683 | rc); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 684 | goto out_free_lower_buf; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 685 | } |
Michael Halcrow | addd65ad | 2009-01-06 14:42:00 -0800 | [diff] [blame^] | 686 | rc = copy_to_user(buf, plaintext_name, plaintext_name_size); |
| 687 | if (rc) |
| 688 | rc = -EFAULT; |
| 689 | else |
| 690 | rc = plaintext_name_size; |
| 691 | kfree(plaintext_name); |
| 692 | fsstack_copy_attr_atime(dentry->d_inode, lower_dentry->d_inode); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 693 | } |
| 694 | out_free_lower_buf: |
| 695 | kfree(lower_buf); |
| 696 | out: |
| 697 | return rc; |
| 698 | } |
| 699 | |
| 700 | static void *ecryptfs_follow_link(struct dentry *dentry, struct nameidata *nd) |
| 701 | { |
| 702 | char *buf; |
| 703 | int len = PAGE_SIZE, rc; |
| 704 | mm_segment_t old_fs; |
| 705 | |
| 706 | /* Released in ecryptfs_put_link(); only release here on error */ |
| 707 | buf = kmalloc(len, GFP_KERNEL); |
| 708 | if (!buf) { |
| 709 | rc = -ENOMEM; |
| 710 | goto out; |
| 711 | } |
| 712 | old_fs = get_fs(); |
| 713 | set_fs(get_ds()); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 714 | rc = dentry->d_inode->i_op->readlink(dentry, (char __user *)buf, len); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 715 | set_fs(old_fs); |
| 716 | if (rc < 0) |
| 717 | goto out_free; |
Duane Griffin | a17d523 | 2008-12-19 20:47:10 +0000 | [diff] [blame] | 718 | else |
| 719 | buf[rc] = '\0'; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 720 | rc = 0; |
| 721 | nd_set_link(nd, buf); |
| 722 | goto out; |
| 723 | out_free: |
| 724 | kfree(buf); |
| 725 | out: |
| 726 | return ERR_PTR(rc); |
| 727 | } |
| 728 | |
| 729 | static void |
| 730 | ecryptfs_put_link(struct dentry *dentry, struct nameidata *nd, void *ptr) |
| 731 | { |
| 732 | /* Free the char* */ |
| 733 | kfree(nd_get_link(nd)); |
| 734 | } |
| 735 | |
| 736 | /** |
| 737 | * upper_size_to_lower_size |
| 738 | * @crypt_stat: Crypt_stat associated with file |
| 739 | * @upper_size: Size of the upper file |
| 740 | * |
Michael Halcrow | cc11bef | 2008-02-06 01:38:32 -0800 | [diff] [blame] | 741 | * Calculate the required size of the lower file based on the |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 742 | * specified size of the upper file. This calculation is based on the |
| 743 | * number of headers in the underlying file and the extent size. |
| 744 | * |
| 745 | * Returns Calculated size of the lower file. |
| 746 | */ |
| 747 | static loff_t |
| 748 | upper_size_to_lower_size(struct ecryptfs_crypt_stat *crypt_stat, |
| 749 | loff_t upper_size) |
| 750 | { |
| 751 | loff_t lower_size; |
| 752 | |
Michael Halcrow | cc11bef | 2008-02-06 01:38:32 -0800 | [diff] [blame] | 753 | lower_size = crypt_stat->num_header_bytes_at_front; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 754 | if (upper_size != 0) { |
| 755 | loff_t num_extents; |
| 756 | |
| 757 | num_extents = upper_size >> crypt_stat->extent_shift; |
| 758 | if (upper_size & ~crypt_stat->extent_mask) |
| 759 | num_extents++; |
| 760 | lower_size += (num_extents * crypt_stat->extent_size); |
| 761 | } |
| 762 | return lower_size; |
| 763 | } |
| 764 | |
| 765 | /** |
| 766 | * ecryptfs_truncate |
| 767 | * @dentry: The ecryptfs layer dentry |
| 768 | * @new_length: The length to expand the file to |
| 769 | * |
| 770 | * Function to handle truncations modifying the size of the file. Note |
| 771 | * that the file sizes are interpolated. When expanding, we are simply |
| 772 | * writing strings of 0's out. When truncating, we need to modify the |
| 773 | * underlying file size according to the page index interpolations. |
| 774 | * |
| 775 | * Returns zero on success; non-zero otherwise |
| 776 | */ |
| 777 | int ecryptfs_truncate(struct dentry *dentry, loff_t new_length) |
| 778 | { |
| 779 | int rc = 0; |
| 780 | struct inode *inode = dentry->d_inode; |
| 781 | struct dentry *lower_dentry; |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 782 | struct file fake_ecryptfs_file; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 783 | struct ecryptfs_crypt_stat *crypt_stat; |
| 784 | loff_t i_size = i_size_read(inode); |
| 785 | loff_t lower_size_before_truncate; |
| 786 | loff_t lower_size_after_truncate; |
| 787 | |
| 788 | if (unlikely((new_length == i_size))) |
| 789 | goto out; |
| 790 | crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat; |
| 791 | /* Set up a fake ecryptfs file, this is used to interface with |
| 792 | * the file in the underlying filesystem so that the |
| 793 | * truncation has an effect there as well. */ |
| 794 | memset(&fake_ecryptfs_file, 0, sizeof(fake_ecryptfs_file)); |
Josef "Jeff" Sipek | bd243a4 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 795 | fake_ecryptfs_file.f_path.dentry = dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 796 | /* Released at out_free: label */ |
| 797 | ecryptfs_set_file_private(&fake_ecryptfs_file, |
| 798 | kmem_cache_alloc(ecryptfs_file_info_cache, |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 799 | GFP_KERNEL)); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 800 | if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file))) { |
| 801 | rc = -ENOMEM; |
| 802 | goto out; |
| 803 | } |
| 804 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 805 | ecryptfs_set_file_lower( |
| 806 | &fake_ecryptfs_file, |
| 807 | ecryptfs_inode_to_private(dentry->d_inode)->lower_file); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 808 | /* Switch on growing or shrinking file */ |
| 809 | if (new_length > i_size) { |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 810 | char zero[] = { 0x00 }; |
Michael Halcrow | 240e2df | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 811 | |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 812 | /* Write a single 0 at the last position of the file; |
| 813 | * this triggers code that will fill in 0's throughout |
| 814 | * the intermediate portion of the previous end of the |
| 815 | * file and the new and of the file */ |
| 816 | rc = ecryptfs_write(&fake_ecryptfs_file, zero, |
| 817 | (new_length - 1), 1); |
| 818 | } else { /* new_length < i_size_read(inode) */ |
| 819 | /* We're chopping off all the pages down do the page |
| 820 | * in which new_length is located. Fill in the end of |
| 821 | * that page from (new_length & ~PAGE_CACHE_MASK) to |
| 822 | * PAGE_CACHE_SIZE with zeros. */ |
| 823 | size_t num_zeros = (PAGE_CACHE_SIZE |
| 824 | - (new_length & ~PAGE_CACHE_MASK)); |
| 825 | |
| 826 | if (num_zeros) { |
| 827 | char *zeros_virt; |
| 828 | |
| 829 | zeros_virt = kzalloc(num_zeros, GFP_KERNEL); |
| 830 | if (!zeros_virt) { |
| 831 | rc = -ENOMEM; |
| 832 | goto out_free; |
| 833 | } |
| 834 | rc = ecryptfs_write(&fake_ecryptfs_file, zeros_virt, |
| 835 | new_length, num_zeros); |
| 836 | kfree(zeros_virt); |
Michael Halcrow | 5dda699 | 2007-10-16 01:28:06 -0700 | [diff] [blame] | 837 | if (rc) { |
Michael Halcrow | 240e2df | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 838 | printk(KERN_ERR "Error attempting to zero out " |
| 839 | "the remainder of the end page on " |
| 840 | "reducing truncate; rc = [%d]\n", rc); |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 841 | goto out_free; |
Michael Halcrow | 240e2df | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 842 | } |
| 843 | } |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 844 | vmtruncate(inode, new_length); |
Michael Halcrow | 0216f7f | 2007-10-16 01:28:08 -0700 | [diff] [blame] | 845 | rc = ecryptfs_write_inode_size_to_metadata(inode); |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 846 | if (rc) { |
| 847 | printk(KERN_ERR "Problem with " |
| 848 | "ecryptfs_write_inode_size_to_metadata; " |
| 849 | "rc = [%d]\n", rc); |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 850 | goto out_free; |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 851 | } |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 852 | /* We are reducing the size of the ecryptfs file, and need to |
| 853 | * know if we need to reduce the size of the lower file. */ |
| 854 | lower_size_before_truncate = |
| 855 | upper_size_to_lower_size(crypt_stat, i_size); |
| 856 | lower_size_after_truncate = |
| 857 | upper_size_to_lower_size(crypt_stat, new_length); |
| 858 | if (lower_size_after_truncate < lower_size_before_truncate) |
| 859 | vmtruncate(lower_dentry->d_inode, |
| 860 | lower_size_after_truncate); |
| 861 | } |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 862 | out_free: |
| 863 | if (ecryptfs_file_to_private(&fake_ecryptfs_file)) |
| 864 | kmem_cache_free(ecryptfs_file_info_cache, |
| 865 | ecryptfs_file_to_private(&fake_ecryptfs_file)); |
| 866 | out: |
| 867 | return rc; |
| 868 | } |
| 869 | |
| 870 | static int |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 871 | ecryptfs_permission(struct inode *inode, int mask) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 872 | { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 873 | return inode_permission(ecryptfs_inode_to_lower(inode), mask); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | /** |
| 877 | * ecryptfs_setattr |
| 878 | * @dentry: dentry handle to the inode to modify |
| 879 | * @ia: Structure with flags of what to change and values |
| 880 | * |
| 881 | * Updates the metadata of an inode. If the update is to the size |
| 882 | * i.e. truncation, then ecryptfs_truncate will handle the size modification |
| 883 | * of both the ecryptfs inode and the lower inode. |
| 884 | * |
| 885 | * All other metadata changes will be passed right to the lower filesystem, |
| 886 | * and we will just update our inode to look like the lower. |
| 887 | */ |
| 888 | static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia) |
| 889 | { |
| 890 | int rc = 0; |
| 891 | struct dentry *lower_dentry; |
| 892 | struct inode *inode; |
| 893 | struct inode *lower_inode; |
| 894 | struct ecryptfs_crypt_stat *crypt_stat; |
| 895 | |
| 896 | crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat; |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 897 | if (!(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED)) |
| 898 | ecryptfs_init_crypt_stat(crypt_stat); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 899 | inode = dentry->d_inode; |
| 900 | lower_inode = ecryptfs_inode_to_lower(inode); |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 901 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 902 | mutex_lock(&crypt_stat->cs_mutex); |
| 903 | if (S_ISDIR(dentry->d_inode->i_mode)) |
| 904 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); |
Michael Halcrow | 64ee480 | 2007-07-19 01:47:54 -0700 | [diff] [blame] | 905 | else if (S_ISREG(dentry->d_inode->i_mode) |
| 906 | && (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED) |
| 907 | || !(crypt_stat->flags & ECRYPTFS_KEY_VALID))) { |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 908 | struct ecryptfs_mount_crypt_stat *mount_crypt_stat; |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 909 | |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 910 | mount_crypt_stat = &ecryptfs_superblock_to_private( |
| 911 | dentry->d_sb)->mount_crypt_stat; |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 912 | rc = ecryptfs_read_metadata(dentry); |
Michael Halcrow | 5dda699 | 2007-10-16 01:28:06 -0700 | [diff] [blame] | 913 | if (rc) { |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 914 | if (!(mount_crypt_stat->flags |
| 915 | & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) { |
| 916 | rc = -EIO; |
Michael Halcrow | 25bd817 | 2008-02-06 01:38:35 -0800 | [diff] [blame] | 917 | printk(KERN_WARNING "Either the lower file " |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 918 | "is not in a valid eCryptfs format, " |
Michael Halcrow | 25bd817 | 2008-02-06 01:38:35 -0800 | [diff] [blame] | 919 | "or the key could not be retrieved. " |
| 920 | "Plaintext passthrough mode is not " |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 921 | "enabled; returning -EIO\n"); |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 922 | mutex_unlock(&crypt_stat->cs_mutex); |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 923 | goto out; |
| 924 | } |
| 925 | rc = 0; |
| 926 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); |
| 927 | mutex_unlock(&crypt_stat->cs_mutex); |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 928 | goto out; |
| 929 | } |
Michael Halcrow | e10f281 | 2007-06-27 14:09:44 -0700 | [diff] [blame] | 930 | } |
| 931 | mutex_unlock(&crypt_stat->cs_mutex); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 932 | if (ia->ia_valid & ATTR_SIZE) { |
| 933 | ecryptfs_printk(KERN_DEBUG, |
| 934 | "ia->ia_valid = [0x%x] ATTR_SIZE" " = [0x%x]\n", |
| 935 | ia->ia_valid, ATTR_SIZE); |
| 936 | rc = ecryptfs_truncate(dentry, ia->ia_size); |
| 937 | /* ecryptfs_truncate handles resizing of the lower file */ |
| 938 | ia->ia_valid &= ~ATTR_SIZE; |
| 939 | ecryptfs_printk(KERN_DEBUG, "ia->ia_valid = [%x]\n", |
| 940 | ia->ia_valid); |
| 941 | if (rc < 0) |
| 942 | goto out; |
| 943 | } |
Jeff Layton | 1ac564e | 2007-10-18 03:05:17 -0700 | [diff] [blame] | 944 | |
| 945 | /* |
| 946 | * mode change is for clearing setuid/setgid bits. Allow lower fs |
| 947 | * to interpret this in its own way. |
| 948 | */ |
| 949 | if (ia->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID)) |
| 950 | ia->ia_valid &= ~ATTR_MODE; |
| 951 | |
Miklos Szeredi | 9c3580a | 2008-04-29 00:59:48 -0700 | [diff] [blame] | 952 | mutex_lock(&lower_dentry->d_inode->i_mutex); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 953 | rc = notify_change(lower_dentry, ia); |
Miklos Szeredi | 9c3580a | 2008-04-29 00:59:48 -0700 | [diff] [blame] | 954 | mutex_unlock(&lower_dentry->d_inode->i_mutex); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 955 | out: |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 956 | fsstack_copy_attr_all(inode, lower_inode, NULL); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 957 | return rc; |
| 958 | } |
| 959 | |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 960 | int |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 961 | ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value, |
| 962 | size_t size, int flags) |
| 963 | { |
| 964 | int rc = 0; |
| 965 | struct dentry *lower_dentry; |
| 966 | |
| 967 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 968 | if (!lower_dentry->d_inode->i_op->setxattr) { |
| 969 | rc = -ENOSYS; |
| 970 | goto out; |
| 971 | } |
| 972 | mutex_lock(&lower_dentry->d_inode->i_mutex); |
| 973 | rc = lower_dentry->d_inode->i_op->setxattr(lower_dentry, name, value, |
| 974 | size, flags); |
| 975 | mutex_unlock(&lower_dentry->d_inode->i_mutex); |
| 976 | out: |
| 977 | return rc; |
| 978 | } |
| 979 | |
Michael Halcrow | dd2a3b7 | 2007-02-12 00:53:46 -0800 | [diff] [blame] | 980 | ssize_t |
Michael Halcrow | d7cdc5f | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 981 | ecryptfs_getxattr_lower(struct dentry *lower_dentry, const char *name, |
| 982 | void *value, size_t size) |
| 983 | { |
| 984 | int rc = 0; |
| 985 | |
| 986 | if (!lower_dentry->d_inode->i_op->getxattr) { |
| 987 | rc = -ENOSYS; |
| 988 | goto out; |
| 989 | } |
| 990 | mutex_lock(&lower_dentry->d_inode->i_mutex); |
| 991 | rc = lower_dentry->d_inode->i_op->getxattr(lower_dentry, name, value, |
| 992 | size); |
| 993 | mutex_unlock(&lower_dentry->d_inode->i_mutex); |
| 994 | out: |
| 995 | return rc; |
| 996 | } |
| 997 | |
Adrian Bunk | 7896b63 | 2008-02-06 01:38:32 -0800 | [diff] [blame] | 998 | static ssize_t |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 999 | ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value, |
| 1000 | size_t size) |
| 1001 | { |
Michael Halcrow | 2ed9255 | 2007-10-16 01:28:10 -0700 | [diff] [blame] | 1002 | return ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry), name, |
| 1003 | value, size); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | static ssize_t |
| 1007 | ecryptfs_listxattr(struct dentry *dentry, char *list, size_t size) |
| 1008 | { |
| 1009 | int rc = 0; |
| 1010 | struct dentry *lower_dentry; |
| 1011 | |
| 1012 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 1013 | if (!lower_dentry->d_inode->i_op->listxattr) { |
| 1014 | rc = -ENOSYS; |
| 1015 | goto out; |
| 1016 | } |
| 1017 | mutex_lock(&lower_dentry->d_inode->i_mutex); |
| 1018 | rc = lower_dentry->d_inode->i_op->listxattr(lower_dentry, list, size); |
| 1019 | mutex_unlock(&lower_dentry->d_inode->i_mutex); |
| 1020 | out: |
| 1021 | return rc; |
| 1022 | } |
| 1023 | |
| 1024 | static int ecryptfs_removexattr(struct dentry *dentry, const char *name) |
| 1025 | { |
| 1026 | int rc = 0; |
| 1027 | struct dentry *lower_dentry; |
| 1028 | |
| 1029 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
| 1030 | if (!lower_dentry->d_inode->i_op->removexattr) { |
| 1031 | rc = -ENOSYS; |
| 1032 | goto out; |
| 1033 | } |
| 1034 | mutex_lock(&lower_dentry->d_inode->i_mutex); |
| 1035 | rc = lower_dentry->d_inode->i_op->removexattr(lower_dentry, name); |
| 1036 | mutex_unlock(&lower_dentry->d_inode->i_mutex); |
| 1037 | out: |
| 1038 | return rc; |
| 1039 | } |
| 1040 | |
| 1041 | int ecryptfs_inode_test(struct inode *inode, void *candidate_lower_inode) |
| 1042 | { |
| 1043 | if ((ecryptfs_inode_to_lower(inode) |
| 1044 | == (struct inode *)candidate_lower_inode)) |
| 1045 | return 1; |
| 1046 | else |
| 1047 | return 0; |
| 1048 | } |
| 1049 | |
| 1050 | int ecryptfs_inode_set(struct inode *inode, void *lower_inode) |
| 1051 | { |
| 1052 | ecryptfs_init_inode(inode, (struct inode *)lower_inode); |
| 1053 | return 0; |
| 1054 | } |
| 1055 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 1056 | const struct inode_operations ecryptfs_symlink_iops = { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1057 | .readlink = ecryptfs_readlink, |
| 1058 | .follow_link = ecryptfs_follow_link, |
| 1059 | .put_link = ecryptfs_put_link, |
| 1060 | .permission = ecryptfs_permission, |
| 1061 | .setattr = ecryptfs_setattr, |
| 1062 | .setxattr = ecryptfs_setxattr, |
| 1063 | .getxattr = ecryptfs_getxattr, |
| 1064 | .listxattr = ecryptfs_listxattr, |
| 1065 | .removexattr = ecryptfs_removexattr |
| 1066 | }; |
| 1067 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 1068 | const struct inode_operations ecryptfs_dir_iops = { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1069 | .create = ecryptfs_create, |
| 1070 | .lookup = ecryptfs_lookup, |
| 1071 | .link = ecryptfs_link, |
| 1072 | .unlink = ecryptfs_unlink, |
| 1073 | .symlink = ecryptfs_symlink, |
| 1074 | .mkdir = ecryptfs_mkdir, |
| 1075 | .rmdir = ecryptfs_rmdir, |
| 1076 | .mknod = ecryptfs_mknod, |
| 1077 | .rename = ecryptfs_rename, |
| 1078 | .permission = ecryptfs_permission, |
| 1079 | .setattr = ecryptfs_setattr, |
| 1080 | .setxattr = ecryptfs_setxattr, |
| 1081 | .getxattr = ecryptfs_getxattr, |
| 1082 | .listxattr = ecryptfs_listxattr, |
| 1083 | .removexattr = ecryptfs_removexattr |
| 1084 | }; |
| 1085 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 1086 | const struct inode_operations ecryptfs_main_iops = { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1087 | .permission = ecryptfs_permission, |
| 1088 | .setattr = ecryptfs_setattr, |
| 1089 | .setxattr = ecryptfs_setxattr, |
| 1090 | .getxattr = ecryptfs_getxattr, |
| 1091 | .listxattr = ecryptfs_listxattr, |
| 1092 | .removexattr = ecryptfs_removexattr |
| 1093 | }; |