Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Directory operations for Coda filesystem |
| 4 | * Original version: (C) 1996 P. Braam and M. Callahan |
| 5 | * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University |
| 6 | * |
| 7 | * Carnegie Mellon encourages users to contribute improvements to |
| 8 | * the Coda project. Contact Peter Braam (coda@cs.cmu.edu). |
| 9 | */ |
| 10 | |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/time.h> |
| 14 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/file.h> |
| 17 | #include <linux/stat.h> |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/string.h> |
| 20 | #include <linux/smp_lock.h> |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 21 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #include <asm/uaccess.h> |
| 24 | |
| 25 | #include <linux/coda.h> |
| 26 | #include <linux/coda_linux.h> |
| 27 | #include <linux/coda_psdev.h> |
| 28 | #include <linux/coda_fs_i.h> |
| 29 | #include <linux/coda_cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Adrian Bunk | c98d8cf | 2006-03-24 03:15:53 -0800 | [diff] [blame] | 31 | #include "coda_int.h" |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* dir inode-ops */ |
| 34 | static int coda_create(struct inode *dir, struct dentry *new, int mode, struct nameidata *nd); |
| 35 | static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, struct nameidata *nd); |
| 36 | static int coda_link(struct dentry *old_dentry, struct inode *dir_inode, |
| 37 | struct dentry *entry); |
| 38 | static int coda_unlink(struct inode *dir_inode, struct dentry *entry); |
| 39 | static int coda_symlink(struct inode *dir_inode, struct dentry *entry, |
| 40 | const char *symname); |
| 41 | static int coda_mkdir(struct inode *dir_inode, struct dentry *entry, int mode); |
| 42 | static int coda_rmdir(struct inode *dir_inode, struct dentry *entry); |
| 43 | static int coda_rename(struct inode *old_inode, struct dentry *old_dentry, |
| 44 | struct inode *new_inode, struct dentry *new_dentry); |
| 45 | |
| 46 | /* dir file-ops */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 47 | static int coda_readdir(struct file *file, void *buf, filldir_t filldir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* dentry ops */ |
| 50 | static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd); |
| 51 | static int coda_dentry_delete(struct dentry *); |
| 52 | |
| 53 | /* support routines */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 54 | static int coda_venus_readdir(struct file *coda_file, void *buf, |
| 55 | filldir_t filldir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | /* same as fs/bad_inode.c */ |
| 58 | static int coda_return_EIO(void) |
| 59 | { |
| 60 | return -EIO; |
| 61 | } |
| 62 | #define CODA_EIO_ERROR ((void *) (coda_return_EIO)) |
| 63 | |
Al Viro | e16404e | 2009-02-20 05:55:13 +0000 | [diff] [blame] | 64 | static const struct dentry_operations coda_dentry_operations = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
| 66 | .d_revalidate = coda_dentry_revalidate, |
| 67 | .d_delete = coda_dentry_delete, |
| 68 | }; |
| 69 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 70 | const struct inode_operations coda_dir_inode_operations = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | .create = coda_create, |
| 73 | .lookup = coda_lookup, |
| 74 | .link = coda_link, |
| 75 | .unlink = coda_unlink, |
| 76 | .symlink = coda_symlink, |
| 77 | .mkdir = coda_mkdir, |
| 78 | .rmdir = coda_rmdir, |
| 79 | .mknod = CODA_EIO_ERROR, |
| 80 | .rename = coda_rename, |
| 81 | .permission = coda_permission, |
| 82 | .getattr = coda_getattr, |
| 83 | .setattr = coda_setattr, |
| 84 | }; |
| 85 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 86 | const struct file_operations coda_dir_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | .llseek = generic_file_llseek, |
| 88 | .read = generic_read_dir, |
| 89 | .readdir = coda_readdir, |
| 90 | .open = coda_open, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | .release = coda_release, |
| 92 | .fsync = coda_fsync, |
| 93 | }; |
| 94 | |
| 95 | |
| 96 | /* inode operations for directories */ |
| 97 | /* access routines: lookup, readlink, permission */ |
| 98 | static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry, struct nameidata *nd) |
| 99 | { |
Jan Harkes | ed36f72 | 2007-07-19 01:48:49 -0700 | [diff] [blame] | 100 | struct inode *inode = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | struct CodaFid resfid = { { 0, } }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | int type = 0; |
| 103 | int error = 0; |
| 104 | const char *name = entry->d_name.name; |
| 105 | size_t length = entry->d_name.len; |
Jan Harkes | ed36f72 | 2007-07-19 01:48:49 -0700 | [diff] [blame] | 106 | |
| 107 | if (length > CODA_MAXNAMLEN) { |
| 108 | printk(KERN_ERR "name too long: lookup, %s (%*s)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | coda_i2s(dir), (int)length, name); |
| 110 | return ERR_PTR(-ENAMETOOLONG); |
| 111 | } |
| 112 | |
Jan Harkes | ed36f72 | 2007-07-19 01:48:49 -0700 | [diff] [blame] | 113 | /* control object, create inode on the fly */ |
| 114 | if (coda_isroot(dir) && coda_iscontrol(name, length)) { |
| 115 | error = coda_cnode_makectl(&inode, dir->i_sb); |
| 116 | type = CODA_NOCACHE; |
| 117 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Jan Harkes | ed36f72 | 2007-07-19 01:48:49 -0700 | [diff] [blame] | 120 | lock_kernel(); |
| 121 | |
| 122 | error = venus_lookup(dir->i_sb, coda_i2f(dir), name, length, |
| 123 | &type, &resfid); |
| 124 | if (!error) |
| 125 | error = coda_cnode_make(&inode, &resfid, dir->i_sb); |
| 126 | |
| 127 | unlock_kernel(); |
| 128 | |
| 129 | if (error && error != -ENOENT) |
| 130 | return ERR_PTR(error); |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | entry->d_op = &coda_dentry_operations; |
Jan Harkes | ed36f72 | 2007-07-19 01:48:49 -0700 | [diff] [blame] | 134 | |
| 135 | if (inode && (type & CODA_NOCACHE)) |
| 136 | coda_flag_inode(inode, C_VATTR | C_PURGE); |
| 137 | |
| 138 | return d_splice_alias(inode, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 142 | int coda_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
| 144 | int error = 0; |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 145 | |
| 146 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
| 148 | if (!mask) |
| 149 | return 0; |
| 150 | |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 151 | if ((mask & MAY_EXEC) && !execute_ok(inode)) |
| 152 | return -EACCES; |
| 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | lock_kernel(); |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | if (coda_cache_check(inode, mask)) |
| 157 | goto out; |
| 158 | |
| 159 | error = venus_access(inode->i_sb, coda_i2f(inode), mask); |
| 160 | |
| 161 | if (!error) |
| 162 | coda_cache_enter(inode, mask); |
| 163 | |
| 164 | out: |
| 165 | unlock_kernel(); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 166 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 170 | static inline void coda_dir_update_mtime(struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
| 172 | #ifdef REQUERY_VENUS_FOR_MTIME |
| 173 | /* invalidate the directory cnode's attributes so we refetch the |
| 174 | * attributes from venus next time the inode is referenced */ |
| 175 | coda_flag_inode(dir, C_VATTR); |
| 176 | #else |
| 177 | /* optimistically we can also act as if our nose bleeds. The |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 178 | * granularity of the mtime is coarse anyways so we might actually be |
| 179 | * right most of the time. Note: we only do this for directories. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC; |
| 181 | #endif |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | /* we have to wrap inc_nlink/drop_nlink because sometimes userspace uses a |
| 185 | * trick to fool GNU find's optimizations. If we can't be sure of the link |
| 186 | * (because of volume mount points) we set i_nlink to 1 which forces find |
| 187 | * to consider every child as a possible directory. We should also never |
| 188 | * see an increment or decrement for deleted directories where i_nlink == 0 */ |
| 189 | static inline void coda_dir_inc_nlink(struct inode *dir) |
| 190 | { |
| 191 | if (dir->i_nlink >= 2) |
| 192 | inc_nlink(dir); |
| 193 | } |
| 194 | |
| 195 | static inline void coda_dir_drop_nlink(struct inode *dir) |
| 196 | { |
| 197 | if (dir->i_nlink > 2) |
| 198 | drop_nlink(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /* creation routines: create, mknod, mkdir, link, symlink */ |
| 202 | static int coda_create(struct inode *dir, struct dentry *de, int mode, struct nameidata *nd) |
| 203 | { |
| 204 | int error=0; |
| 205 | const char *name=de->d_name.name; |
| 206 | int length=de->d_name.len; |
| 207 | struct inode *inode; |
| 208 | struct CodaFid newfid; |
| 209 | struct coda_vattr attrs; |
| 210 | |
| 211 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
| 213 | if (coda_isroot(dir) && coda_iscontrol(name, length)) { |
| 214 | unlock_kernel(); |
| 215 | return -EPERM; |
| 216 | } |
| 217 | |
| 218 | error = venus_create(dir->i_sb, coda_i2f(dir), name, length, |
| 219 | 0, mode, &newfid, &attrs); |
| 220 | |
| 221 | if ( error ) { |
| 222 | unlock_kernel(); |
| 223 | d_drop(de); |
| 224 | return error; |
| 225 | } |
| 226 | |
| 227 | inode = coda_iget(dir->i_sb, &newfid, &attrs); |
| 228 | if ( IS_ERR(inode) ) { |
| 229 | unlock_kernel(); |
| 230 | d_drop(de); |
| 231 | return PTR_ERR(inode); |
| 232 | } |
| 233 | |
| 234 | /* invalidate the directory cnode's attributes */ |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 235 | coda_dir_update_mtime(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | unlock_kernel(); |
| 237 | d_instantiate(de, inode); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 238 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static int coda_mkdir(struct inode *dir, struct dentry *de, int mode) |
| 242 | { |
| 243 | struct inode *inode; |
| 244 | struct coda_vattr attrs; |
| 245 | const char *name = de->d_name.name; |
| 246 | int len = de->d_name.len; |
| 247 | int error; |
| 248 | struct CodaFid newfid; |
| 249 | |
| 250 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | if (coda_isroot(dir) && coda_iscontrol(name, len)) { |
| 253 | unlock_kernel(); |
| 254 | return -EPERM; |
| 255 | } |
| 256 | |
| 257 | attrs.va_mode = mode; |
| 258 | error = venus_mkdir(dir->i_sb, coda_i2f(dir), |
| 259 | name, len, &newfid, &attrs); |
| 260 | |
| 261 | if ( error ) { |
| 262 | unlock_kernel(); |
| 263 | d_drop(de); |
| 264 | return error; |
| 265 | } |
| 266 | |
| 267 | inode = coda_iget(dir->i_sb, &newfid, &attrs); |
| 268 | if ( IS_ERR(inode) ) { |
| 269 | unlock_kernel(); |
| 270 | d_drop(de); |
| 271 | return PTR_ERR(inode); |
| 272 | } |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* invalidate the directory cnode's attributes */ |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 275 | coda_dir_inc_nlink(dir); |
| 276 | coda_dir_update_mtime(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | unlock_kernel(); |
| 278 | d_instantiate(de, inode); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 279 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* try to make de an entry in dir_inodde linked to source_de */ |
| 283 | static int coda_link(struct dentry *source_de, struct inode *dir_inode, |
| 284 | struct dentry *de) |
| 285 | { |
| 286 | struct inode *inode = source_de->d_inode; |
| 287 | const char * name = de->d_name.name; |
| 288 | int len = de->d_name.len; |
| 289 | int error; |
| 290 | |
| 291 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
| 293 | if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) { |
| 294 | unlock_kernel(); |
| 295 | return -EPERM; |
| 296 | } |
| 297 | |
| 298 | error = venus_link(dir_inode->i_sb, coda_i2f(inode), |
| 299 | coda_i2f(dir_inode), (const char *)name, len); |
| 300 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 301 | if (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | d_drop(de); |
| 303 | goto out; |
| 304 | } |
| 305 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 306 | coda_dir_update_mtime(dir_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | atomic_inc(&inode->i_count); |
| 308 | d_instantiate(de, inode); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 309 | inc_nlink(inode); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | out: |
| 312 | unlock_kernel(); |
| 313 | return(error); |
| 314 | } |
| 315 | |
| 316 | |
| 317 | static int coda_symlink(struct inode *dir_inode, struct dentry *de, |
| 318 | const char *symname) |
| 319 | { |
| 320 | const char *name = de->d_name.name; |
| 321 | int len = de->d_name.len; |
| 322 | int symlen; |
Jan Harkes | 3cf01f2 | 2007-07-19 01:48:51 -0700 | [diff] [blame] | 323 | int error = 0; |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
| 327 | if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) { |
| 328 | unlock_kernel(); |
| 329 | return -EPERM; |
| 330 | } |
| 331 | |
| 332 | symlen = strlen(symname); |
| 333 | if ( symlen > CODA_MAXPATHLEN ) { |
| 334 | unlock_kernel(); |
| 335 | return -ENAMETOOLONG; |
| 336 | } |
| 337 | |
| 338 | /* |
| 339 | * This entry is now negative. Since we do not create |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 340 | * an inode for the entry we have to drop it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | */ |
| 342 | d_drop(de); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 343 | error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | symname, symlen); |
| 345 | |
| 346 | /* mtime is no good anymore */ |
| 347 | if ( !error ) |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 348 | coda_dir_update_mtime(dir_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
| 350 | unlock_kernel(); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 351 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | /* destruction routines: unlink, rmdir */ |
Harvey Harrison | 9fe76c7 | 2008-04-29 00:58:44 -0700 | [diff] [blame] | 355 | static int coda_unlink(struct inode *dir, struct dentry *de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
| 357 | int error; |
| 358 | const char *name = de->d_name.name; |
| 359 | int len = de->d_name.len; |
| 360 | |
| 361 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 363 | error = venus_remove(dir->i_sb, coda_i2f(dir), name, len); |
| 364 | if ( error ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | unlock_kernel(); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 366 | return error; |
| 367 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 369 | coda_dir_update_mtime(dir); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 370 | drop_nlink(de->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | unlock_kernel(); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 372 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Harvey Harrison | 9fe76c7 | 2008-04-29 00:58:44 -0700 | [diff] [blame] | 375 | static int coda_rmdir(struct inode *dir, struct dentry *de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
| 377 | const char *name = de->d_name.name; |
| 378 | int len = de->d_name.len; |
Jan Harkes | 8c6d215 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 379 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len); |
Jan Harkes | 8c6d215 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 384 | if (!error) { |
| 385 | /* VFS may delete the child */ |
| 386 | if (de->d_inode) |
| 387 | de->d_inode->i_nlink = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Jan Harkes | 8c6d215 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 389 | /* fix the link count of the parent */ |
| 390 | coda_dir_drop_nlink(dir); |
| 391 | coda_dir_update_mtime(dir); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 392 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | unlock_kernel(); |
Jan Harkes | 8c6d215 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 394 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | /* rename */ |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 398 | static int coda_rename(struct inode *old_dir, struct dentry *old_dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | struct inode *new_dir, struct dentry *new_dentry) |
| 400 | { |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 401 | const char *old_name = old_dentry->d_name.name; |
| 402 | const char *new_name = new_dentry->d_name.name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | int old_length = old_dentry->d_name.len; |
| 404 | int new_length = new_dentry->d_name.len; |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 405 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | lock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 409 | error = venus_rename(old_dir->i_sb, coda_i2f(old_dir), |
| 410 | coda_i2f(new_dir), old_length, new_length, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | (const char *) old_name, (const char *)new_name); |
| 412 | |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 413 | if ( !error ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | if ( new_dentry->d_inode ) { |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 415 | if ( S_ISDIR(new_dentry->d_inode->i_mode) ) { |
| 416 | coda_dir_drop_nlink(old_dir); |
| 417 | coda_dir_inc_nlink(new_dir); |
| 418 | } |
| 419 | coda_dir_update_mtime(old_dir); |
| 420 | coda_dir_update_mtime(new_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | coda_flag_inode(new_dentry->d_inode, C_VATTR); |
| 422 | } else { |
| 423 | coda_flag_inode(old_dir, C_VATTR); |
| 424 | coda_flag_inode(new_dir, C_VATTR); |
Jan Harkes | d728900 | 2007-07-19 01:48:43 -0700 | [diff] [blame] | 425 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | unlock_kernel(); |
| 428 | |
| 429 | return error; |
| 430 | } |
| 431 | |
| 432 | |
| 433 | /* file operations for directories */ |
Harvey Harrison | 9fe76c7 | 2008-04-29 00:58:44 -0700 | [diff] [blame] | 434 | static int coda_readdir(struct file *coda_file, void *buf, filldir_t filldir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | struct coda_file_info *cfi; |
| 437 | struct file *host_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | int ret; |
| 439 | |
| 440 | cfi = CODA_FTOC(coda_file); |
| 441 | BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC); |
| 442 | host_file = cfi->cfi_container; |
| 443 | |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 444 | if (!host_file->f_op) |
| 445 | return -ENOTDIR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 447 | if (host_file->f_op->readdir) |
| 448 | { |
| 449 | /* potemkin case: we were handed a directory inode. |
| 450 | * We can't use vfs_readdir because we have to keep the file |
| 451 | * position in sync between the coda_file and the host_file. |
| 452 | * and as such we need grab the inode mutex. */ |
| 453 | struct inode *host_inode = host_file->f_path.dentry->d_inode; |
| 454 | |
| 455 | mutex_lock(&host_inode->i_mutex); |
| 456 | host_file->f_pos = coda_file->f_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
| 458 | ret = -ENOENT; |
| 459 | if (!IS_DEADDIR(host_inode)) { |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 460 | ret = host_file->f_op->readdir(host_file, buf, filldir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | file_accessed(host_file); |
| 462 | } |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 463 | |
| 464 | coda_file->f_pos = host_file->f_pos; |
| 465 | mutex_unlock(&host_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | } |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 467 | else /* Venus: we must read Venus dirents from a file */ |
| 468 | ret = coda_venus_readdir(coda_file, buf, filldir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
| 470 | return ret; |
| 471 | } |
| 472 | |
| 473 | static inline unsigned int CDT2DT(unsigned char cdt) |
| 474 | { |
| 475 | unsigned int dt; |
| 476 | |
| 477 | switch(cdt) { |
| 478 | case CDT_UNKNOWN: dt = DT_UNKNOWN; break; |
| 479 | case CDT_FIFO: dt = DT_FIFO; break; |
| 480 | case CDT_CHR: dt = DT_CHR; break; |
| 481 | case CDT_DIR: dt = DT_DIR; break; |
| 482 | case CDT_BLK: dt = DT_BLK; break; |
| 483 | case CDT_REG: dt = DT_REG; break; |
| 484 | case CDT_LNK: dt = DT_LNK; break; |
| 485 | case CDT_SOCK: dt = DT_SOCK; break; |
| 486 | case CDT_WHT: dt = DT_WHT; break; |
| 487 | default: dt = DT_UNKNOWN; break; |
| 488 | } |
| 489 | return dt; |
| 490 | } |
| 491 | |
| 492 | /* support routines */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 493 | static int coda_venus_readdir(struct file *coda_file, void *buf, |
| 494 | filldir_t filldir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
| 496 | int result = 0; /* # of entries returned */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 497 | struct coda_file_info *cfi; |
| 498 | struct coda_inode_info *cii; |
| 499 | struct file *host_file; |
| 500 | struct dentry *de; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | struct venus_dirent *vdir; |
| 502 | unsigned long vdir_size = |
| 503 | (unsigned long)(&((struct venus_dirent *)0)->d_name); |
| 504 | unsigned int type; |
| 505 | struct qstr name; |
| 506 | ino_t ino; |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 507 | int ret; |
| 508 | |
| 509 | cfi = CODA_FTOC(coda_file); |
| 510 | BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC); |
| 511 | host_file = cfi->cfi_container; |
| 512 | |
| 513 | de = coda_file->f_path.dentry; |
| 514 | cii = ITOC(de->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Panagiotis Issaris | f52720c | 2006-09-27 01:49:39 -0700 | [diff] [blame] | 516 | vdir = kmalloc(sizeof(*vdir), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | if (!vdir) return -ENOMEM; |
| 518 | |
Al Viro | 5f47c7e | 2007-07-20 00:23:31 +0100 | [diff] [blame] | 519 | if (coda_file->f_pos == 0) { |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 520 | ret = filldir(buf, ".", 1, 0, de->d_inode->i_ino, DT_DIR); |
Al Viro | 5f47c7e | 2007-07-20 00:23:31 +0100 | [diff] [blame] | 521 | if (ret < 0) |
| 522 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | result++; |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 524 | coda_file->f_pos++; |
Al Viro | 5f47c7e | 2007-07-20 00:23:31 +0100 | [diff] [blame] | 525 | } |
| 526 | if (coda_file->f_pos == 1) { |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 527 | ret = filldir(buf, "..", 2, 1, de->d_parent->d_inode->i_ino, DT_DIR); |
Al Viro | 5f47c7e | 2007-07-20 00:23:31 +0100 | [diff] [blame] | 528 | if (ret < 0) |
| 529 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | result++; |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 531 | coda_file->f_pos++; |
Al Viro | 5f47c7e | 2007-07-20 00:23:31 +0100 | [diff] [blame] | 532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | while (1) { |
| 534 | /* read entries from the directory file */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 535 | ret = kernel_read(host_file, coda_file->f_pos - 2, (char *)vdir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | sizeof(*vdir)); |
| 537 | if (ret < 0) { |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 538 | printk(KERN_ERR "coda readdir: read dir %s failed %d\n", |
| 539 | coda_f2s(&cii->c_fid), ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | break; |
| 541 | } |
| 542 | if (ret == 0) break; /* end of directory file reached */ |
| 543 | |
| 544 | /* catch truncated reads */ |
| 545 | if (ret < vdir_size || ret < vdir_size + vdir->d_namlen) { |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 546 | printk(KERN_ERR "coda readdir: short read on %s\n", |
| 547 | coda_f2s(&cii->c_fid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | ret = -EBADF; |
| 549 | break; |
| 550 | } |
| 551 | /* validate whether the directory file actually makes sense */ |
| 552 | if (vdir->d_reclen < vdir_size + vdir->d_namlen) { |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 553 | printk(KERN_ERR "coda readdir: invalid dir %s\n", |
| 554 | coda_f2s(&cii->c_fid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | ret = -EBADF; |
| 556 | break; |
| 557 | } |
| 558 | |
| 559 | name.len = vdir->d_namlen; |
| 560 | name.name = vdir->d_name; |
| 561 | |
| 562 | /* Make sure we skip '.' and '..', we already got those */ |
| 563 | if (name.name[0] == '.' && (name.len == 1 || |
| 564 | (vdir->d_name[1] == '.' && name.len == 2))) |
| 565 | vdir->d_fileno = name.len = 0; |
| 566 | |
| 567 | /* skip null entries */ |
| 568 | if (vdir->d_fileno && name.len) { |
| 569 | /* try to look up this entry in the dcache, that way |
| 570 | * userspace doesn't have to worry about breaking |
| 571 | * getcwd by having mismatched inode numbers for |
| 572 | * internal volume mountpoints. */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 573 | ino = find_inode_number(de, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | if (!ino) ino = vdir->d_fileno; |
| 575 | |
| 576 | type = CDT2DT(vdir->d_type); |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 577 | ret = filldir(buf, name.name, name.len, |
| 578 | coda_file->f_pos, ino, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | /* failure means no space for filling in this round */ |
| 580 | if (ret < 0) break; |
| 581 | result++; |
| 582 | } |
| 583 | /* we'll always have progress because d_reclen is unsigned and |
| 584 | * we've already established it is non-zero. */ |
Jan Harkes | 9787525 | 2007-07-19 01:48:47 -0700 | [diff] [blame] | 585 | coda_file->f_pos += vdir->d_reclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
Al Viro | 5f47c7e | 2007-07-20 00:23:31 +0100 | [diff] [blame] | 587 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | kfree(vdir); |
| 589 | return result ? result : ret; |
| 590 | } |
| 591 | |
| 592 | /* called when a cache lookup succeeds */ |
| 593 | static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd) |
| 594 | { |
| 595 | struct inode *inode = de->d_inode; |
| 596 | struct coda_inode_info *cii; |
| 597 | |
| 598 | if (!inode) |
| 599 | return 1; |
| 600 | lock_kernel(); |
| 601 | if (coda_isroot(inode)) |
| 602 | goto out; |
| 603 | if (is_bad_inode(inode)) |
| 604 | goto bad; |
| 605 | |
| 606 | cii = ITOC(de->d_inode); |
| 607 | if (!(cii->c_flags & (C_PURGE | C_FLUSH))) |
| 608 | goto out; |
| 609 | |
| 610 | shrink_dcache_parent(de); |
| 611 | |
| 612 | /* propagate for a flush */ |
| 613 | if (cii->c_flags & C_FLUSH) |
| 614 | coda_flag_inode_children(inode, C_FLUSH); |
| 615 | |
| 616 | if (atomic_read(&de->d_count) > 1) |
| 617 | /* pretend it's valid, but don't change the flags */ |
| 618 | goto out; |
| 619 | |
| 620 | /* clear the flags. */ |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 621 | spin_lock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH); |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 623 | spin_unlock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
| 625 | bad: |
| 626 | unlock_kernel(); |
| 627 | return 0; |
| 628 | out: |
| 629 | unlock_kernel(); |
| 630 | return 1; |
| 631 | } |
| 632 | |
| 633 | /* |
| 634 | * This is the callback from dput() when d_count is going to 0. |
| 635 | * We use this to unhash dentries with bad inodes. |
| 636 | */ |
| 637 | static int coda_dentry_delete(struct dentry * dentry) |
| 638 | { |
| 639 | int flags; |
| 640 | |
| 641 | if (!dentry->d_inode) |
| 642 | return 0; |
| 643 | |
| 644 | flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE; |
| 645 | if (is_bad_inode(dentry->d_inode) || flags) { |
| 646 | return 1; |
| 647 | } |
| 648 | return 0; |
| 649 | } |
| 650 | |
| 651 | |
| 652 | |
| 653 | /* |
| 654 | * This is called when we want to check if the inode has |
| 655 | * changed on the server. Coda makes this easy since the |
| 656 | * cache manager Venus issues a downcall to the kernel when this |
| 657 | * happens |
| 658 | */ |
| 659 | int coda_revalidate_inode(struct dentry *dentry) |
| 660 | { |
| 661 | struct coda_vattr attr; |
| 662 | int error = 0; |
| 663 | int old_mode; |
| 664 | ino_t old_ino; |
| 665 | struct inode *inode = dentry->d_inode; |
| 666 | struct coda_inode_info *cii = ITOC(inode); |
| 667 | |
| 668 | lock_kernel(); |
| 669 | if ( !cii->c_flags ) |
| 670 | goto ok; |
| 671 | |
| 672 | if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) { |
| 673 | error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr); |
| 674 | if ( error ) |
| 675 | goto return_bad; |
| 676 | |
| 677 | /* this inode may be lost if: |
| 678 | - it's ino changed |
| 679 | - type changes must be permitted for repair and |
| 680 | missing mount points. |
| 681 | */ |
| 682 | old_mode = inode->i_mode; |
| 683 | old_ino = inode->i_ino; |
| 684 | coda_vattr_to_iattr(inode, &attr); |
| 685 | |
| 686 | if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) { |
| 687 | printk("Coda: inode %ld, fid %s changed type!\n", |
| 688 | inode->i_ino, coda_f2s(&(cii->c_fid))); |
| 689 | } |
| 690 | |
| 691 | /* the following can happen when a local fid is replaced |
| 692 | with a global one, here we lose and declare the inode bad */ |
| 693 | if (inode->i_ino != old_ino) |
| 694 | goto return_bad; |
| 695 | |
| 696 | coda_flag_inode_children(inode, C_FLUSH); |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 697 | |
| 698 | spin_lock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH); |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 700 | spin_unlock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | ok: |
| 704 | unlock_kernel(); |
| 705 | return 0; |
| 706 | |
| 707 | return_bad: |
| 708 | unlock_kernel(); |
| 709 | return -EIO; |
| 710 | } |